Re: [Qemu-devel] [PATCH 03/17] blockdev: Introduce DriveInfo.enable_auto_del

2013-09-29 Thread Wenchao Xia
Reviewed-by: Wenchao Xia

Re: [Qemu-devel] [PATCH 03/17] blockdev: Introduce DriveInfo.enable_auto_del

2013-09-20 Thread Kevin Wolf
Am 20.09.2013 um 17:03 hat Eric Blake geschrieben: > On 09/20/2013 05:54 AM, Kevin Wolf wrote: > > BlockDriverStates shouldn't be affected by an unplugged guest device, > > except if created with the legacy -drive command line option or the > > drive_add HMP command. > > > > Make the automatic del

Re: [Qemu-devel] [PATCH 03/17] blockdev: Introduce DriveInfo.enable_auto_del

2013-09-20 Thread Eric Blake
On 09/20/2013 09:12 AM, Kevin Wolf wrote: > Am 20.09.2013 um 17:03 hat Eric Blake geschrieben: >> On 09/20/2013 05:54 AM, Kevin Wolf wrote: >>> BlockDriverStates shouldn't be affected by an unplugged guest device, >>> except if created with the legacy -drive command line option or the >>> drive_add

Re: [Qemu-devel] [PATCH 03/17] blockdev: Introduce DriveInfo.enable_auto_del

2013-09-20 Thread Eric Blake
On 09/20/2013 05:54 AM, Kevin Wolf wrote: > BlockDriverStates shouldn't be affected by an unplugged guest device, > except if created with the legacy -drive command line option or the > drive_add HMP command. > > Make the automatic deletion as well as cancelling of jobs conditional on > an enable_

[Qemu-devel] [PATCH 03/17] blockdev: Introduce DriveInfo.enable_auto_del

2013-09-20 Thread Kevin Wolf
BlockDriverStates shouldn't be affected by an unplugged guest device, except if created with the legacy -drive command line option or the drive_add HMP command. Make the automatic deletion as well as cancelling of jobs conditional on an enable_auto_del boolean that is only set in drive_init(). Si