]> git.proxmox.com Git - qemu-server.git/commit
migration: nbd export: switch away from deprecated QMP command
authorFiona Ebner <f.ebner@proxmox.com>
Fri, 2 Dec 2022 12:54:52 +0000 (13:54 +0100)
committerThomas Lamprecht <t.lamprecht@proxmox.com>
Fri, 13 Jan 2023 13:04:39 +0000 (14:04 +0100)
commit83f04be3d569646b1715d37713c41410c4753a8e
tree32f9238ed4b5449984721461343304a8fe563fb9
parentc3d151080affe8b2d85ad9e1216ad28c09519014
migration: nbd export: switch away from deprecated QMP command

The 'nbd-server-add' QMP command has been deprecated since QEMU 5.2 in
favor of a more general 'block-export-add'.

When using 'nbd-server-add', QEMU internally converts the parameters
and calls blk_exp_add() which is also used by 'block-export-add'. It
does one more thing, namely calling nbd_export_set_on_eject_blk() to
auto-remove the export from the server when the backing drive goes
away. But that behavior is not needed in our case, stopping the NBD
server removes the exports anyways.

It was checked with a debugger that the parameters to blk_exp_add()
are still the same after this change. Well, the block node names are
autogenerated and not consistent across invocations.

The alternative to using 'query-block' would be specifying a
predictable 'node-name' for our '-drive' commandline. It's not that
difficult for this use case, but in general one needs to be careful
(e.g. it can't be specified for an empty CD drive, but would need to
be set when inserting a CD later). Querying the actual 'node-name'
seemed a bit more future-proof.

Signed-off-by: Fiona Ebner <f.ebner@proxmox.com>
PVE/QemuServer.pm
test/MigrationTest/QmMock.pm