[libvirt] [PATCH] Fix copy&paste typos in virProcessInfoGetAffinity

Jiri Denemark jdenemar at redhat.com
Tue Mar 9 13:59:01 UTC 2010


Signed-off-by: Jiri Denemark <jdenemar at redhat.com>
---
 src/util/processinfo.c |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/util/processinfo.c b/src/util/processinfo.c
index 5ae19f8..97ee779 100644
--- a/src/util/processinfo.c
+++ b/src/util/processinfo.c
@@ -130,31 +130,31 @@ realloc:
     if (sched_getaffinity(pid, masklen, mask) < 0) {
         CPU_FREE(mask);
         if (errno == EINVAL &&
             numcpus < (1024 << 8)) { /* 262144 cpus ought to be enough for anyone */
             numcpus = numcpus << 2;
             goto realloc;
         }
         virReportSystemError(errno,
-                             _("cannot set CPU affinity on process %d"), pid);
+                             _("cannot get CPU affinity of process %d"), pid);
         return -1;
     }
 
     for (i = 0 ; i < maxcpu ; i++)
         if (CPU_ISSET_S(i, masklen, mask))
             VIR_USE_CPU(map, i);
 #else
     /* Legacy method uses a fixed size cpu mask, only allows upto 1024 cpus */
     cpu_set_t mask;
 
     CPU_ZERO(&mask);
     if (sched_getaffinity(pid, sizeof(mask), &mask) < 0) {
         virReportSystemError(errno,
-                             _("cannot set CPU affinity on process %d"), pid);
+                             _("cannot get CPU affinity of process %d"), pid);
         return -1;
     }
 
     for (i = 0 ; i < maxcpu ; i++)
         if (CPU_ISSET(i, &mask))
             VIR_USE_CPU(map, i);
 #endif
 
-- 
1.7.0.2




More information about the libvir-list mailing list