[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [Xen-changelog] [xen-unstable] libxl: bugfix: create_domain() return to caller if !daemonize
# HG changeset patch # User Shriram Rajagopalan <rshriram@xxxxxxxxx> # Date 1328810784 0 # Node ID af96b99b607da7d2923cf522acf149f41d8b230c # Parent f24828bc8e251304201d18c62482c8da3760a8fd libxl: bugfix: create_domain() return to caller if !daemonize Currently the create_domain function does not honor the daemonize flag properly. It exits irrespective of the value of the flag. This patch fixes the issue. Signed-off-by: Shriram Rajagopalan <rshriram@xxxxxxxxx> Acked-by: Ian Campbell <ian.campbell@xxxxxxxxxx> Committed-by: Ian Jackson <ian.jackson@xxxxxxxxxxxxx> --- diff -r f24828bc8e25 -r af96b99b607d tools/libxl/xl_cmdimpl.c --- a/tools/libxl/xl_cmdimpl.c Thu Feb 09 18:03:07 2012 +0000 +++ b/tools/libxl/xl_cmdimpl.c Thu Feb 09 18:06:24 2012 +0000 @@ -1852,7 +1852,7 @@ * If we have daemonized then do not return to the caller -- this has * already happened in the parent. */ - if ( !need_daemon ) + if ( daemonize && !need_daemon ) exit(ret); return ret; _______________________________________________ Xen-changelog mailing list Xen-changelog@xxxxxxxxxxxxxxxxxxx http://lists.xensource.com/xen-changelog
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |