diff options
author | Kevin Wolf <kwolf@redhat.com> | 2020-09-24 17:27:06 +0200 |
---|---|---|
committer | Kevin Wolf <kwolf@redhat.com> | 2020-10-02 15:46:40 +0200 |
commit | 3c3bc462adeb561f5dfdcbb84ae691c95ccef916 (patch) | |
tree | bc3fa25c7189db287349b4fe4dd922207b76194f /include/block/export.h | |
parent | 3859ad36f0bdf45a6610d93296b52c9604b6d6f7 (diff) | |
download | qemu-3c3bc462adeb561f5dfdcbb84ae691c95ccef916.zip qemu-3c3bc462adeb561f5dfdcbb84ae691c95ccef916.tar.gz qemu-3c3bc462adeb561f5dfdcbb84ae691c95ccef916.tar.bz2 |
block/export: Add block-export-del
Implement a new QMP command block-export-del and make nbd-server-remove
a wrapper around it.
Signed-off-by: Kevin Wolf <kwolf@redhat.com>
Reviewed-by: Max Reitz <mreitz@redhat.com>
Message-Id: <20200924152717.287415-21-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 | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/block/export.h b/include/block/export.h index 4833947..ff54d35 100644 --- a/include/block/export.h +++ b/include/block/export.h @@ -76,6 +76,7 @@ struct BlockExport { }; BlockExport *blk_exp_add(BlockExportOptions *export, Error **errp); +BlockExport *blk_exp_find(const char *id); void blk_exp_ref(BlockExport *exp); void blk_exp_unref(BlockExport *exp); void blk_exp_request_shutdown(BlockExport *exp); |