[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] Re: [Xen-devel] [PATCH for-4.5 2/2] xl: print out partial configuration in long mode of list command
On Wed, 2014-11-12 at 17:04 +0000, Wei Liu wrote: > Unconditionally print out the partial configuration. > > Signed-off-by: Wei Liu <wei.liu2@xxxxxxxxxx> > Cc: Zhigang Wang <zhigang.x.wang@xxxxxxxxxx> > Cc: Ian Campbell <ian.campbell@xxxxxxxxxx> > Cc: Ian Jackson <ian.jackson@xxxxxxxxxxxxx> > --- > tools/libxl/xl_cmdimpl.c | 6 ++---- > 1 file changed, 2 insertions(+), 4 deletions(-) > > diff --git a/tools/libxl/xl_cmdimpl.c b/tools/libxl/xl_cmdimpl.c > index 3c9f146..396e06c 100644 > --- a/tools/libxl/xl_cmdimpl.c > +++ b/tools/libxl/xl_cmdimpl.c > @@ -3388,7 +3388,7 @@ static void list_domains_details(const libxl_dominfo > *info, int nb_domain) > { > libxl_domain_config d_config; > > - int i, rc; > + int i; > > yajl_gen hand = NULL; > yajl_gen_status s; > @@ -3410,9 +3410,7 @@ static void list_domains_details(const libxl_dominfo > *info, int nb_domain) > > for (i = 0; i < nb_domain; i++) { > libxl_domain_config_init(&d_config); > - rc = libxl_retrieve_domain_configuration(ctx, info[i].domid, > &d_config); > - if (rc) > - continue; > + libxl_retrieve_domain_configuration(ctx, info[i].domid, &d_config); Should't this continue to skip cases where rc is not in {0, ERROR_EMPTY_JSON}? Ian. _______________________________________________ Xen-devel mailing list Xen-devel@xxxxxxxxxxxxx http://lists.xen.org/xen-devel
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |