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-changelog

[Xen-changelog] [xen-unstable] xl: fix vcpu-* command line args

To: xen-changelog@xxxxxxxxxxxxxxxxxxx
Subject: [Xen-changelog] [xen-unstable] xl: fix vcpu-* command line args
From: Xen patchbot-unstable <patchbot-unstable@xxxxxxxxxxxxxxxxxxx>
Date: Fri, 04 Jun 2010 03:45:26 -0700
Delivery-date: Fri, 04 Jun 2010 03:47:19 -0700
Envelope-to: www-data@xxxxxxxxxxxxxxxxxxx
List-help: <mailto:xen-changelog-request@lists.xensource.com?subject=help>
List-id: BK change log <xen-changelog.lists.xensource.com>
List-post: <mailto:xen-changelog@lists.xensource.com>
List-subscribe: <http://lists.xensource.com/mailman/listinfo/xen-changelog>, <mailto:xen-changelog-request@lists.xensource.com?subject=subscribe>
List-unsubscribe: <http://lists.xensource.com/mailman/listinfo/xen-changelog>, <mailto:xen-changelog-request@lists.xensource.com?subject=unsubscribe>
Reply-to: xen-devel@xxxxxxxxxxxxxxxxxxx
Sender: xen-changelog-bounces@xxxxxxxxxxxxxxxxxxx
# HG changeset patch
# User Keir Fraser <keir.fraser@xxxxxxxxxx>
# Date 1275642700 -3600
# Node ID 69ee5220bd944c0ba29e56504b0f1a275a8710e3
# Parent  e07e68840b8478880e30c06ac92145af68455eec
xl: fix vcpu-* command line args

Command line arguments start at argv[2]

Signed-off-by: Yang Hongyang <yanghy@xxxxxxxxxxxxxx>
---
 tools/libxl/xl_cmdimpl.c |   10 +++++-----
 1 files changed, 5 insertions(+), 5 deletions(-)

diff -r e07e68840b84 -r 69ee5220bd94 tools/libxl/xl_cmdimpl.c
--- a/tools/libxl/xl_cmdimpl.c  Fri Jun 04 10:10:45 2010 +0100
+++ b/tools/libxl/xl_cmdimpl.c  Fri Jun 04 10:11:40 2010 +0100
@@ -2729,7 +2729,7 @@ int main_vcpulist(int argc, char **argv)
         }
     }
 
-    vcpulist(argc - 1, argv + 1);
+    vcpulist(argc - 2, argv + 2);
     exit(0);
 }
 
@@ -2818,7 +2818,7 @@ int main_vcpupin(int argc, char **argv)
 {
     int opt;
 
-    if (argc != 4) {
+    if (argc != 5) {
         help("vcpu-pin");
         exit(0);
     }
@@ -2833,7 +2833,7 @@ int main_vcpupin(int argc, char **argv)
         }
     }
 
-    vcpupin(argv[1], argv[2] , argv[3]);
+    vcpupin(argv[2], argv[3] , argv[4]);
     exit(0);
 }
 
@@ -2859,7 +2859,7 @@ int main_vcpuset(int argc, char **argv)
 {
     int opt;
 
-    if (argc != 3) {
+    if (argc != 4) {
         help("vcpu-set");
         exit(0);
     }
@@ -2874,7 +2874,7 @@ int main_vcpuset(int argc, char **argv)
         }
     }
 
-    vcpuset(argv[1], argv[2]);
+    vcpuset(argv[2], argv[3]);
     exit(0);
 }
 

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

<Prev in Thread] Current Thread [Next in Thread>
  • [Xen-changelog] [xen-unstable] xl: fix vcpu-* command line args, Xen patchbot-unstable <=