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@xxxxxxxxxxxxxx>
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
_______________________________________________
Xen-devel mailing list
Xen-devel@xxxxxxxxxxxxxxxxxxx
http://lists.xensource.com/xen-devel
|