[libvirt] libvirt 1.2.1 vs. Xen 4.1.4

2014-01-28 Thread Guido Günther
Hi, a user of Debian's libvirt backport to wheezy using Xen reported libvirt 1.2.1 failing for him like: info : libvirt version: 1.2.1 error : virIdentityGetSystem:173 : Unable to lookup SELinux process context: Invalid argument error : xenHypervisorDoV2Sys:1011 : Unable to issue hypervisor

Re: [libvirt] libvirt 1.2.1 vs. Xen 4.1.4

2014-01-28 Thread Jim Fehlig
Guido Günther wrote: Hi, a user of Debian's libvirt backport to wheezy using Xen reported libvirt 1.2.1 failing for him like: info : libvirt version: 1.2.1 error : virIdentityGetSystem:173 : Unable to lookup SELinux process context: Invalid argument error : xenHypervisorDoV2Sys:1011 :

Re: [libvirt] libvirt 1.2.1 vs. Xen 4.1.4

2014-01-28 Thread Eric Blake
On 01/28/2014 06:40 PM, Jim Fehlig wrote: Commit df36af58 broke parsing of http response from xend. The prior use of atoi() would happily parse e.g. a string containing 200 OK\r\n, whereas virStrToLong_i() will fail when called with a NULL end_ptr. Change the calls to virStrToLong_i() to

Re: [libvirt] libvirt 1.2.1 vs. Xen 4.1.4

2014-01-28 Thread Jim Fehlig
Eric Blake wrote: On 01/28/2014 06:40 PM, Jim Fehlig wrote: Commit df36af58 broke parsing of http response from xend. The prior use of atoi() would happily parse e.g. a string containing 200 OK\r\n, whereas virStrToLong_i() will fail when called with a NULL end_ptr. Change the calls to