mirror of
https://git.proxmox.com/git/qemu
synced 2025-08-14 12:07:25 +00:00
nbd: disallow nbd-server-add before nbd-server-start
It works nicely with the QMP commands, but it adds useless complication with HMP. In particular, see the following: (qemu) nbd_server_add -w scsi0-hd0 (qemu) nbd_server_start -a localhost:10809 NBD server already exporting device scsi0-hd0 Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
This commit is contained in:
parent
e644473445
commit
17b6be4a7f
@ -82,6 +82,11 @@ void qmp_nbd_server_add(const char *device, bool has_writable, bool writable,
|
|||||||
NBDExport *exp;
|
NBDExport *exp;
|
||||||
NBDCloseNotifier *n;
|
NBDCloseNotifier *n;
|
||||||
|
|
||||||
|
if (server_fd == -1) {
|
||||||
|
error_setg(errp, "NBD server not running");
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
if (nbd_export_find(device)) {
|
if (nbd_export_find(device)) {
|
||||||
error_setg(errp, "NBD server already exporting device '%s'", device);
|
error_setg(errp, "NBD server already exporting device '%s'", device);
|
||||||
return;
|
return;
|
||||||
|
Loading…
Reference in New Issue
Block a user