All of lore.kernel.org
 help / color / mirror / Atom feed
From: Yang Hongyang <yanghy@cn.fujitsu.com>
To: "xen-devel@lists.xensource.com" <xen-devel@lists.xensource.com>
Subject: [PATCH 2/2]xl: Add "xl domname" command
Date: Fri, 07 May 2010 13:00:52 +0800	[thread overview]
Message-ID: <4BE39E84.40305@cn.fujitsu.com> (raw)

Add "xl domname" command, a clone of "xm domname".

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

diff -r 1d00cee69621 -r 357eab43f7ee tools/libxl/xl_cmdimpl.c
--- a/tools/libxl/xl_cmdimpl.c	Fri May 07 19:35:40 2010 +0800
+++ b/tools/libxl/xl_cmdimpl.c	Fri May 07 20:06:28 2010 +0800
@@ -1224,6 +1224,9 @@
     } else if (!strcmp(command, "domid")) {
         printf("Usage: xl domid <DomainName>\n\n");
         printf("Convert a domain name to domain id.\n");
+    } else if (!strcmp(command, "domname")) {
+        printf("Usage: xl domname <DomainId>\n\n");
+        printf("Convert a domain id to domain name.\n");
     }
 }
 
@@ -2981,3 +2984,43 @@
 
     exit(0);
 }
+
+int main_domname(int argc, char **argv)
+{
+    int opt;
+    char *domname = NULL;
+    char *endptr = NULL;
+
+    while ((opt = getopt(argc, argv, "h")) != -1) {
+        switch (opt) {
+        case 'h':
+            help("domname");
+            exit(0);
+        default:
+            fprintf(stderr, "option `%c' not supported.\n", opt);
+            break;
+        }
+    }
+
+    if (!argv[optind]) {
+        fprintf(stderr, "Must specify a domain id.\n\n");
+        help("domname");
+        exit(1);
+    }
+    domid = strtol(argv[optind], &endptr, 10);
+    if (domid == 0 && !strcmp(endptr, argv[optind])) {
+        /*no digits at all*/
+        fprintf(stderr, "Invalid domain id.\n\n");
+        exit(1);
+    }
+
+    domname = libxl_domid_to_name(&ctx, domid);
+    if (!domname) {
+        fprintf(stderr, "Can't get domain name of domain id '%d', maybe this domain does not exist.\n", domid);
+        exit(1);
+    }
+
+    printf("%s\n", domname);
+
+    exit(0);
+}
diff -r 1d00cee69621 -r 357eab43f7ee tools/libxl/xl_cmdimpl.h
--- a/tools/libxl/xl_cmdimpl.h	Fri May 07 19:35:40 2010 +0800
+++ b/tools/libxl/xl_cmdimpl.h	Fri May 07 20:06:28 2010 +0800
@@ -36,5 +36,6 @@
 int main_memset(int argc, char **argv);
 int main_sched_credit(int argc, char **argv);
 int main_domid(int argc, char **argv);
+int main_domname(int argc, char **argv);
 
 void help(char *command);
diff -r 1d00cee69621 -r 357eab43f7ee tools/libxl/xl_cmdtable.c
--- a/tools/libxl/xl_cmdtable.c	Fri May 07 19:35:40 2010 +0800
+++ b/tools/libxl/xl_cmdtable.c	Fri May 07 20:06:28 2010 +0800
@@ -37,6 +37,7 @@
     { "info", &main_info, "get information about Xen host" },
     { "sched-credit", &main_sched_credit, "get/set credit scheduler parameters" },
     { "domid", &main_domid, "convert a domain name to domain id"},
+    { "domname", &main_domname, "convert a domain id to domain name"},
 };
 
 int cmdtable_len = sizeof(cmd_table)/sizeof(struct cmd_spec);

-- 
Regards
Yang Hongyang

             reply	other threads:[~2010-05-07  5:00 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2010-05-07  5:00 Yang Hongyang [this message]
2010-05-07 15:44 ` [PATCH 2/2]xl: Add "xl domname" command Stefano Stabellini

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=4BE39E84.40305@cn.fujitsu.com \
    --to=yanghy@cn.fujitsu.com \
    --cc=xen-devel@lists.xensource.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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.