Re: [PATCH] capabilities: correctly parse "cpus" in the host NUMA topology

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



On 11/22/2013 06:28 AM, Giuseppe Scrivano wrote:
> "cpus" might no be the only child element in the "cell" element, so be
> sure to check all children.
> 
> Closes: https://bugzilla.redhat.com/show_bug.cgi?id=1032320
> 
> Signed-off-by: Giuseppe Scrivano <gscrivan@xxxxxxxxxx>
> ---
>  virtinst/capabilities.py | 10 +++++-----
>  1 file changed, 5 insertions(+), 5 deletions(-)
> 
> diff --git a/virtinst/capabilities.py b/virtinst/capabilities.py
> index ec18ac8..34edeed 100644
> --- a/virtinst/capabilities.py
> +++ b/virtinst/capabilities.py
> @@ -464,11 +464,11 @@ class TopologyCell(object):
>  
>      def parseXML(self, node):
>          self.id = int(node.prop("id"))
> -        child = node.children
> -        if child.name == "cpus":
> -            for cpu in child.children:
> -                if cpu.name == "cpu":
> -                    self.cpus.append(TopologyCPU(cpu))
> +        for child in node.children:
> +            if child.name == "cpus":
> +                for cpu in child.children:
> +                    if cpu.name == "cpu":
> +                        self.cpus.append(TopologyCPU(cpu))
>  
>  
>  class TopologyCPU(object):
> 

ACK

- Cole

_______________________________________________
virt-tools-list mailing list
virt-tools-list@xxxxxxxxxx
https://www.redhat.com/mailman/listinfo/virt-tools-list




[Index of Archives]     [Linux Virtualization]     [KVM Development]     [CentOS Virtualization]     [Netdev]     [Ethernet Bridging]     [Linux Wireless]     [Kernel Newbies]     [Security]     [Linux for Hams]     [Netfilter]     [Bugtraq]     [Yosemite Forum]     [MIPS Linux]     [ARM Linux]     [Linux RAID]     [Linux Admin]     [Samba]     [Video 4 Linux]

  Powered by Linux