[PATCH 1/1, revised] fs: added KERN-DEBUG flag to dprintk macro

From: Pete
Date: Mon Oct 05 2009 - 14:08:53 EST


Signed-off-by: Greg Petr <greg.petr@xxxxxxxxx>

Hi,

The following is a trivial patch which adds KERN_DEBUG flag to the
dprintk macro. Made this a more generalized version.


--- linux-2.6/fs/aio.c 2009-10-05 14:46:11.000000000 +0530
+++ linux-2.6.test/fs/aio.c 2009-10-05 23:30:26.000000000 +0530
@@ -37,7 +37,7 @@
#include <asm/uaccess.h>

#if DEBUG > 1
-#define dprintk printk
+#define dprintk(x...) printk(KERN_DEBUG x)
#else
#define dprintk(x...) do { ; } while (0)
#endif
@@ -530,7 +530,7 @@ static void aio_fput_routine(struct work
*/
static int __aio_put_req(struct kioctx *ctx, struct kiocb *req)
{
- dprintk(KERN_DEBUG "aio_put(%p): f_count=%ld\n",
+ dprintk("aio_put(%p): f_count=%ld\n",
req, atomic_long_read(&req->ki_filp->f_count));

assert_spin_locked(&ctx->ctx_lock);


--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/