[libvirt] [PATCH] qemu: Don't try to set input FD to -1

Matthias Bolte matthias.bolte at googlemail.com
Sun Dec 5 09:24:48 UTC 2010


2010/12/5 Eric Blake <eblake at redhat.com>:
> On 12/04/2010 04:47 PM, Matthias Bolte wrote:
>> ---
>>  src/qemu/qemu_driver.c |    5 ++++-
>>  1 files changed, 4 insertions(+), 1 deletions(-)
>>
>> diff --git a/src/qemu/qemu_driver.c b/src/qemu/qemu_driver.c
>> index 54e9dcb..1b86b5e 100644
>> --- a/src/qemu/qemu_driver.c
>> +++ b/src/qemu/qemu_driver.c
>> @@ -4091,7 +4091,10 @@ static int qemudStartVMDaemon(virConnectPtr conn,
>>
>>      VIR_WARN("Executing %s", vm->def->emulator);
>>      virCommandSetPreExecHook(cmd, qemudSecurityHook, &hookData);
>> -    virCommandSetInputFD(cmd, stdin_fd);
>> +
>> +    if (stdin_fd != -1)
>> +        virCommandSetInputFD(cmd, stdin_fd);
>> +
>
> ACK
>

Thanks, pushed.

Matthias




More information about the libvir-list mailing list