[libvirt] [PATCH] qemu: fix a typo on qemuDomainSetBlkioParameters

ajia at redhat.com ajia at redhat.com
Tue Jan 10 09:55:01 UTC 2012


From: Alex Jia <ajia at redhat.com>

It should be a copy-paste error, the result is programming will result in an 
infinite loop again due to without iterating 'j' variable. 

* src/qemu/qemu_driver.c: fix a typo on qemuDomainSetBlkioParameters.

RHBZ: https://bugzilla.redhat.com/show_bug.cgi?id=770520

Signed-off-by: Alex Jia <ajia at redhat.com>
---
 src/qemu/qemu_driver.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/src/qemu/qemu_driver.c b/src/qemu/qemu_driver.c
index 1a7e816..383b2be 100644
--- a/src/qemu/qemu_driver.c
+++ b/src/qemu/qemu_driver.c
@@ -6002,7 +6002,7 @@ static int qemuDomainSetBlkioParameters(virDomainPtr dom,
                     ret = -1;
                     continue;
                 }
-                for (j = 0; j < ndevices; i++) {
+                for (j = 0; j < ndevices; j++) {
                     rc = virCgroupSetBlkioDeviceWeight(group,
                                                        devices[j].path,
                                                        devices[j].weight);
-- 
1.7.1




More information about the libvir-list mailing list