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

2012-06-13 Thread Corey Bryant
On 06/13/2012 06:26 AM, Kevin Wolf wrote: Am 08.06.2012 17:42, schrieb Corey Bryant: This patch converts all block layer open calls to qemu_open. This enables all block layer open paths to dup(X) a pre-opened file descriptor if the filename is of the format /dev/fd/X. This is useful if QEMU

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

2012-06-13 Thread Kevin Wolf
Am 08.06.2012 17:42, schrieb Corey Bryant: > This patch converts all block layer open calls to qemu_open. This > enables all block layer open paths to dup(X) a pre-opened file > descriptor if the filename is of the format /dev/fd/X. This is > useful if QEMU is restricted from opening certain file

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

2012-06-08 Thread Corey Bryant
This patch converts all block layer open calls to qemu_open. This enables all block layer open paths to dup(X) a pre-opened file descriptor if the filename is of the format /dev/fd/X. This is useful if QEMU is restricted from opening certain files. Note that this adds the O_CLOEXEC flag to the c

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

2012-06-08 Thread Corey Bryant
This patch converts all block layer open calls to qemu_open. This enables all block layer open paths to dup(X) a pre-opened file descriptor if the filename is of the format /dev/fd/X. This is useful if QEMU is restricted from opening certain files. Note that this adds the O_CLOEXEC flag to the c

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

2012-06-08 Thread Corey Bryant
This patch converts all block layer open calls to qemu_open. This enables all block layer open paths to dup(X) a pre-opened file descriptor if the filename is of the format /dev/fd/X. This is useful if QEMU is restricted from opening certain files. Note that this adds the O_CLOEXEC flag to the c