From c452c85f6fe6ad09c0b46b77c45216863f12c5b4 Mon Sep 17 00:00:00 2001 From: Christopher Clark Date: Wed, 6 Feb 2019 09:55:00 +0100 Subject: [PATCH] argo: define argo_dprintk for subsystem debugging MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit A convenience for working on development of the argo subsystem: setting a #define variable enables additional debug messages. Signed-off-by: Christopher Clark Acked-by: Jan Beulich Reviewed-by: Roger Pau Monné --- xen/common/argo.c | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/xen/common/argo.c b/xen/common/argo.c index dd2390d3f3..ada1aaf937 100644 --- a/xen/common/argo.c +++ b/xen/common/argo.c @@ -19,6 +19,15 @@ #include #include +/* Change this to #define ARGO_DEBUG here to enable more debug messages */ +#undef ARGO_DEBUG + +#ifdef ARGO_DEBUG +#define argo_dprintk(format, args...) printk("argo: " format, ## args ) +#else +#define argo_dprintk(format, ... ) ((void)0) +#endif + long do_argo_op(unsigned int cmd, XEN_GUEST_HANDLE_PARAM(void) arg1, XEN_GUEST_HANDLE_PARAM(void) arg2, unsigned long raw_arg3, -- 2.39.5