lists.openwall.net   lists  /  announce  owl-users  owl-dev  john-users  john-dev  passwdqc-users  yescrypt  popa3d-users  /  oss-security  kernel-hardening  musl  sabotage  tlsify  passwords  /  crypt-dev  xvendor  /  Bugtraq  Full-Disclosure  linux-kernel  linux-netdev  linux-ext4  linux-hardening  linux-cve-announce  PHC 
Open Source and information security mailing list archives
 
Hash Suite: Windows password security audit tool. GUI, reports in PDF.
[<prev] [next>] [day] [month] [year] [list]
Date:	Mon, 05 Oct 2009 23:35:15 +0530
From:	Pete <greg.petr@...il.com>
To:	kernel-janitors@...r.kernel.org, trivial@...nel.org
Cc:	Matthew Wilcox <matthew@....cx>, Joe Perches <joe@...ches.com>,
	linux-kernel@...r.kernel.org
Subject: [PATCH 1/1, revised] fs: added KERN-DEBUG flag to dprintk macro

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

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@...r.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ