Note: This bug is displayed in read-only format because
the product is no longer active in Red Hat Bugzilla.
RHEL Engineering is moving the tracking of its product development work on RHEL 6 through RHEL 9 to Red Hat Jira (issues.redhat.com). If you're a Red Hat customer, please continue to file support cases via the Red Hat customer portal. If you're not, please head to the "RHEL project" in Red Hat Jira and file new tickets here. Individual Bugzilla bugs in the statuses "NEW", "ASSIGNED", and "POST" are being migrated throughout September 2023. Bugs of Red Hat partners with an assigned Engineering Partner Manager (EPM) are migrated in late September as per pre-agreed dates. Bugs against components "kernel", "kernel-rt", and "kpatch" are only migrated if still in "NEW" or "ASSIGNED". If you cannot log in to RH Jira, please consult article #7032570. That failing, please send an e-mail to the RH Jira admins at rh-issues@redhat.com to troubleshoot your issue as a user management inquiry. The email creates a ServiceNow ticket with Red Hat. Individual Bugzilla bugs that are migrated will be moved to status "CLOSED", resolution "MIGRATED", and set with "MigratedToJIRA" in "Keywords". The link to the successor Jira issue will be found under "Links", have a little "two-footprint" icon next to it, and direct you to the "RHEL project" in Red Hat Jira (issue links are of type "https://issues.redhat.com/browse/RHEL-XXXX", where "X" is a digit). This same link will be available in a blue banner at the top of the page informing you that that bug has been migrated.
When libvirt could not find a suitable CPU model for a host CPU, it would not provide the CPU topology in host capabilities even though the topology was detected correctly. Consequently, applications that work with the host CPU topology but not with the CPU model could not see the topology in host capabilities. With this update, the host capabilities XML description contains the host CPU topology even if the host CPU model is unknown.
Description of problem:
Running vdsm gets exception while reading libvirt capabilities
Version-Release number of selected component (if applicable):
libvirt-0.9.10-21.el6_3.5.x86_64
vdsm-4.10.1-0.18.el6.x86_64
How reproducible:
service vdsmd start
Steps to Reproduce:
1. install and run vdsm, it reproduce during vdsm startup
2.
3.
Actual results:
when running virsh -r capabilities we see no parameters under topology tag:
<topology>
<cells num='1'>
<cell id='0'>
<cpus num='1'>
<cpu id='0'/>
</cpus>
</cell>
</cells>
</topology>
vdsm throws exception and fails to start:
MainThread::ERROR::2012-10-16 15:42:44,001::vdsm::84::vds::(run) Exception raised
Traceback (most recent call last):
File "/usr/share/vdsm/vdsm", line 82, in run
serve_clients(log)
File "/usr/share/vdsm/vdsm", line 50, in serve_clients
cif = clientIF.getInstance(log)
File "/usr/share/vdsm/clientIF.py", line 126, in getInstance
cls._instance = clientIF(log)
File "/usr/share/vdsm/clientIF.py", line 93, in __init__
caps.CpuTopology().cores())
File "/usr/share/vdsm/caps.py", line 88, in __init__
self._topology = _getCpuTopology(capabilities)
File "/usr/lib64/python2.6/site-packages/vdsm/utils.py", line 822, in __call__
value = self.func(*args)
File "/usr/share/vdsm/caps.py", line 116, in _getCpuTopology
'sockets': int(cpu.getElementsByTagName('topology')[0].
IndexError: list index out of range
Expected results:
topology should have the attributes cells, sockets, cores and threads in libvirt capabilities xml.
Additional info:
_getCpuTopology is a function from vdsm, which parses cpu topology from /capabilities/host/cpu/topology in libvirt's capabilities XML. The /capabilities/host/topology element shown in bug description is a NUMA topology. While vdsm can use virNodeGetInfo to get the CPU topology (rather than parsing it from capabilities), I agree that we have a bug in libvirt. When host CPU model cannot be detected for some reason, we won't provide the topology even though it's known.
Fixed upstream by v0.10.2-199-gf1c7010:
commit f1c70100409562c3f402392aa667732e5f89a2c4
Author: Jiri Denemark <jdenemar>
Date: Tue Oct 16 21:11:29 2012 +0200
qemu: Always format CPU topology
When libvirt cannot find a suitable CPU model for host CPU (easily
reproducible by running libvirt in a guest), it would not provide CPU
topology in capabilities XML either. Even though CPU topology is known
and can be queried by virNodeGetInfo. With this patch, CPU topology will
always be provided in capabilities XML regardless on the presence of CPU
model.
Since the problem described in this bug report should be
resolved in a recent advisory, it has been closed with a
resolution of ERRATA.
For information on the advisory, and where to find the updated
files, follow the link below.
If the solution does not work for you, open a new bug report.
http://rhn.redhat.com/errata/RHSA-2013-0276.html
Description of problem: Running vdsm gets exception while reading libvirt capabilities Version-Release number of selected component (if applicable): libvirt-0.9.10-21.el6_3.5.x86_64 vdsm-4.10.1-0.18.el6.x86_64 How reproducible: service vdsmd start Steps to Reproduce: 1. install and run vdsm, it reproduce during vdsm startup 2. 3. Actual results: when running virsh -r capabilities we see no parameters under topology tag: <topology> <cells num='1'> <cell id='0'> <cpus num='1'> <cpu id='0'/> </cpus> </cell> </cells> </topology> vdsm throws exception and fails to start: MainThread::ERROR::2012-10-16 15:42:44,001::vdsm::84::vds::(run) Exception raised Traceback (most recent call last): File "/usr/share/vdsm/vdsm", line 82, in run serve_clients(log) File "/usr/share/vdsm/vdsm", line 50, in serve_clients cif = clientIF.getInstance(log) File "/usr/share/vdsm/clientIF.py", line 126, in getInstance cls._instance = clientIF(log) File "/usr/share/vdsm/clientIF.py", line 93, in __init__ caps.CpuTopology().cores()) File "/usr/share/vdsm/caps.py", line 88, in __init__ self._topology = _getCpuTopology(capabilities) File "/usr/lib64/python2.6/site-packages/vdsm/utils.py", line 822, in __call__ value = self.func(*args) File "/usr/share/vdsm/caps.py", line 116, in _getCpuTopology 'sockets': int(cpu.getElementsByTagName('topology')[0]. IndexError: list index out of range Expected results: topology should have the attributes cells, sockets, cores and threads in libvirt capabilities xml. Additional info: