summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorFabiano Rosas <farosas@linux.vnet.ibm.com>2018-03-12 19:07:50 -0300
committerKevin Wolf <kwolf@redhat.com>2018-03-26 12:16:00 +0200
commit65d2c3e2f64b116f6a25d38cde5919d38f36d26d (patch)
treeaa1a548f8da914293d62f0b0fcfea8b6942c58af
parentcb83d2efe1f591cdc7ff2e8fbc67544155f264d6 (diff)
downloadfocaccia-qemu-65d2c3e2f64b116f6a25d38cde5919d38f36d26d.tar.gz
focaccia-qemu-65d2c3e2f64b116f6a25d38cde5919d38f36d26d.zip
block/quorum: Remove protocol-related fields
The quorum driver is not a protocol so it should implement bdrv_open
instead of bdrv_file_open and not provide a protocol_name.

Attempts to invoke this driver using protocol syntax
(i.e. quorum:<filename:options:...>) will now fail gracefully:

  $ qemu-img info quorum:foo
  qemu-img: Could not open 'quorum:foo': Unknown protocol 'quorum'

Signed-off-by: Fabiano Rosas <farosas@linux.vnet.ibm.com>
Reviewed-by: Max Reitz <mreitz@redhat.com>
Reviewed-by: Alberto Garcia <berto@igalia.com>
Signed-off-by: Kevin Wolf <kwolf@redhat.com>
-rw-r--r--block/quorum.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/block/quorum.c b/block/quorum.c
index 14333c18aa..cfe484a945 100644
--- a/block/quorum.c
+++ b/block/quorum.c
@@ -1098,11 +1098,10 @@ static void quorum_refresh_filename(BlockDriverState *bs, QDict *options)
 
 static BlockDriver bdrv_quorum = {
     .format_name                        = "quorum",
-    .protocol_name                      = "quorum",
 
     .instance_size                      = sizeof(BDRVQuorumState),
 
-    .bdrv_file_open                     = quorum_open,
+    .bdrv_open                          = quorum_open,
     .bdrv_close                         = quorum_close,
     .bdrv_refresh_filename              = quorum_refresh_filename,