Re: [libvirt] [PATCH 05/34] conf: Use local copy of maxvcpus in virDomainVcpuParse

2015-11-24 Thread Peter Krempa
On Mon, Nov 23, 2015 at 07:04:43 -0500, John Ferlan wrote: > > > On 11/20/2015 10:21 AM, Peter Krempa wrote: > > Use the local variable rather than getting it all the time from the > > struct. This will simplify further refactors. > > --- > > src/conf/domain_conf.c | 6 +++--- > > 1 file

Re: [libvirt] [PATCH 05/34] conf: Use local copy of maxvcpus in virDomainVcpuParse

2015-11-23 Thread John Ferlan
On 11/20/2015 10:21 AM, Peter Krempa wrote: > Use the local variable rather than getting it all the time from the > struct. This will simplify further refactors. > --- > src/conf/domain_conf.c | 6 +++--- > 1 file changed, 3 insertions(+), 3 deletions(-) > > diff --git a/src/conf/domain_conf.c

[libvirt] [PATCH 05/34] conf: Use local copy of maxvcpus in virDomainVcpuParse

2015-11-20 Thread Peter Krempa
Use the local variable rather than getting it all the time from the struct. This will simplify further refactors. --- src/conf/domain_conf.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/conf/domain_conf.c b/src/conf/domain_conf.c index 0ac7dbf..3c8a926 100644 ---