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: Add option '-p' for command 'xl create'

To: "xen-devel@xxxxxxxxxxxxxxxxxxx" <xen-devel@xxxxxxxxxxxxxxxxxxx>
Subject: [Xen-devel] [PATCH] xl: Add option '-p' for command 'xl create'
From: Yu Zhiguo <yuzg@xxxxxxxxxxxxxx>
Date: Mon, 26 Apr 2010 12:10:28 +0800
Delivery-date: Sun, 25 Apr 2010 21:14:42 -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: Thunderbird 3.0a1 (Windows/2008050715)
# HG changeset patch
# User Yu Zhiguo <yuzg@xxxxxxxxxxxxxx>
# Date 1272283460 -28800
# Node ID 451e2bd1554b099f7d3c65f77841320e0e67d102
# Parent  c87ec146229ab2255ecdf005b862b943b1a5112e
xl: Add option '-p' for command 'xl create'

Add option '-p' for command 'xl create', and update
the help info.
* -p Leave the domain paused after it is created.

Signed-off-by: Yu Zhiguo <yuzg@xxxxxxxxxxxxxx>

diff -r c87ec146229a -r 451e2bd1554b tools/libxl/xl.c
--- a/tools/libxl/xl.c  Fri Apr 23 15:04:26 2010 +0100
+++ b/tools/libxl/xl.c  Mon Apr 26 20:04:20 2010 +0800
@@ -1112,6 +1112,7 @@
         printf("Create a domain based on <ConfigFile>.\n\n");
         printf("Options:\n\n");
         printf("-h                     Print this help.\n");
+        printf("-p                     Leave the domain paused after it is 
created.\n");
         printf("-d                     Enable debug messages.\n");
         printf("-e                     Do not wait in the background for the 
death of the domain.\n");
     } else if(!strcmp(command, "list")) {
@@ -2290,11 +2291,14 @@
 int main_create(int argc, char **argv)
 {
     char *filename = NULL;
-    int debug = 0, daemonize = 1;
+    int paused = 0, debug = 0, daemonize = 1;
     int opt, rc;
 
-    while ((opt = getopt(argc, argv, "hde")) != -1) {
+    while ((opt = getopt(argc, argv, "hdep")) != -1) {
         switch (opt) {
+        case 'p':
+            paused = 1;
+            break;
         case 'd':
             debug = 1;
             break;
@@ -2316,7 +2320,7 @@
     }
 
     filename = argv[optind];
-    rc = create_domain(debug, daemonize, filename, NULL, 0,
+    rc = create_domain(debug, daemonize, filename, NULL, paused,
                        -1, 0);
     exit(-rc);
 }


_______________________________________________
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: Add option '-p' for command 'xl create', Yu Zhiguo <=