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: Re: [PATCH]xl: Add "xl shutdown" command
Date: Tue, 18 May 2010 16:22:45 +0800	[thread overview]
Message-ID: <4BF24E55.3070002@cn.fujitsu.com> (raw)
In-Reply-To: <4BF23BAC.9060009@cn.fujitsu.com>

I notice that someone else has already implenmentd the command,

Please ingnore this patch.

On 05/18/2010 03:03 PM, Yang Hongyang wrote:
> Add "xl shutdown" command.
> 
> Signed-off-by: Yang Hongyang<yanghy@cn.fujitsu.com> 
> 
> diff -r baccadfd9418 tools/libxl/xl_cmdimpl.c
> --- a/tools/libxl/xl_cmdimpl.c	Fri May 14 08:05:05 2010 +0100
> +++ b/tools/libxl/xl_cmdimpl.c	Tue May 18 22:47:32 2010 +0800
> @@ -3667,3 +3667,66 @@
>  
>      exit(0);
>  }
> +
> +int main_shutdown(int argc, char **argv)
> +{
> +    int all = 0, reboot = 0, halt = 0, action = 0/*default action is poweroff*/;
> +    struct libxl_vminfo *info;
> +    char *dom = NULL;
> +    int nb_vm = 0;
> +    int opt, i;
> +
> +    while ((opt = getopt(argc, argv, "haRH")) != -1) {
> +        switch (opt) {
> +        case 'a':
> +            all = 1;
> +            break;
> +        case 'R':
> +            reboot = 1;
> +            break;
> +        case 'H':
> +            halt = 1;
> +            break;
> +        case 'h':
> +            help("shutdown");
> +            exit(0);
> +        default:
> +            fprintf(stderr, "option `%c' not supported.\n", opt);
> +            break;
> +        }
> +    }
> +
> +    if (reboot && halt) {
> +        fprintf(stderr, "Reboot and Halt can not be specified together.\n\n");
> +        help("shutdown");
> +        exit(1);
> +    }
> +
> +    dom = argv[optind];
> +    if (!dom && all == 0) {
> +        fprintf(stderr, "You must specify -a or a domain id.\n\n");
> +        help("shutdown");
> +        exit(1);
> +    }
> +
> +    if (reboot)
> +        action = 1;
> +    else if (halt)
> +        action = 4;
> +
> +    if (all) {
> +        info = libxl_list_vm(&ctx, &nb_vm);
> +        for (i = 0; i < nb_vm; i++)
> +            libxl_domain_shutdown(&ctx, info[i].domid, action);
> +    } else {
> +        find_domain(dom);
> +        if (domid == 0) {
> +            fprintf(stderr, "Domain 0 cannot be shutdown.\n\n");
> +            exit(1);
> +        }
> +        libxl_domain_shutdown(&ctx, domid, action);
> +    }
> +
> +    exit(0);
> +}
> +
> diff -r baccadfd9418 tools/libxl/xl_cmdimpl.h
> --- a/tools/libxl/xl_cmdimpl.h	Fri May 14 08:05:05 2010 +0100
> +++ b/tools/libxl/xl_cmdimpl.h	Tue May 18 22:47:32 2010 +0800
> @@ -52,6 +52,7 @@
>  int main_blocklist(int argc, char **argv);
>  int main_blockdetach(int argc, char **argv);
>  int main_uptime(int argc, char **argv);
> +int main_shutdown(int argc, char **argv);
>  
>  void help(char *command);
>  
> diff -r baccadfd9418 tools/libxl/xl_cmdtable.c
> --- a/tools/libxl/xl_cmdtable.c	Fri May 14 08:05:05 2010 +0100
> +++ b/tools/libxl/xl_cmdtable.c	Tue May 18 22:47:32 2010 +0800
> @@ -224,6 +224,14 @@
>        "Print uptime for all/some domains",
>        "[-s] [Domain]",
>      },
> +    { "shutdown",
> +      &main_shutdown,
> +      "Shutdown a domain",
> +      "<Domain> [-aRH]",
> +      "-a  Shutdown all VMs.\n"
> +      "-R  Shutdown and reboot.\n"
> +      "-H  Shutdown without reboot(halt).\n"
> +    },
>  };
>  
>  int cmdtable_len = sizeof(cmd_table)/sizeof(struct cmd_spec);
> 


-- 
Regards
Yang Hongyang

      reply	other threads:[~2010-05-18  8:22 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2010-05-18  7:03 [PATCH]xl: Add "xl shutdown" command Yang Hongyang
2010-05-18  8:22 ` Yang Hongyang [this message]

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=4BF24E55.3070002@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.