31 lines
1.0 KiB
Diff
31 lines
1.0 KiB
Diff
|
From: Bruce Rogers <brogers@suse.com>
|
||
|
Date: Wed, 16 Jan 2019 16:29:36 -0700
|
||
|
Subject: xen: add block resize support for xen disks
|
||
|
|
||
|
Provide monitor naming of xen disks, and plumb guest driver
|
||
|
notification through xenstore of resizing instigated via the
|
||
|
monitor.
|
||
|
|
||
|
[BR: minor edits to pass qemu's checkpatch script]
|
||
|
[BR: significant rework needed due to upstream xen disk qdevification]
|
||
|
[BR: At this point, monitor_add_blk call is all we need to add!]
|
||
|
Signed-off-by: Bruce Rogers <brogers@suse.com>
|
||
|
---
|
||
|
hw/block/xen-block.c | 3 +++
|
||
|
1 file changed, 3 insertions(+)
|
||
|
|
||
|
diff --git a/hw/block/xen-block.c b/hw/block/xen-block.c
|
||
|
index 7cbab33247..022546bfa5 100644
|
||
|
--- a/hw/block/xen-block.c
|
||
|
+++ b/hw/block/xen-block.c
|
||
|
@@ -263,6 +263,9 @@ static void xen_block_realize(XenDevice *xendev, Error **errp)
|
||
|
|
||
|
xen_block_set_size(blockdev);
|
||
|
|
||
|
+ if (!monitor_add_blk(conf->blk, blockdev->drive->id, errp)) {
|
||
|
+ return;
|
||
|
+ }
|
||
|
blockdev->dataplane =
|
||
|
xen_block_dataplane_create(xendev, conf, blockdev->props.iothread);
|
||
|
}
|