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] move XS_DEBUG code into a proper function

To: xen-changelog@xxxxxxxxxxxxxxxxxxx
Subject: [Xen-changelog] move XS_DEBUG code into a proper function
From: Xen patchbot -unstable <patchbot-unstable@xxxxxxxxxxxxxxxxxxx>
Date: Wed, 15 Mar 2006 18:50:11 +0000
Delivery-date: Wed, 15 Mar 2006 18:51:59 +0000
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/cgi-bin/mailman/listinfo/xen-changelog>, <mailto:xen-changelog-request@lists.xensource.com?subject=subscribe>
List-unsubscribe: <http://lists.xensource.com/cgi-bin/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 vhanquez@xxxxxxxxxxxxxxxxxxxxxxx
# Node ID 51b0d4c2d4d9e2a4ad02c0e3b32fb56f6a8b8126
# Parent  c097485037f7417b77db34da198b62a9c9481dc5
move XS_DEBUG code into a proper function

Signed-off-by: Vincent Hanquez <vincent@xxxxxxxxxxxxx>

diff -r c097485037f7 -r 51b0d4c2d4d9 tools/xenstore/xenstored_core.c
--- a/tools/xenstore/xenstored_core.c   Wed Mar 15 11:41:58 2006
+++ b/tools/xenstore/xenstored_core.c   Wed Mar 15 12:08:10 2006
@@ -1113,6 +1113,25 @@
        send_ack(conn, XS_SET_PERMS);
 }
 
+static void do_debug(struct connection *conn, struct buffered_data *in)
+{
+       if (streq(in->buffer, "print"))
+               xprintf("debug: %s", in->buffer + get_string(in, 0));
+       if (streq(in->buffer, "check"))
+               check_store();
+#ifdef TESTING
+       /* For testing, we allow them to set id. */
+       if (streq(in->buffer, "setid")) {
+               conn->id = atoi(in->buffer + get_string(in, 0));
+       } else if (streq(in->buffer, "failtest")) {
+               if (get_string(in, 0) < in->used)
+                       srandom(atoi(in->buffer + get_string(in, 0)));
+               failtest = true;
+       }
+#endif /* TESTING */
+       send_ack(conn, XS_DEBUG);
+}
+
 /* Process "in" for conn: "in" will vanish after this conversation, so
  * we can talloc off it for temporary variables.  May free "conn".
  */
@@ -1159,21 +1178,7 @@
                break;
 
        case XS_DEBUG:
-               if (streq(in->buffer, "print"))
-                       xprintf("debug: %s", in->buffer + get_string(in, 0));
-               if (streq(in->buffer, "check"))
-                       check_store();
-#ifdef TESTING
-               /* For testing, we allow them to set id. */
-               if (streq(in->buffer, "setid")) {
-                       conn->id = atoi(in->buffer + get_string(in, 0));
-               } else if (streq(in->buffer, "failtest")) {
-                       if (get_string(in, 0) < in->used)
-                               srandom(atoi(in->buffer + get_string(in, 0)));
-                       failtest = true;
-               }
-#endif /* TESTING */
-               send_ack(conn, XS_DEBUG);
+               do_debug(conn, in);
                break;
 
        case XS_WATCH:

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

<Prev in Thread] Current Thread [Next in Thread>
  • [Xen-changelog] move XS_DEBUG code into a proper function, Xen patchbot -unstable <=