All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH][TOOLS] Fix typo in error
@ 2006-11-14 23:34 Jimi Xenidis
  2006-11-14 23:39 ` Russ Blaine
  0 siblings, 1 reply; 3+ messages in thread
From: Jimi Xenidis @ 2006-11-14 23:34 UTC (permalink / raw)
  To: xen-devel


We increase reservations by exentes not pages.

Signed-off-by: Jimi Xenidis <jimix@watson.ibm.com>

--
diff -r e7a54ea14057 tools/libxc/xc_domain.c
--- a/tools/libxc/xc_domain.c	Mon Nov 13 12:35:17 2006 -0600
+++ b/tools/libxc/xc_domain.c	Tue Nov 14 18:34:15 2006 -0500
@@ -352,7 +352,7 @@ int xc_domain_memory_increase_reservatio
     if ( err >= 0 )
     {
         DPRINTF("Failed allocation for dom %d: "
-                "%ld pages order %d addr_bits %d\n",
+                "%ld extents of order %d addr_bits %d\n",
                 domid, nr_extents, extent_order, address_bits);
         errno = ENOMEM;
         err = -1;
@@ -390,7 +390,7 @@ int xc_domain_memory_decrease_reservatio
 
     if ( err >= 0 )
     {
-        DPRINTF("Failed deallocation for dom %d: %ld pages order %d\n",
+        DPRINTF("Failed deallocation for dom %d: %ld extents of order %d\n",
                 domid, nr_extents, extent_order);
         errno = EINVAL;
         err = -1;
@@ -421,7 +421,7 @@ int xc_domain_memory_populate_physmap(in
 
     if ( err >= 0 )
     {
-        DPRINTF("Failed allocation for dom %d: %ld pages order %d\n",
+        DPRINTF("Failed allocation for dom %d: %ld externs of order %d\n",
                 domid, nr_extents, extent_order);
         errno = EBUSY;
         err = -1;

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2006-11-14 23:41 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2006-11-14 23:34 [PATCH][TOOLS] Fix typo in error Jimi Xenidis
2006-11-14 23:39 ` Russ Blaine
2006-11-14 23:41   ` Jimi Xenidis

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.