Alberto Garcia
0065c455f9
block: Update BlockDriverState.inherits_from on bdrv_set_backing_hd()
...
When a BlockDriverState's child is opened (be it a backing file, the
protocol layer, or any other) inherits_from is set to point to the
parent node. Children opened separately and then attached to a parent
don't have this pointer set.
bdrv_reopen_queue_child() uses this to determine whether a node's
children must also be reopened inheriting the options from the parent
or not. If inherits_from points to the parent then the child is
reopened and its options can be changed, like in this example:
$ qemu-img create -f qcow2 hd0.qcow2 1M
$ qemu-img create -f qcow2 hd1.qcow2 1M
$ $QEMU -drive if=none,node-name=hd0,file=hd0.qcow2,\
backing.driver=qcow2,backing.file.filename=hd1.qcow2
(qemu) qemu-io hd0 "reopen -o backing.l2-cache-size=2M"
If the child does not inherit from the parent then it does not get
reopened and its options cannot be changed:
$ $QEMU -drive if=none,node-name=hd1,file=hd1.qcow2
-drive if=none,node-name=hd0,file=hd0.qcow2,backing=hd1
(qemu) qemu-io hd0 "reopen -o backing.l2-cache-size=2M"
Cannot change the option 'backing.l2-cache-size'
If a disk image has a chain of backing files then all of them are also
connected through their inherits_from pointers (i.e. it's possible to
walk the chain in reverse order from base to top).
However this is broken if the intermediate nodes are removed using
e.g. block-stream because the inherits_from pointer from the base node
becomes NULL:
$ qemu-img create -f qcow2 hd0.qcow2 1M
$ qemu-img create -f qcow2 -b hd0.qcow2 hd1.qcow2
$ qemu-img create -f qcow2 -b hd1.qcow2 hd2.qcow2
$ $QEMU -drive if=none,file=hd2.qcow2
(qemu) qemu-io none0 "reopen -o backing.l2-cache-size=2M"
(qemu) block_stream none0 0 hd0.qcow2
(qemu) qemu-io none0 "reopen -o backing.l2-cache-size=2M"
Cannot change the option 'backing.l2-cache-size'
This patch updates the inherits_from pointer if the intermediate nodes
of a backing chain are removed using bdrv_set_backing_hd(), and adds a
test case for this scenario.
Signed-off-by: Alberto Garcia <berto@igalia.com>
Signed-off-by: Kevin Wolf <kwolf@redhat.com>
2018-11-22 19:37:31 +01:00
..
2018-02-13 12:27:17 +01:00
2017-02-12 00:47:42 +01:00
2018-11-19 10:08:19 -06:00
2014-12-12 16:52:33 +00:00
2018-11-19 10:08:19 -06:00
2014-12-12 16:52:33 +00:00
2018-11-19 10:08:19 -06:00
2014-12-12 16:52:33 +00:00
2018-11-19 10:08:19 -06:00
2014-12-12 16:52:33 +00:00
2018-11-19 10:08:19 -06:00
2014-12-12 16:52:33 +00:00
2018-11-19 10:08:19 -06:00
2014-12-12 16:52:33 +00:00
2018-11-19 10:08:19 -06:00
2014-12-12 16:52:33 +00:00
2018-11-19 10:08:19 -06:00
2014-12-12 16:52:33 +00:00
2018-11-19 10:08:19 -06:00
2014-12-12 16:52:33 +00:00
2018-11-19 10:08:19 -06:00
2014-12-12 16:52:33 +00:00
2018-11-19 10:08:19 -06:00
2014-12-12 16:52:33 +00:00
2018-11-19 10:08:19 -06:00
2014-12-12 16:52:33 +00:00
2018-11-19 10:08:19 -06:00
2014-12-12 16:52:33 +00:00
2018-11-19 10:08:19 -06:00
2014-12-12 16:52:33 +00:00
2018-11-19 10:08:19 -06:00
2015-09-11 10:21:38 +03:00
2018-11-19 10:08:19 -06:00
2016-01-07 21:30:17 +01:00
2018-11-19 10:08:19 -06:00
2017-05-11 14:28:05 +02:00
2018-11-19 10:08:19 -06:00
2018-01-23 12:34:43 +01:00
2018-11-19 10:08:19 -06:00
2014-12-12 16:52:33 +00:00
2018-11-19 10:08:19 -06:00
2014-12-12 16:52:33 +00:00
2018-11-19 10:08:19 -06:00
2016-05-12 15:33:24 +02:00
2018-11-19 10:08:19 -06:00
2018-06-11 16:18:45 +02:00
2018-11-19 10:08:19 -06:00
2014-12-12 16:52:33 +00:00
2018-11-19 10:08:19 -06:00
2018-06-29 14:20:56 +02:00
2018-06-29 14:20:56 +02:00
2018-11-19 10:08:19 -06:00
2014-12-12 16:52:33 +00:00
2018-11-19 10:08:19 -06:00
2017-04-27 15:39:49 +02:00
2018-11-19 10:08:19 -06:00
2014-12-12 16:52:33 +00:00
2018-10-30 21:11:52 -03:00
2018-03-09 15:40:07 +01:00
2018-11-19 10:08:19 -06:00
2016-01-20 13:36:23 +01:00
2018-11-19 10:08:19 -06:00
2014-12-12 16:52:33 +00:00
2018-11-19 10:08:19 -06:00
2018-03-02 18:39:07 +01:00
2018-11-19 10:08:19 -06:00
2016-01-07 21:30:17 +01:00
2018-11-19 11:16:46 -06:00
2014-12-12 16:52:33 +00:00
2018-11-19 10:08:19 -06:00
2016-03-17 15:47:56 +01:00
2018-11-19 11:16:46 -06:00
2016-01-07 21:30:17 +01:00
2018-11-19 11:16:46 -06:00
2016-01-07 21:30:17 +01:00
2018-11-19 10:08:19 -06:00
2017-10-06 16:28:58 +02:00
2018-10-30 21:11:52 -03:00
2018-09-25 15:50:15 +02:00
2018-11-21 10:30:05 +01:00
2018-08-15 12:50:39 +02:00
2018-11-19 10:08:19 -06:00
2014-12-12 16:52:33 +00:00
2018-11-19 10:08:19 -06:00
2015-12-18 14:36:17 +01:00
2018-10-30 21:11:52 -03:00
2017-07-11 17:45:02 +02:00
2018-10-30 21:11:52 -03:00
2013-09-12 10:12:47 +02:00
2018-11-19 11:16:46 -06:00
2015-09-11 10:21:38 +03:00
2018-11-19 11:16:46 -06:00
2014-12-12 16:52:33 +00:00
2017-07-11 17:44:55 +02:00
2016-05-12 15:33:24 +02:00
2018-11-19 11:16:46 -06:00
2018-10-19 14:51:34 +02:00
2018-11-19 10:08:19 -06:00
2016-01-07 21:30:17 +01:00
2018-11-19 11:16:46 -06:00
2018-09-25 15:50:15 +02:00
2018-09-25 15:50:15 +02:00
2018-11-19 10:08:19 -06:00
2016-05-12 15:33:24 +02:00
2018-11-19 10:08:19 -06:00
2014-12-12 16:52:33 +00:00
2018-11-19 10:08:19 -06:00
2014-12-12 16:52:33 +00:00
2018-03-19 12:01:24 +01:00
2016-09-05 19:06:48 +02:00
2018-10-30 21:11:52 -03:00
2018-03-19 12:01:24 +01:00
2016-09-05 19:06:47 +02:00
2013-09-12 10:12:47 +02:00
2018-11-19 11:16:46 -06:00
2013-12-04 15:19:00 +01:00
2018-11-19 10:08:19 -06:00
2018-02-13 12:27:17 +01:00
2018-11-19 10:08:19 -06:00
2018-06-30 17:50:48 +02:00
2018-11-19 10:08:19 -06:00
2018-06-11 16:18:45 +02:00
2018-11-19 10:08:19 -06:00
2014-12-12 16:52:33 +00:00
2018-11-19 10:08:19 -06:00
2018-06-29 14:20:56 +02:00
2018-11-19 10:08:19 -06:00
2015-01-23 12:41:32 -05:00
2018-10-30 21:11:52 -03:00
2013-10-11 16:49:50 +02:00
2018-11-19 10:08:19 -06:00
2017-05-11 12:08:24 +02:00
2018-11-19 11:16:46 -06:00
2018-10-01 19:13:46 +02:00
2018-11-19 10:08:19 -06:00
2017-09-06 15:19:01 +01:00
2018-11-19 10:08:19 -06:00
2016-01-13 15:16:18 +01:00
2018-11-19 10:08:19 -06:00
2017-02-12 00:47:42 +01:00
2018-11-19 11:16:46 -06:00
2017-05-23 13:28:17 +02:00
2018-11-19 10:08:19 -06:00
2014-12-12 16:52:33 +00:00
2018-11-19 10:08:19 -06:00
2015-09-11 10:21:38 +03:00
2017-08-01 18:09:33 +02:00
2017-10-26 14:45:57 +02:00
2018-11-19 10:08:19 -06:00
2017-02-12 00:47:42 +01:00
2018-11-19 10:08:19 -06:00
2017-02-12 00:47:42 +01:00
2018-11-19 11:16:46 -06:00
2017-11-14 18:06:25 +01:00
2018-11-19 10:08:19 -06:00
2017-02-12 00:47:42 +01:00
2018-11-19 10:08:19 -06:00
2015-09-11 10:21:38 +03:00
2018-11-19 10:08:19 -06:00
2018-06-11 16:18:45 +02:00
2018-11-19 11:16:46 -06:00
2018-11-05 15:09:54 +01:00
2018-11-19 11:16:46 -06:00
2018-11-05 15:17:48 +01:00
2018-11-19 10:08:19 -06:00
2018-10-30 21:11:52 -03:00
2018-11-19 10:08:19 -06:00
2014-12-12 16:52:33 +00:00
2018-11-19 11:16:46 -06:00
2017-07-11 17:44:55 +02:00
2018-11-19 11:16:46 -06:00
2014-12-12 16:52:33 +00:00
2018-11-19 11:16:46 -06:00
2017-07-11 17:44:56 +02:00
2018-11-19 10:08:19 -06:00
2017-02-12 00:47:42 +01:00
2018-11-19 10:08:19 -06:00
2018-03-19 14:58:36 -05:00
2018-11-19 10:08:19 -06:00
2014-12-12 16:52:33 +00:00
2018-11-19 10:08:19 -06:00
2014-12-12 16:52:33 +00:00
2018-11-19 10:08:19 -06:00
2017-02-12 00:47:42 +01:00
2018-10-30 21:11:52 -03:00
2018-08-15 12:50:39 +02:00
2018-11-19 10:08:19 -06:00
2018-05-23 14:30:51 +02:00
2018-11-19 10:08:19 -06:00
2018-05-23 14:30:51 +02:00
2018-06-08 14:39:24 -03:00
2015-10-16 15:34:29 +02:00
2018-11-19 10:08:19 -06:00
2017-04-03 17:11:40 +02:00
2018-11-19 10:08:19 -06:00
2015-09-11 10:21:38 +03:00
2018-11-19 11:16:46 -06:00
2014-12-12 16:52:33 +00:00
2018-11-19 10:08:19 -06:00
2014-08-22 11:01:12 +02:00
2018-11-19 10:08:19 -06:00
2018-01-23 12:34:42 +01:00
2018-11-19 10:08:19 -06:00
2018-07-30 15:35:37 +02:00
2018-11-19 10:08:19 -06:00
2014-12-12 16:52:33 +00:00
2018-11-19 10:08:19 -06:00
2014-10-03 10:30:33 +01:00
2018-11-19 10:08:19 -06:00
2018-04-03 17:39:37 +02:00
2018-11-19 10:08:19 -06:00
2014-12-12 16:52:33 +00:00
2018-11-19 10:08:19 -06:00
2014-12-12 16:52:33 +00:00
2018-11-19 11:16:46 -06:00
2018-05-23 14:30:51 +02:00
2018-11-19 10:08:19 -06:00
2015-12-18 14:36:17 +01:00
2018-11-19 10:08:19 -06:00
2017-07-18 15:27:37 +02:00
2018-11-19 11:16:46 -06:00
2018-06-11 16:18:45 +02:00
2018-11-19 10:08:19 -06:00
2018-06-11 16:18:45 +02:00
2018-11-19 10:08:19 -06:00
2017-07-10 13:18:05 +02:00
2018-11-19 10:08:19 -06:00
2015-09-11 10:21:38 +03:00
2018-11-19 10:08:19 -06:00
2017-02-12 00:47:42 +01:00
2018-11-19 10:08:19 -06:00
2017-05-23 13:28:17 +02:00
2018-11-21 10:30:05 +01:00
2015-11-11 16:25:47 +01:00
2018-11-19 10:08:19 -06:00
2017-05-23 13:28:17 +02:00
2018-11-19 10:08:19 -06:00
2017-05-23 13:28:17 +02:00
2018-11-19 10:08:19 -06:00
2018-03-26 12:16:00 +02:00
2018-11-19 10:08:19 -06:00
2018-07-12 18:24:08 +02:00
2018-11-19 10:08:19 -06:00
2015-02-16 15:07:18 +00:00
2018-10-30 21:11:52 -03:00
2016-11-14 22:47:34 -05:00
2018-11-19 10:08:19 -06:00
2017-10-26 15:01:14 +02:00
2018-11-19 10:08:19 -06:00
2018-05-23 13:29:03 +02:00
2018-11-19 10:08:19 -06:00
2018-05-23 14:30:51 +02:00
2018-11-19 10:08:19 -06:00
2015-03-10 14:02:24 +01:00
2018-03-09 15:40:07 +01:00
2015-04-28 15:36:09 +02:00
2018-11-19 10:08:19 -06:00
2017-04-27 15:39:49 +02:00
2018-11-19 10:08:19 -06:00
2017-02-12 00:47:42 +01:00
2018-03-09 15:40:07 +01:00
2015-07-02 10:06:23 +01:00
2018-11-19 10:08:19 -06:00
2017-11-17 18:21:30 +01:00
2018-11-19 10:08:19 -06:00
2017-07-11 17:44:56 +02:00
2018-11-19 10:08:19 -06:00
2015-07-27 17:19:07 +02:00
2018-10-30 21:11:52 -03:00
2016-05-19 16:45:31 +02:00
2018-11-19 10:08:19 -06:00
2018-10-01 12:51:12 +02:00
2018-11-19 10:08:19 -06:00
2015-09-14 16:51:37 +02:00
2018-10-30 21:11:52 -03:00
2016-09-23 13:45:36 +02:00
2018-11-19 10:08:19 -06:00
2017-07-17 13:57:42 -05:00
2018-11-19 10:08:19 -06:00
2018-05-23 14:30:51 +02:00
2018-11-19 11:16:46 -06:00
2017-04-27 15:39:49 +02:00
2018-11-19 10:08:19 -06:00
2017-07-17 13:57:42 -05:00
2018-11-19 10:08:19 -06:00
2018-05-23 14:30:51 +02:00
2018-11-19 10:08:19 -06:00
2017-04-27 15:39:49 +02:00
2018-11-19 10:08:19 -06:00
2018-03-19 12:01:39 +01:00
2018-10-30 21:11:52 -03:00
2018-01-26 09:37:21 -06:00
2018-03-09 15:40:07 +01:00
2016-03-17 16:43:30 +01:00
2018-10-30 21:11:52 -03:00
2018-07-23 16:50:43 +02:00
2018-11-19 10:08:19 -06:00
2016-04-12 18:06:51 +02:00
2018-10-30 21:11:52 -03:00
2018-06-18 17:05:17 +02:00
2018-03-09 15:40:07 +01:00
2016-04-20 16:52:55 +02:00
2018-11-19 11:16:46 -06:00
2018-10-01 12:51:11 +02:00
2018-11-19 10:08:19 -06:00
2017-06-30 21:48:06 +08:00
2018-05-23 14:30:51 +02:00
2016-06-16 15:20:37 +02:00
2018-11-19 10:08:19 -06:00
2018-05-23 14:30:51 +02:00
2018-11-19 11:16:46 -06:00
2017-07-11 17:44:59 +02:00
2018-11-19 10:08:19 -06:00
2017-07-11 17:44:56 +02:00
2018-11-19 10:08:19 -06:00
2016-09-20 22:10:57 +02:00
2018-11-19 10:08:19 -06:00
2016-09-20 22:10:57 +02:00
2018-11-22 19:37:31 +01:00
2018-11-22 19:37:31 +01:00
2018-11-19 10:08:19 -06:00
2016-10-24 17:54:03 +02:00
2018-10-30 21:11:52 -03:00
2017-09-26 15:00:32 +02:00
2018-06-08 14:39:24 -03:00
2017-07-11 17:44:59 +02:00
2018-10-30 21:13:54 -03:00
2018-10-29 16:23:17 -04:00
2018-11-19 10:08:19 -06:00
2016-09-20 22:10:57 +02:00
2018-11-19 10:08:19 -06:00
2016-10-31 16:52:39 +01:00
2018-11-19 11:16:46 -06:00
2017-09-18 19:43:38 -04:00
2018-11-19 10:08:19 -06:00
2017-02-12 00:47:42 +01:00
2018-11-19 10:08:19 -06:00
2017-02-12 00:47:42 +01:00
2018-11-19 10:08:19 -06:00
2017-02-24 16:09:22 +01:00
2018-11-19 11:16:46 -06:00
2017-11-21 14:54:02 +01:00
2018-11-19 11:16:46 -06:00
2018-01-23 12:34:43 +01:00
2018-11-19 10:08:19 -06:00
2017-07-11 17:45:01 +02:00
2017-07-11 17:45:01 +02:00
2018-11-19 10:08:19 -06:00
2017-05-11 14:28:07 +02:00
2018-11-19 10:08:19 -06:00
2017-09-26 14:46:23 +02:00
2018-11-19 10:08:19 -06:00
2018-11-19 14:32:04 +01:00
2018-11-19 10:08:19 -06:00
2017-06-09 11:45:03 +02:00
2018-11-19 11:16:46 -06:00
2018-01-23 12:34:43 +01:00
2018-11-19 10:08:19 -06:00
2018-05-23 14:30:51 +02:00
2018-11-19 11:16:46 -06:00
2018-04-03 16:58:48 +02:00
2018-11-19 10:08:19 -06:00
2017-09-26 14:46:23 +02:00
2018-11-19 10:08:19 -06:00
2017-07-11 17:44:56 +02:00
2018-11-19 10:08:19 -06:00
2017-07-11 17:44:56 +02:00
2018-11-19 10:08:19 -06:00
2017-08-01 18:09:33 +02:00
2018-11-19 10:08:19 -06:00
2018-05-23 14:30:51 +02:00
2018-11-19 10:08:19 -06:00
2017-08-15 10:03:28 -05:00
2018-04-10 16:33:43 +02:00
2018-10-30 21:13:54 -03:00
2018-11-19 11:16:46 -06:00
2017-09-26 14:46:23 +02:00
2017-11-17 18:06:21 +01:00
2017-11-17 18:06:21 +01:00
2018-11-19 10:08:19 -06:00
2018-07-10 10:36:15 +02:00
2018-11-19 10:08:19 -06:00
2018-01-23 12:34:43 +01:00
2018-03-13 17:06:32 -04:00
2018-03-13 17:06:32 -04:00
2018-11-19 10:08:19 -06:00
2017-11-21 11:58:12 -05:00
2018-05-15 16:15:21 +02:00
2018-01-23 12:33:07 +01:00
2017-12-19 10:25:09 +00:00
2018-10-30 21:13:54 -03:00
2018-03-09 15:40:07 +01:00
2018-10-30 21:13:54 -03:00
2018-11-19 11:16:46 -06:00
2018-01-23 12:34:43 +01:00
2018-04-10 16:33:08 +02:00
2018-01-26 09:37:21 -06:00
2018-05-30 13:31:18 +02:00
2018-10-30 21:13:54 -03:00
2018-10-30 21:13:54 -03:00
2018-10-30 21:13:54 -03:00
2018-04-10 16:33:08 +02:00
2018-10-30 21:13:54 -03:00
2018-03-13 15:44:09 -05:00
2018-03-13 15:44:09 -05:00
2018-05-30 13:31:18 +02:00
2018-10-30 21:13:54 -03:00
2018-05-30 13:31:18 +02:00
2018-10-30 21:13:54 -03:00
2018-05-30 13:31:18 +02:00
2018-10-30 21:13:54 -03:00
2018-05-30 13:31:18 +02:00
2018-10-30 21:13:54 -03:00
2018-11-19 10:08:19 -06:00
2018-05-15 16:15:21 +02:00
2018-11-19 10:08:19 -06:00
2018-05-15 16:15:21 +02:00
2018-06-11 16:18:45 +02:00
2018-10-30 21:13:54 -03:00
2018-06-11 16:18:45 +02:00
2018-06-11 16:18:45 +02:00
2018-10-26 17:17:32 +02:00
2018-10-30 21:13:54 -03:00
2018-06-11 16:18:45 +02:00
2018-10-30 21:13:54 -03:00
2018-11-19 12:51:40 +01:00
2018-11-19 12:51:40 +01:00
2018-11-19 10:08:19 -06:00
2018-06-15 14:49:44 +02:00
2018-07-10 11:55:11 +02:00
2018-10-30 21:13:54 -03:00
2018-11-22 19:37:31 +01:00
2018-11-22 19:37:31 +01:00
2018-11-19 10:08:19 -06:00
2018-07-09 19:43:24 +02:00
2018-11-19 10:08:19 -06:00
2018-07-12 18:24:08 +02:00
2018-11-19 11:16:46 -06:00
2018-07-30 15:35:37 +02:00
2018-11-19 10:08:19 -06:00
2018-08-21 15:20:37 -04:00
2018-11-19 10:08:19 -06:00
2018-09-24 23:46:05 -04:00
2018-11-19 11:16:46 -06:00
2018-11-05 15:09:55 +01:00
2018-11-22 16:43:52 +01:00
2018-11-19 11:16:46 -06:00
2018-11-19 10:08:19 -06:00
2018-11-19 10:08:19 -06:00
2018-06-01 16:01:29 +01:00
2018-11-19 11:16:46 -06:00
2018-11-19 11:16:46 -06:00
2018-11-19 11:16:46 -06:00
2018-11-19 10:08:19 -06:00
2018-11-21 15:17:37 +01:00
2012-02-22 16:15:22 +01:00
2018-11-22 19:37:31 +01:00
2018-11-21 10:30:05 +01:00
2017-02-12 00:47:42 +01:00
2018-10-30 21:13:54 -03:00
2018-10-30 21:11:52 -03:00
2018-10-30 21:11:52 -03:00
2016-06-16 15:19:55 +02:00
2016-10-27 19:05:23 +02:00