summary refs log tree commit diff stats
path: root/hmp-commands.hx
diff options
context:
space:
mode:
authorEric Blake <eblake@redhat.com>2018-01-25 08:45:57 -0600
committerEric Blake <eblake@redhat.com>2018-01-26 09:56:12 -0600
commit08fb10a7292637eb5836b8ac07b7ef8267db03be (patch)
tree30550b8a851e2be1eb5f9a4f2ff28c6e259b5b4a /hmp-commands.hx
parent2dadedce2b2fbdfdce1de8f108a3d67c2241df87 (diff)
downloadfocaccia-qemu-08fb10a7292637eb5836b8ac07b7ef8267db03be.tar.gz
focaccia-qemu-08fb10a7292637eb5836b8ac07b7ef8267db03be.zip
hmp: Add nbd_server_remove to mirror QMP command
Since everything else about the nbd-server-* QMP commands is
accessible from HMP, we might as well make removing an export
available as well.  For now, I went with a bool flag rather
than a mode string for choosing between safe (default) and
hard modes.

Signed-off-by: Eric Blake <eblake@redhat.com>
Message-Id: <20180125144557.25502-1-eblake@redhat.com>
Reviewed-by: Dr. David Alan Gilbert <dgilbert@redhat.com>
Signed-off-by: Eric Blake <eblake@redhat.com>
Diffstat (limited to 'hmp-commands.hx')
-rw-r--r--hmp-commands.hx17
1 files changed, 17 insertions, 0 deletions
diff --git a/hmp-commands.hx b/hmp-commands.hx
index b8b6fb9184..c36a9ec465 100644
--- a/hmp-commands.hx
+++ b/hmp-commands.hx
@@ -1568,6 +1568,23 @@ defaulting to @var{device}.
 ETEXI
 
     {
+        .name       = "nbd_server_remove",
+        .args_type  = "force:-f,name:s",
+        .params     = "nbd_server_remove [-f] name",
+        .help       = "remove an export previously exposed via NBD",
+        .cmd        = hmp_nbd_server_remove,
+    },
+STEXI
+@item nbd_server_remove [-f] @var{name}
+@findex nbd_server_remove
+Stop exporting a block device through QEMU's NBD server, which was
+previously started with @command{nbd_server_add}.  The @option{-f}
+option forces the server to drop the export immediately even if
+clients are connected; otherwise the command fails unless there are no
+clients.
+ETEXI
+
+    {
         .name       = "nbd_server_stop",
         .args_type  = "",
         .params     = "nbd_server_stop",