[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Qemu-devel] [PATCH v18 07/15] block: Parse "backing" option to referenc
From: |
Fam Zheng |
Subject: |
[Qemu-devel] [PATCH v18 07/15] block: Parse "backing" option to reference existing BDS |
Date: |
Thu, 10 Apr 2014 10:47:08 +0800 |
Now it's safe to allow reference for backing_hd in the interface.
Signed-off-by: Fam Zheng <address@hidden>
---
block.c | 27 +++++++++++++++++++++++++--
1 file changed, 25 insertions(+), 2 deletions(-)
diff --git a/block.c b/block.c
index 6f803fa..beacf09 100644
--- a/block.c
+++ b/block.c
@@ -1401,12 +1401,35 @@ int bdrv_open(BlockDriverState **pbs, const char
*filename,
/* If there is a backing file, use it */
if ((flags & BDRV_O_NO_BACKING) == 0) {
QDict *backing_options;
+ const char *backing_name;
+ BlockDriverState *backing_hd;
+ backing_name = qdict_get_try_str(options, "backing");
qdict_extract_subqdict(options, &backing_options, "backing.");
- ret = bdrv_open_backing_file(bs, backing_options, &local_err);
- if (ret < 0) {
+
+ if (backing_name && qdict_size(backing_options)) {
+ error_setg(&local_err,
+ "Option \"backing\" and \"backing.*\" cannot be "
+ "used together");
+ ret = -EINVAL;
goto close_and_fail;
}
+ if (backing_name) {
+ backing_hd = bdrv_find(backing_name);
+ if (!backing_hd) {
+ error_set(&local_err, QERR_DEVICE_NOT_FOUND, backing_name);
+ ret = -ENOENT;
+ goto close_and_fail;
+ }
+ qdict_del(options, "backing");
+ bdrv_set_backing_hd(bs, backing_hd);
+ bdrv_ref(backing_hd);
+ } else {
+ ret = bdrv_open_backing_file(bs, backing_options, &local_err);
+ if (ret < 0) {
+ goto close_and_fail;
+ }
+ }
}
/* For snapshot=on, create a temporary qcow2 overlay. bs points to the
--
1.9.1
- [Qemu-devel] [PATCH v18 00/15] Drop in_use from BlockDriverState and enable point-in-time snapshot exporting over NBD, Fam Zheng, 2014/04/09
- [Qemu-devel] [PATCH v18 01/15] block: Add BlockOpType enum, Fam Zheng, 2014/04/09
- [Qemu-devel] [PATCH v18 02/15] block: Introduce op_blockers to BlockDriverState, Fam Zheng, 2014/04/09
- [Qemu-devel] [PATCH v18 03/15] block: Replace in_use with operation blocker, Fam Zheng, 2014/04/09
- [Qemu-devel] [PATCH v18 04/15] block: Move op_blocker check from block_job_create to its caller, Fam Zheng, 2014/04/09
- [Qemu-devel] [PATCH v18 05/15] block: Add bdrv_set_backing_hd(), Fam Zheng, 2014/04/09
- [Qemu-devel] [PATCH v18 06/15] block: Add backing_blocker in BlockDriverState, Fam Zheng, 2014/04/09
- [Qemu-devel] [PATCH v18 07/15] block: Parse "backing" option to reference existing BDS,
Fam Zheng <=
- [Qemu-devel] [PATCH v18 08/15] block: Support dropping active in bdrv_drop_intermediate, Fam Zheng, 2014/04/09
- [Qemu-devel] [PATCH v18 09/15] stream: Use bdrv_drop_intermediate and drop close_unused_images, Fam Zheng, 2014/04/09
- [Qemu-devel] [PATCH v18 10/15] commit: Use bdrv_drop_intermediate, Fam Zheng, 2014/04/09
- [Qemu-devel] [PATCH v18 11/15] qmp: Add command 'blockdev-backup', Fam Zheng, 2014/04/09
- [Qemu-devel] [PATCH v18 12/15] block: Allow backup on referenced named BlockDriverState, Fam Zheng, 2014/04/09
- [Qemu-devel] [PATCH v18 13/15] block: Add blockdev-backup to transaction, Fam Zheng, 2014/04/09
- [Qemu-devel] [PATCH v18 14/15] qemu-iotests: Test blockdev-backup in 055, Fam Zheng, 2014/04/09
- [Qemu-devel] [PATCH v18 15/15] qemu-iotests: Image fleecing test case 089, Fam Zheng, 2014/04/09