Re: [Xen-devel] [PATCH v2 03/18] argo: define argo_dprintk for subsystem debugging

2018-12-20 Thread Jan Beulich
>>> On 20.12.18 at 07:39, wrote: > --- a/xen/common/argo.c > +++ b/xen/common/argo.c > @@ -19,6 +19,19 @@ > #include > #include > > +/* > + * Debug > + */ > + > +/* Set ARGO_DEBUG to 1 here to enable more debug messages */ > +#define ARGO_DEBUG 0 > + > +#ifdef ARGO_DEBUG Well, either the wa

[Xen-devel] [PATCH v2 03/18] argo: define argo_dprintk for subsystem debugging

2018-12-19 Thread Christopher Clark
A convenience for working on development of the argo subsystem: toggling a local #define variable turns on just the debug messages in this subsystem. Signed-off-by: Christopher Clark --- Changes since v1: v1 #04 feedback, Jan: remove do-while from definition fully parenthesize the macro