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.
While set other Qos values as "-1", the value will be convert to "18446744073709551615" in the running guest xml.
Steps:
1. prepare one xml like the following one:
<interface type='network'>
<mac address='52:54:00:69:5a:de'/>
<source network='default'/>
<target dev='vnet0'/>
<bandwidth>
<inbound average='100' peak='-1' burst='-1'/>
<outbound average='-1' peak='-1' burst='-1'/>
</bandwidth>
<alias name='net0'/>
<address type='pci' domain='0x0000' bus='0x00' slot='0x03' function='0x0'/>
</interface>
2. check the original Qos settings of the running guest.
#virsh dumpxml a
......
<interface type='network'>
<mac address='52:54:00:69:5a:de'/>
<source network='default'/>
<target dev='vnet0'/>
<bandwidth>
<inbound average='100' peak='256' burst='128'/>
<outbound average='100' peak='256' burst='128'/>
</bandwidth>
<alias name='net0'/>
<address type='pci' domain='0x0000' bus='0x00' slot='0x03' function='0x0'/>
</interface>
.......
3. update the Qos value with the xml in step1
# virsh update-device a Qos.xml
Device updated successfully
4. the value is updated to very large, it's not correct, should be report one error if the setting value is negative number.
# virsh dumpxml a|grep interface -A 10
<interface type='network'>
<mac address='52:54:00:69:5a:de'/>
<source network='default'/>
<target dev='vnet0'/>
<bandwidth>
<inbound average='100' peak='18446744073709551615' burst='18446744073709551615'/>
<outbound average='18446744073709551615' peak='18446744073709551615' burst='18446744073709551615'/>
</bandwidth>
<alias name='net0'/>
<address type='pci' domain='0x0000' bus='0x00' slot='0x03' function='0x0'/>
</interface>
Comment 4RHEL Program Management
2014-04-04 20:56:40 UTC
Development Management has reviewed and declined this request.
You may appeal this decision by reopening this request.