WARNING - OLD ARCHIVES

This is an archived copy of the Xen.org mailing list, which we have preserved to ensure that existing links to archives are not broken. The live archive, which contains the latest emails, can be found at http://lists.xen.org/
   
 
 
Xen 
 
Home Products Support Community News
 
   
 

xen-devel

[Xen-devel] [PATCH]xl: fix vcpu-* command line args

To: "xen-devel@xxxxxxxxxxxxxxxxxxx" <xen-devel@xxxxxxxxxxxxxxxxxxx>
Subject: [Xen-devel] [PATCH]xl: fix vcpu-* command line args
From: Yang Hongyang <yanghy@xxxxxxxxxxxxxx>
Date: Thu, 03 Jun 2010 17:21:54 +0800
Delivery-date: Thu, 03 Jun 2010 02:21:20 -0700
Envelope-to: www-data@xxxxxxxxxxxxxxxxxxx
List-help: <mailto:xen-devel-request@lists.xensource.com?subject=help>
List-id: Xen developer discussion <xen-devel.lists.xensource.com>
List-post: <mailto:xen-devel@lists.xensource.com>
List-subscribe: <http://lists.xensource.com/mailman/listinfo/xen-devel>, <mailto:xen-devel-request@lists.xensource.com?subject=subscribe>
List-unsubscribe: <http://lists.xensource.com/mailman/listinfo/xen-devel>, <mailto:xen-devel-request@lists.xensource.com?subject=unsubscribe>
Sender: xen-devel-bounces@xxxxxxxxxxxxxxxxxxx
User-agent: Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.1.9) Gecko/20100423 Thunderbird/3.0.4
Command line arguments start at argv[2]

Signed-off-by: Yang Hongyang <yanghy@xxxxxxxxxxxxxx> 

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

_______________________________________________
Xen-devel mailing list
Xen-devel@xxxxxxxxxxxxxxxxxxx
http://lists.xensource.com/xen-devel

<Prev in Thread] Current Thread [Next in Thread>
  • [Xen-devel] [PATCH]xl: fix vcpu-* command line args, Yang Hongyang <=