summary refs log tree commit diff stats
path: root/blockdev-nbd.c
diff options
context:
space:
mode:
authorEric Blake <eblake@redhat.com>2019-01-11 13:47:18 -0600
committerEric Blake <eblake@redhat.com>2019-01-14 10:09:46 -0600
commit7dc570b3806e5b0a4c9219061556ed5a4a0de80c (patch)
tree3a6d204c03acdbb0d5b7cf408b4a913fed2f0022 /blockdev-nbd.c
parent5fcbeb06812685a2c6d7e0e6f28f018987d08b79 (diff)
downloadfocaccia-qemu-7dc570b3806e5b0a4c9219061556ed5a4a0de80c.tar.gz
focaccia-qemu-7dc570b3806e5b0a4c9219061556ed5a4a0de80c.zip
nbd: Remove x-nbd-server-add-bitmap
Now that nbd-server-add can do the same functionality (well, other
than making the exported bitmap name different than the underlying
bitamp - but we argued that was not essential, since it is just as
easy to create a new non-persistent bitmap with the desired name),
we no longer need the experimental separate command.

Signed-off-by: Eric Blake <eblake@redhat.com>
Reviewed-by: Vladimir Sementsov-Ogievskiy <vsementsov@virtuozzo.com>
Message-Id: <20190111194720.15671-7-eblake@redhat.com>
Diffstat (limited to 'blockdev-nbd.c')
-rw-r--r--blockdev-nbd.c23
1 files changed, 0 insertions, 23 deletions
diff --git a/blockdev-nbd.c b/blockdev-nbd.c
index ec8cf0ab8c..cd86b38cda 100644
--- a/blockdev-nbd.c
+++ b/blockdev-nbd.c
@@ -233,26 +233,3 @@ void qmp_nbd_server_stop(Error **errp)
     nbd_server_free(nbd_server);
     nbd_server = NULL;
 }
-
-void qmp_x_nbd_server_add_bitmap(const char *name, const char *bitmap,
-                                 bool has_bitmap_export_name,
-                                 const char *bitmap_export_name,
-                                 Error **errp)
-{
-    NBDExport *exp;
-
-    if (!nbd_server) {
-        error_setg(errp, "NBD server not running");
-        return;
-    }
-
-    exp = nbd_export_find(name);
-    if (exp == NULL) {
-        error_setg(errp, "Export '%s' is not found", name);
-        return;
-    }
-
-    nbd_export_bitmap(exp, bitmap,
-                      has_bitmap_export_name ? bitmap_export_name : bitmap,
-                      errp);
-}