[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] Re: [Xen-devel] [PATCH] libxl: fix xcflags assignment in libxl__domain_suspend
On Thu, 2013-01-31 at 15:11 +0000, Olaf Hering wrote: > # HG changeset patch > # User Olaf Hering <olaf@xxxxxxxxx> > # Date 1359645080 -3600 > # Node ID 91fe6b42c7d4010ada78617d18133137d7194d9b > # Parent 6727070b4129cf852199b66b6a81042ee6966a98 > libxl: fix xcflags assignment in libxl__domain_suspend > > Currently ->xcflags remains 1 because the braces are placed incorrectly. > Put each logical unit into its own braces to fix assigment to xcflags. > > Signed-off-by: Olaf Hering <olaf@xxxxxxxxx> Acked + applied , thanks. > > diff -r 6727070b4129 -r 91fe6b42c7d4 tools/libxl/libxl_dom.c > --- a/tools/libxl/libxl_dom.c > +++ b/tools/libxl/libxl_dom.c > @@ -1238,9 +1238,9 @@ void libxl__domain_suspend(libxl__egc *e > abort(); > } > > - dss->xcflags = (live) ? XCFLAGS_LIVE : 0 > - | (debug) ? XCFLAGS_DEBUG : 0 > - | (dss->hvm) ? XCFLAGS_HVM : 0; > + dss->xcflags = (live ? XCFLAGS_LIVE : 0) > + | (debug ? XCFLAGS_DEBUG : 0) > + | (dss->hvm ? XCFLAGS_HVM : 0); > > dss->suspend_eventchn = -1; > dss->guest_responded = 0; > > _______________________________________________ > Xen-devel mailing list > Xen-devel@xxxxxxxxxxxxx > http://lists.xen.org/xen-devel _______________________________________________ Xen-devel mailing list Xen-devel@xxxxxxxxxxxxx http://lists.xen.org/xen-devel
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |