diff --git a/xen/common/argo.c b/xen/common/argo.c index d69ad7c736cf..6f782f7e1f90 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 arg3,