nbd: Add new qemu:allocation-depth metadata context
commit71719cd57fc02ddfd91a4a3ca3f469bfb4d221bc
authorEric Blake <eblake@redhat.com>
Tue, 27 Oct 2020 05:05:54 +0000 (27 00:05 -0500)
committerEric Blake <eblake@redhat.com>
Fri, 30 Oct 2020 20:22:00 +0000 (30 15:22 -0500)
tree735fedb345ba5b6a5fbbc5eab9aa55811d95d93e
parenta92b1b065eed385d9077be735eb8e92f5a6e150a
nbd: Add new qemu:allocation-depth metadata context

'qemu-img map' provides a way to determine which extents of an image
come from the top layer vs. inherited from a backing chain.  This is
useful information worth exposing over NBD.  There is a proposal to
add a QMP command block-dirty-bitmap-populate which can create a dirty
bitmap that reflects allocation information, at which point the
qemu:dirty-bitmap:NAME metadata context can expose that information
via the creation of a temporary bitmap, but we can shorten the effort
by adding a new qemu:allocation-depth metadata context that does the
same thing without an intermediate bitmap (this patch does not
eliminate the need for that proposal, as it will have other uses as
well).

While documenting things, remember that although the NBD protocol has
NBD_OPT_SET_META_CONTEXT, the rest of its documentation refers to
'metadata context', which is a more apt description of what is
actually being used by NBD_CMD_BLOCK_STATUS: the user is requesting
metadata by passing one or more context names.  So I also touched up
some existing wording to prefer the term 'metadata context' where it
makes sense.

Note that this patch does not actually enable any way to request a
server to enable this context; that will come in the next patch.

Signed-off-by: Eric Blake <eblake@redhat.com>
Message-Id: <20201027050556.269064-10-eblake@redhat.com>
Reviewed-by: Vladimir Sementsov-Ogievskiy <vsementsov@virtuozzo.com>
docs/interop/nbd.txt
include/block/nbd.h
nbd/server.c