summaryrefslogtreecommitdiffstats
path: root/qemu-nbd.c
diff options
context:
space:
mode:
authorKevin Wolf2020-09-24 17:27:03 +0200
committerKevin Wolf2020-10-02 15:46:40 +0200
commitbc4ee65b8c309ed6a726e3ea1b73f7fa31b4bb95 (patch)
tree7c938b2e893712c8740f0a7b9ac624bc4a92b65f /qemu-nbd.c
parentblock/export: Allocate BlockExport in blk_exp_add() (diff)
downloadqemu-bc4ee65b8c309ed6a726e3ea1b73f7fa31b4bb95.tar.gz
qemu-bc4ee65b8c309ed6a726e3ea1b73f7fa31b4bb95.tar.xz
qemu-bc4ee65b8c309ed6a726e3ea1b73f7fa31b4bb95.zip
block/export: Add blk_exp_close_all(_type)
This adds a function to shut down all block exports, and another one to shut down the block exports of a single type. The latter is used for now when stopping the NBD server. As soon as we implement support for multiple NBD servers, we'll need a per-server list of exports and it will be replaced by a function using that. As a side effect, the BlockExport layer has a list tracking all existing exports now. closed_exports loses its only user and can go away. Signed-off-by: Kevin Wolf <kwolf@redhat.com> Reviewed-by: Max Reitz <mreitz@redhat.com> Message-Id: <20200924152717.287415-18-kwolf@redhat.com> Acked-by: Stefan Hajnoczi <stefanha@redhat.com> Signed-off-by: Kevin Wolf <kwolf@redhat.com>
Diffstat (limited to 'qemu-nbd.c')
-rw-r--r--qemu-nbd.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/qemu-nbd.c b/qemu-nbd.c
index fe0d1928c3..cfa5b78b1a 100644
--- a/qemu-nbd.c
+++ b/qemu-nbd.c
@@ -1119,7 +1119,7 @@ int main(int argc, char **argv)
do {
main_loop_wait(false);
if (state == TERMINATE) {
- nbd_export_close_all();
+ blk_exp_close_all();
state = TERMINATED;
}
} while (state != TERMINATED);