|
|
|
|
|
|
|
|
|
|
xen-devel
Re: [Xen-devel] [PATCH] ioemu: need probe backing file format
Wei Kong writes ("[Xen-devel] [PATCH] ioemu: need probe backing file format"):
> Revert changeset 17646
> Due to qcow2 also has backing file.
I'm not sure what you mean exactly or what you are trying to achieve,
but guessing slightly:
Do you mean that you have a qcow2 image which has a backing file other
than in raw format (eg, another cow image) ? If so that is sadly not
supported in Xen; the version of qemu we currently have has no way of
recording the backing file format and format probing is a security
vulnerability, as has been discussed several times.
> - ret = bdrv_open2(bs->backing_hd, backing_filename, open_flags,
> &bdrv_raw);
> + ret = bdrv_open(bs->backing_hd, backing_filename, open_flags,
> &bdrv_raw);
In any case this is wrong because bdrv_open has one fewer arguments
than bdrv_open2 ...
Ian.
_______________________________________________
Xen-devel mailing list
Xen-devel@xxxxxxxxxxxxxxxxxxx
http://lists.xensource.com/xen-devel
|
|
|
|
|