All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH]xl: fix vcpu-* command line args
@ 2010-06-03  9:21 Yang Hongyang
  0 siblings, 0 replies; only message in thread
From: Yang Hongyang @ 2010-06-03  9:21 UTC (permalink / raw)
  To: xen-devel

Command line arguments start at argv[2]

Signed-off-by: Yang Hongyang <yanghy@cn.fujitsu.com> 

diff -r 5aabc6f94df5 tools/libxl/xl_cmdimpl.c
--- a/tools/libxl/xl_cmdimpl.c	Wed Jun 02 13:13:11 2010 +0100
+++ b/tools/libxl/xl_cmdimpl.c	Fri Jun 04 01:23:47 2010 +0800
@@ -2729,7 +2729,7 @@
         }
     }
 
-    vcpulist(argc - 1, argv + 1);
+    vcpulist(argc - 2, argv + 2);
     exit(0);
 }
 
@@ -2818,7 +2818,7 @@
 {
     int opt;
 
-    if (argc != 4) {
+    if (argc != 5) {
         help("vcpu-pin");
         exit(0);
     }
@@ -2833,7 +2833,7 @@
         }
     }
 
-    vcpupin(argv[1], argv[2] , argv[3]);
+    vcpupin(argv[2], argv[3] , argv[4]);
     exit(0);
 }
 
@@ -2859,7 +2859,7 @@
 {
     int opt;
 
-    if (argc != 3) {
+    if (argc != 4) {
         help("vcpu-set");
         exit(0);
     }
@@ -2874,7 +2874,7 @@
         }
     }
 
-    vcpuset(argv[1], argv[2]);
+    vcpuset(argv[2], argv[3]);
     exit(0);
 }
 

-- 
Regards
Yang Hongyang

^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2010-06-03  9:21 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2010-06-03  9:21 [PATCH]xl: fix vcpu-* command line args Yang Hongyang

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.