Re: [libvirt] [PATCHv3] python: Fix problems of virDomain{Set, Get}BlkioParameters bindings

2012-02-10 Thread Eric Blake
On 02/10/2012 05:10 PM, Eric Blake wrote: > On 02/10/2012 02:41 AM, a...@redhat.com wrote: >> From: Alex Jia >> >> The parameter 'device_weight' is a string, however, the >> 'VIR_TYPED_PARAM_STRING' >> type condition is missed by libvirt_virDomain{Set, Get}BlkioParameters >> bindings, >> the res

Re: [libvirt] [PATCHv3] python: Fix problems of virDomain{Set, Get}BlkioParameters bindings

2012-02-10 Thread Eric Blake
On 02/10/2012 02:41 AM, a...@redhat.com wrote: > From: Alex Jia > > The parameter 'device_weight' is a string, however, the > 'VIR_TYPED_PARAM_STRING' > type condition is missed by libvirt_virDomain{Set, Get}BlkioParameters > bindings, > the result is we can't get or change 'device_weight' valu

[libvirt] [PATCHv3] python: Fix problems of virDomain{Set, Get}BlkioParameters bindings

2012-02-10 Thread ajia
From: Alex Jia The parameter 'device_weight' is a string, however, the 'VIR_TYPED_PARAM_STRING' type condition is missed by libvirt_virDomain{Set, Get}BlkioParameters bindings, the result is we can't get or change 'device_weight' value. The latest python binding codes are refactored and added re