# HG changeset patch
# User vhanquez@xxxxxxxxxxxxxxxxxxxxxxx
# Node ID 7eaa8d1a4ea0c697ddcc7d7e07d206bac5a8306b
# Parent 7ef28da1d7770408462bad37c8714d2de35f58dd
use standard pr_debug macro for DPRINTK.
Signed-off-by: Vincent Hanquez <vincent@xxxxxxxxxxxxx>
diff -r 7ef28da1d777 -r 7eaa8d1a4ea0
linux-2.6-xen-sparse/drivers/xen/blkback/common.h
--- a/linux-2.6-xen-sparse/drivers/xen/blkback/common.h Mon Jan 16 21:29:10 2006
+++ b/linux-2.6-xen-sparse/drivers/xen/blkback/common.h Mon Jan 16 21:43:17 2006
@@ -19,12 +19,8 @@
#include <asm-xen/gnttab.h>
#include <asm-xen/driver_util.h>
-#if 0
-#define DPRINTK(_f, _a...) printk(KERN_ALERT "(file=%s, line=%d) " _f, \
- __FILE__ , __LINE__ , ## _a )
-#else
-#define DPRINTK(_f, _a...) ((void)0)
-#endif
+#define DPRINTK(_f, _a...) pr_debug("(file=%s, line=%d) " _f, \
+ __FILE__ , __LINE__ , ## _a )
struct vbd {
blkif_vdev_t handle; /* what the domain refers to this vbd as */
diff -r 7ef28da1d777 -r 7eaa8d1a4ea0
linux-2.6-xen-sparse/drivers/xen/blkback/xenbus.c
--- a/linux-2.6-xen-sparse/drivers/xen/blkback/xenbus.c Mon Jan 16 21:29:10 2006
+++ b/linux-2.6-xen-sparse/drivers/xen/blkback/xenbus.c Mon Jan 16 21:43:17 2006
@@ -24,12 +24,9 @@
#include <asm-xen/xenbus.h>
#include "common.h"
-
-#if 0
#undef DPRINTK
#define DPRINTK(fmt, args...) \
- printk("blkback/xenbus (%s:%d) " fmt ".\n", __FUNCTION__, __LINE__, ##args)
-#endif
+ pr_debug("blkback/xenbus (%s:%d) " fmt ".\n", __FUNCTION__, __LINE__,
##args)
struct backend_info
_______________________________________________
Xen-changelog mailing list
Xen-changelog@xxxxxxxxxxxxxxxxxxx
http://lists.xensource.com/xen-changelog
|