]> xenbits.xensource.com Git - people/dwmw2/xen.git/commitdiff
xenstore: remove not applicable control commands in stubdom
authorJuergen Gross <jgross@suse.com>
Wed, 12 Feb 2020 07:41:54 +0000 (08:41 +0100)
committerWei Liu <wl@xen.org>
Thu, 13 Feb 2020 12:59:43 +0000 (12:59 +0000)
When run in a stubdom environment Xenstore can't select a logfile or
emit memory statistics to a specific file.

So remove or modify those control commands accordingly.

Signed-off-by: Juergen Gross <jgross@suse.com>
Acked-by: Andrew Cooper <andrew.cooper3@citrix.com>
Acked-by: Wei Liu <wl@xen.org>
tools/xenstore/xenstored_control.c

index e4b8aa95abfd5be1d6eafc934a56f1515467b0b9..8d48ab48201bfad144bb5b50c5aac8a1ff487153 100644 (file)
@@ -61,6 +61,19 @@ static int do_control_log(void *ctx, struct connection *conn,
        return 0;
 }
 
+#ifdef __MINIOS__
+static int do_control_memreport(void *ctx, struct connection *conn,
+                               char **vec, int num)
+{
+       if (num)
+               return EINVAL;
+
+       talloc_report_full(NULL, stdout);
+
+       send_ack(conn, XS_CONTROL);
+       return 0;
+}
+#else
 static int do_control_logfile(void *ctx, struct connection *conn,
                              char **vec, int num)
 {
@@ -114,6 +127,7 @@ static int do_control_memreport(void *ctx, struct connection *conn,
        send_ack(conn, XS_CONTROL);
        return 0;
 }
+#endif
 
 static int do_control_print(void *ctx, struct connection *conn,
                            char **vec, int num)
@@ -132,8 +146,12 @@ static int do_control_help(void *, struct connection *, char **, int);
 static struct cmd_s cmds[] = {
        { "check", do_control_check, "" },
        { "log", do_control_log, "on|off" },
+#ifdef __MINIOS__
+       { "memreport", do_control_memreport, "" },
+#else
        { "logfile", do_control_logfile, "<file>" },
        { "memreport", do_control_memreport, "[<file>]" },
+#endif
        { "print", do_control_print, "<string>" },
        { "help", do_control_help, "" },
 };