Re: [Qemu-devel] [PATCH v5 2/6] block: Avoid BlockDriverState.filename

2015-10-26 Thread Kevin Wolf
Am 19.10.2015 um 20:49 hat Max Reitz geschrieben: > In places which directly pass a filename to the OS, we should not use > the filename field at all but exact_filename instead (although the > former currently equals the latter if that is set). > > In raw_open_common(), we do not need to access BD

Re: [Qemu-devel] [PATCH v5 2/6] block: Avoid BlockDriverState.filename

2015-10-19 Thread Eric Blake
On 10/19/2015 12:49 PM, Max Reitz wrote: > In places which directly pass a filename to the OS, we should not use > the filename field at all but exact_filename instead (although the > former currently equals the latter if that is set). > > In raw_open_common(), we do not need to access BDS.filenam

[Qemu-devel] [PATCH v5 2/6] block: Avoid BlockDriverState.filename

2015-10-19 Thread Max Reitz
In places which directly pass a filename to the OS, we should not use the filename field at all but exact_filename instead (although the former currently equals the latter if that is set). In raw_open_common(), we do not need to access BDS.filename because we already have a local variable pointing