[libvirt] [PATCH v2] qemu driver: use lseek64 for setting position in logfile

2011-01-04 Thread Stefan Berger
V2: - removed replacements of lseek() to lseek64() from patch While doing some testing with Qemu and creating huge logfiles I encountered the case where the VM could not start anymore due to the lseek() to the end of the Qemu VM's log file failing. The patch below fixes the problem by

Re: [libvirt] [PATCH v2] qemu driver: use lseek64 for setting position in logfile

2011-01-04 Thread Eric Blake
On 01/04/2011 09:43 AM, Stefan Berger wrote: V2: - removed replacements of lseek() to lseek64() from patch While doing some testing with Qemu and creating huge logfiles I encountered the case where the VM could not start anymore due to the lseek() to the end of the Qemu VM's log file

Re: [libvirt] [PATCH v2] qemu driver: use lseek64 for setting position in logfile

2011-01-04 Thread Daniel P. Berrange
On Tue, Jan 04, 2011 at 10:16:54AM -0700, Eric Blake wrote: On 01/04/2011 09:43 AM, Stefan Berger wrote: V2: - removed replacements of lseek() to lseek64() from patch While doing some testing with Qemu and creating huge logfiles I encountered the case where the VM could not start

Re: [libvirt] [PATCH v2] qemu driver: use lseek64 for setting position in logfile

2011-01-04 Thread Eric Blake
On 01/04/2011 10:22 AM, Daniel P. Berrange wrote: On Tue, Jan 04, 2011 at 10:16:54AM -0700, Eric Blake wrote: On 01/04/2011 09:43 AM, Stefan Berger wrote: V2: - removed replacements of lseek() to lseek64() from patch While doing some testing with Qemu and creating huge logfiles I

Re: [libvirt] [PATCH v2] qemu driver: use lseek64 for setting position in logfile

2011-01-04 Thread Stefan Berger
On 01/04/2011 12:16 PM, Eric Blake wrote: On 01/04/2011 09:43 AM, Stefan Berger wrote: V2: - removed replacements of lseek() to lseek64() from patch While doing some testing with Qemu and creating huge logfiles I encountered the case where the VM could not start anymore due to the lseek()