From 4309742040f64e60ea8cf11a8c089dd57d1108da Mon Sep 17 00:00:00 2001 From: Eric Blake Date: Fri, 25 Oct 2019 16:29:52 -0500 Subject: [PATCH] 4700: Color-code nbdkit changes. --- 2019-kvm-forum/4700-fast-zero-implementation.html | 42 ++++++++++++++--------- 2019-kvm-forum/style.css | 19 ++++++++++ 2 files changed, 44 insertions(+), 17 deletions(-) diff --git a/2019-kvm-forum/4700-fast-zero-implementation.html b/2019-kvm-forum/4700-fast-zero-implementation.html index fbee89d..7f76f15 100644 --- a/2019-kvm-forum/4700-fast-zero-implementation.html +++ b/2019-kvm-forum/4700-fast-zero-implementation.html @@ -5,33 +5,41 @@

Can you provide me some references?

+ qemu: wire BDRV_REQ_NO_FALLBACK + to NBD_CMD_FLAG_FAST_ZERO in both server and client + +

libnbd: add ENOTSUP errno, add LIBNBD_CMD_FLAG_FAST_ZERO to nbd_zero() and nbd_aio_zero()

- nbdkit: add support in the following filters and plugins - XXX worth flagging which additions are always fast, always slow, conditional? + nbdkit: add support in the following filters and plugins: + always fails + always fast + conditional

diff --git a/2019-kvm-forum/style.css b/2019-kvm-forum/style.css index ab523d2..e33ca15 100644 --- a/2019-kvm-forum/style.css +++ b/2019-kvm-forum/style.css @@ -171,6 +171,25 @@ div.filters ul li.highlighted { font-weight: bold; } +/* Colored highlighting */ +div.plugins ul li.bg_r, +div.filters ul li.bg_r { + background: #b00; + color: white; +} + +div.plugins ul li.bg_g, +div.filters ul li.bg_g { + background: #0b0; + color: white; +} + +div.plugins ul li.bg_b, +div.filters ul li.bg_b { + background: #00b; + color: white; +} + /* For images which must be centered on the page. */ div.allcenter { display: flex; -- 1.8.3.1