diff options
author | Kevin Wolf <kwolf@redhat.com> | 2020-09-24 17:27:05 +0200 |
---|---|---|
committer | Kevin Wolf <kwolf@redhat.com> | 2020-10-02 15:46:40 +0200 |
commit | 3859ad36f0bdf45a6610d93296b52c9604b6d6f7 (patch) | |
tree | 6f3079b4739c53840a3fe391ead09ef03847115a /include/block/export.h | |
parent | d53be9ce55a38e430b88985f637f696bf99cbf0b (diff) | |
download | qemu-3859ad36f0bdf45a6610d93296b52c9604b6d6f7.zip qemu-3859ad36f0bdf45a6610d93296b52c9604b6d6f7.tar.gz qemu-3859ad36f0bdf45a6610d93296b52c9604b6d6f7.tar.bz2 |
block/export: Move strong user reference to block_exports
The reference owned by the user/monitor that is created when adding the
export and dropped when removing it was tied to the 'exports' list in
nbd/server.c. Every block export will have a user reference, so move it
to the block export level and tie it to the 'block_exports' list in
block/export/export.c instead. This is necessary for introducing a QMP
command for removing exports.
Note that exports are present in block_exports even after the user has
requested shutdown. This is different from NBD's exports where exports
are immediately removed on a shutdown request, even if they are still in
the process of shutting down. In order to avoid that the user still
interacts with an export that is shutting down (and possibly removes it
a second time), we need to remember if the user actually still owns it.
Signed-off-by: Kevin Wolf <kwolf@redhat.com>
Reviewed-by: Max Reitz <mreitz@redhat.com>
Message-Id: <20200924152717.287415-20-kwolf@redhat.com>
Acked-by: Stefan Hajnoczi <stefanha@redhat.com>
Signed-off-by: Kevin Wolf <kwolf@redhat.com>
Diffstat (limited to 'include/block/export.h')
-rw-r--r-- | include/block/export.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/include/block/export.h b/include/block/export.h index cdc6e16..4833947 100644 --- a/include/block/export.h +++ b/include/block/export.h @@ -60,6 +60,14 @@ struct BlockExport { */ int refcount; + /* + * True if one of the references in refcount belongs to the user. After the + * user has dropped their reference, they may not e.g. remove the same + * export a second time (which would decrease the refcount without having + * it incremented first). + */ + bool user_owned; + /* The AioContext whose lock protects this BlockExport object. */ AioContext *ctx; |