|
|
7711c0 |
From d8f27c2a04ed34863b67d6a7914acc0ad1559dff Mon Sep 17 00:00:00 2001
|
|
|
7711c0 |
From: John Snow <jsnow@redhat.com>
|
|
|
7711c0 |
Date: Wed, 27 Mar 2019 17:22:31 +0100
|
|
|
7711c0 |
Subject: [PATCH 092/163] nbd: Remove x-nbd-server-add-bitmap
|
|
|
7711c0 |
|
|
|
7711c0 |
RH-Author: John Snow <jsnow@redhat.com>
|
|
|
7711c0 |
Message-id: <20190327172308.31077-19-jsnow@redhat.com>
|
|
|
7711c0 |
Patchwork-id: 85178
|
|
|
7711c0 |
O-Subject: [RHEL-7.7 qemu-kvm-rhev PATCH 18/55] nbd: Remove x-nbd-server-add-bitmap
|
|
|
7711c0 |
Bugzilla: 1691009
|
|
|
7711c0 |
RH-Acked-by: Stefan Hajnoczi <stefanha@redhat.com>
|
|
|
7711c0 |
RH-Acked-by: Max Reitz <mreitz@redhat.com>
|
|
|
7711c0 |
RH-Acked-by: Miroslav Rezanina <mrezanin@redhat.com>
|
|
|
7711c0 |
|
|
|
7711c0 |
From: Eric Blake <eblake@redhat.com>
|
|
|
7711c0 |
|
|
|
7711c0 |
Now that nbd-server-add can do the same functionality (well, other
|
|
|
7711c0 |
than making the exported bitmap name different than the underlying
|
|
|
7711c0 |
bitamp - but we argued that was not essential, since it is just as
|
|
|
7711c0 |
easy to create a new non-persistent bitmap with the desired name),
|
|
|
7711c0 |
we no longer need the experimental separate command.
|
|
|
7711c0 |
|
|
|
7711c0 |
Signed-off-by: Eric Blake <eblake@redhat.com>
|
|
|
7711c0 |
Reviewed-by: Vladimir Sementsov-Ogievskiy <vsementsov@virtuozzo.com>
|
|
|
7711c0 |
Message-Id: <20190111194720.15671-7-eblake@redhat.com>
|
|
|
7711c0 |
(cherry picked from commit 7dc570b3806e5b0a4c9219061556ed5a4a0de80c)
|
|
|
7711c0 |
Signed-off-by: John Snow <jsnow@redhat.com>
|
|
|
7711c0 |
Signed-off-by: Miroslav Rezanina <mrezanin@redhat.com>
|
|
|
7711c0 |
---
|
|
|
7711c0 |
blockdev-nbd.c | 23 -----------------------
|
|
|
7711c0 |
qapi/block.json | 23 -----------------------
|
|
|
7711c0 |
2 files changed, 46 deletions(-)
|
|
|
7711c0 |
|
|
|
7711c0 |
diff --git a/blockdev-nbd.c b/blockdev-nbd.c
|
|
|
7711c0 |
index ec8cf0a..cd86b38 100644
|
|
|
7711c0 |
--- a/blockdev-nbd.c
|
|
|
7711c0 |
+++ b/blockdev-nbd.c
|
|
|
7711c0 |
@@ -233,26 +233,3 @@ void qmp_nbd_server_stop(Error **errp)
|
|
|
7711c0 |
nbd_server_free(nbd_server);
|
|
|
7711c0 |
nbd_server = NULL;
|
|
|
7711c0 |
}
|
|
|
7711c0 |
-
|
|
|
7711c0 |
-void qmp_x_nbd_server_add_bitmap(const char *name, const char *bitmap,
|
|
|
7711c0 |
- bool has_bitmap_export_name,
|
|
|
7711c0 |
- const char *bitmap_export_name,
|
|
|
7711c0 |
- Error **errp)
|
|
|
7711c0 |
-{
|
|
|
7711c0 |
- NBDExport *exp;
|
|
|
7711c0 |
-
|
|
|
7711c0 |
- if (!nbd_server) {
|
|
|
7711c0 |
- error_setg(errp, "NBD server not running");
|
|
|
7711c0 |
- return;
|
|
|
7711c0 |
- }
|
|
|
7711c0 |
-
|
|
|
7711c0 |
- exp = nbd_export_find(name);
|
|
|
7711c0 |
- if (exp == NULL) {
|
|
|
7711c0 |
- error_setg(errp, "Export '%s' is not found", name);
|
|
|
7711c0 |
- return;
|
|
|
7711c0 |
- }
|
|
|
7711c0 |
-
|
|
|
7711c0 |
- nbd_export_bitmap(exp, bitmap,
|
|
|
7711c0 |
- has_bitmap_export_name ? bitmap_export_name : bitmap,
|
|
|
7711c0 |
- errp);
|
|
|
7711c0 |
-}
|
|
|
7711c0 |
diff --git a/qapi/block.json b/qapi/block.json
|
|
|
7711c0 |
index b04fcdc..6b1d317 100644
|
|
|
7711c0 |
--- a/qapi/block.json
|
|
|
7711c0 |
+++ b/qapi/block.json
|
|
|
7711c0 |
@@ -369,29 +369,6 @@
|
|
|
7711c0 |
'data': {'name': 'str', '*mode': 'NbdServerRemoveMode'} }
|
|
|
7711c0 |
|
|
|
7711c0 |
##
|
|
|
7711c0 |
-# @x-nbd-server-add-bitmap:
|
|
|
7711c0 |
-#
|
|
|
7711c0 |
-# Expose a dirty bitmap associated with the selected export. The bitmap search
|
|
|
7711c0 |
-# starts at the device attached to the export, and includes all backing files.
|
|
|
7711c0 |
-# The exported bitmap is then locked until the NBD export is removed.
|
|
|
7711c0 |
-#
|
|
|
7711c0 |
-# @name: Export name.
|
|
|
7711c0 |
-#
|
|
|
7711c0 |
-# @bitmap: Bitmap name to search for.
|
|
|
7711c0 |
-#
|
|
|
7711c0 |
-# @bitmap-export-name: How the bitmap will be seen by nbd clients
|
|
|
7711c0 |
-# (default @bitmap)
|
|
|
7711c0 |
-#
|
|
|
7711c0 |
-# Note: the client must use NBD_OPT_SET_META_CONTEXT with a query of
|
|
|
7711c0 |
-# "qemu:dirty-bitmap:NAME" (where NAME matches @bitmap-export-name) to access
|
|
|
7711c0 |
-# the exposed bitmap.
|
|
|
7711c0 |
-#
|
|
|
7711c0 |
-# Since: 3.0
|
|
|
7711c0 |
-##
|
|
|
7711c0 |
- { 'command': 'x-nbd-server-add-bitmap',
|
|
|
7711c0 |
- 'data': {'name': 'str', 'bitmap': 'str', '*bitmap-export-name': 'str'} }
|
|
|
7711c0 |
-
|
|
|
7711c0 |
-##
|
|
|
7711c0 |
# @nbd-server-stop:
|
|
|
7711c0 |
#
|
|
|
7711c0 |
# Stop QEMU's embedded NBD server, and unregister all devices previously
|
|
|
7711c0 |
--
|
|
|
7711c0 |
1.8.3.1
|
|
|
7711c0 |
|