Re: [Xen-devel] [PATCH v4 18/21] libxlu: rework internal representation of setting

2015-02-12 Thread Wei Liu
On Wed, Feb 11, 2015 at 04:12:24PM +, Ian Jackson wrote: > Wei Liu writes ("[PATCH v4 18/21] libxlu: rework internal representation of > setting"): > > This patches does following things: > ... > > +void xlu__cfg_list_append(CfgParseContext *ctx, > > + XLU_ConfigValue

Re: [Xen-devel] [PATCH v4 18/21] libxlu: rework internal representation of setting

2015-02-11 Thread Ian Jackson
Wei Liu writes ("[PATCH v4 18/21] libxlu: rework internal representation of setting"): > This patches does following things: ... > +void xlu__cfg_list_append(CfgParseContext *ctx, > + XLU_ConfigValue *list, > + char *atom) > +{ > +XLU_ConfigVal

Re: [Xen-devel] [PATCH v4 18/21] libxlu: rework internal representation of setting

2015-01-28 Thread Ian Campbell
On Fri, 2015-01-23 at 11:13 +, Wei Liu wrote: > This patches does following things: I'm leaving this one to Ian J. ___ Xen-devel mailing list Xen-devel@lists.xen.org http://lists.xen.org/xen-devel

[Xen-devel] [PATCH v4 18/21] libxlu: rework internal representation of setting

2015-01-23 Thread Wei Liu
This patches does following things: 1. Properly define a XLU_ConfigList type. Originally it was defined to be XLU_ConfigSetting. 2. Define XLU_ConfigValue type, which can be either a string or a list of XLU_ConfigValue. 3. ConfigSetting now references XLU_ConfigValue. Originally it only w