mirror of https://gitee.com/openkylin/qemu.git
block/rbd: remove runtime_opts
This saw its last use in 4bfb274165
.
Signed-off-by: John Snow <jsnow@redhat.com>
Message-Id: <20200806211345.2925343-2-jsnow@redhat.com>
Signed-off-by: Max Reitz <mreitz@redhat.com>
This commit is contained in:
parent
580384d637
commit
30b70f070f
42
block/rbd.c
42
block/rbd.c
|
@ -341,48 +341,6 @@ static void qemu_rbd_memset(RADOSCB *rcb, int64_t offs)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
static QemuOptsList runtime_opts = {
|
|
||||||
.name = "rbd",
|
|
||||||
.head = QTAILQ_HEAD_INITIALIZER(runtime_opts.head),
|
|
||||||
.desc = {
|
|
||||||
{
|
|
||||||
.name = "pool",
|
|
||||||
.type = QEMU_OPT_STRING,
|
|
||||||
.help = "Rados pool name",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
.name = "namespace",
|
|
||||||
.type = QEMU_OPT_STRING,
|
|
||||||
.help = "Rados namespace name in the pool",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
.name = "image",
|
|
||||||
.type = QEMU_OPT_STRING,
|
|
||||||
.help = "Image name in the pool",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
.name = "conf",
|
|
||||||
.type = QEMU_OPT_STRING,
|
|
||||||
.help = "Rados config file location",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
.name = "snapshot",
|
|
||||||
.type = QEMU_OPT_STRING,
|
|
||||||
.help = "Ceph snapshot name",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
/* maps to 'id' in rados_create() */
|
|
||||||
.name = "user",
|
|
||||||
.type = QEMU_OPT_STRING,
|
|
||||||
.help = "Rados id name",
|
|
||||||
},
|
|
||||||
/*
|
|
||||||
* server.* extracted manually, see qemu_rbd_mon_host()
|
|
||||||
*/
|
|
||||||
{ /* end of list */ }
|
|
||||||
},
|
|
||||||
};
|
|
||||||
|
|
||||||
/* FIXME Deprecate and remove keypairs or make it available in QMP. */
|
/* FIXME Deprecate and remove keypairs or make it available in QMP. */
|
||||||
static int qemu_rbd_do_create(BlockdevCreateOptions *options,
|
static int qemu_rbd_do_create(BlockdevCreateOptions *options,
|
||||||
const char *keypairs, const char *password_secret,
|
const char *keypairs, const char *password_secret,
|
||||||
|
|
Loading…
Reference in New Issue