diff options
| author | Eric Blake | 2018-01-25 15:45:57 +0100 |
|---|---|---|
| committer | Eric Blake | 2018-01-26 16:56:12 +0100 |
| commit | 08fb10a7292637eb5836b8ac07b7ef8267db03be (patch) | |
| tree | 30550b8a851e2be1eb5f9a4f2ff28c6e259b5b4a /hmp.h | |
| parent | iotest 205: new test for qmp nbd-server-remove (diff) | |
| download | qemu-08fb10a7292637eb5836b8ac07b7ef8267db03be.tar.gz qemu-08fb10a7292637eb5836b8ac07b7ef8267db03be.tar.xz 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.h')
| -rw-r--r-- | hmp.h | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -101,6 +101,7 @@ void hmp_sendkey(Monitor *mon, const QDict *qdict); void hmp_screendump(Monitor *mon, const QDict *qdict); void hmp_nbd_server_start(Monitor *mon, const QDict *qdict); void hmp_nbd_server_add(Monitor *mon, const QDict *qdict); +void hmp_nbd_server_remove(Monitor *mon, const QDict *qdict); void hmp_nbd_server_stop(Monitor *mon, const QDict *qdict); void hmp_chardev_add(Monitor *mon, const QDict *qdict); void hmp_chardev_change(Monitor *mon, const QDict *qdict); |
