All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH]xl: Remove transaction handle in "xl rename"
@ 2010-05-10  8:07 Yang Hongyang
  0 siblings, 0 replies; only message in thread
From: Yang Hongyang @ 2010-05-10  8:07 UTC (permalink / raw)
  To: xen-devel@lists.xensource.com

Remove transaction handle in "xl rename"
Thanks Stefano to point out that transaction handle in libxl clients
is not needed.

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

diff -r bbf009817ffb tools/libxl/xl_cmdimpl.c
--- a/tools/libxl/xl_cmdimpl.c	Fri May 07 19:22:28 2010 +0100
+++ b/tools/libxl/xl_cmdimpl.c	Tue May 11 00:03:52 2010 +0800
@@ -3072,7 +3072,6 @@
     int opt;
     char *dom;
     char *new_name;
-    xs_transaction_t t;
 
     while ((opt = getopt(argc, argv, "h")) != -1) {
         switch (opt) {
@@ -3095,16 +3094,10 @@
     find_domain(dom);
     new_name = argv[optind];
 
-retry_transaction:
-    t = xs_transaction_start(ctx.xsh);
-    if (libxl_domain_rename(&ctx, domid, common_domname, new_name, t)) {
+    if (libxl_domain_rename(&ctx, domid, common_domname, new_name, 0)) {
         fprintf(stderr, "Can't rename domain '%s'.\n", dom);
         exit(1);
     }
 
-    if (!xs_transaction_end(ctx.xsh, t, 0))
-        if (errno == EAGAIN)
-            goto retry_transaction;
-
     exit(0);
 }

-- 
Regards
Yang Hongyang

^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2010-05-10  8:07 UTC | newest]

Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-05-10  8:07 [PATCH]xl: Remove transaction handle in "xl rename" Yang Hongyang

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.