Re: [Qemu-devel] [PATCH v5 4/6] block: Convert open calls to qemu_open

2012-07-25 Thread Corey Bryant
On 07/25/2012 03:22 PM, Eric Blake wrote: On 07/23/2012 07:08 AM, Corey Bryant wrote: This patch converts all block layer open calls to qemu_open. Note that this adds the O_CLOEXEC flag to the changed open paths when the O_CLOEXEC macro is defined. Is it actually adding O_CLOEXEC, or just t

Re: [Qemu-devel] [PATCH v5 4/6] block: Convert open calls to qemu_open

2012-07-25 Thread Eric Blake
On 07/23/2012 07:08 AM, Corey Bryant wrote: > This patch converts all block layer open calls to qemu_open. > > Note that this adds the O_CLOEXEC flag to the changed open paths > when the O_CLOEXEC macro is defined. Is it actually adding O_CLOEXEC, or just the ability to use O_CLOEXEC? Or is the

[Qemu-devel] [PATCH v5 4/6] block: Convert open calls to qemu_open

2012-07-23 Thread Corey Bryant
This patch converts all block layer open calls to qemu_open. Note that this adds the O_CLOEXEC flag to the changed open paths when the O_CLOEXEC macro is defined. Signed-off-by: Corey Bryant --- v2: -Convert calls to qemu_open instead of file_open (kw...@redhat.com) -Mention introduction of O_