[<prev] [next>] [day] [month] [year] [list]
Message-Id: <20070921115525.84b0387c.randy.dunlap@oracle.com>
Date: Fri, 21 Sep 2007 11:55:25 -0700
From: Randy Dunlap <randy.dunlap@...cle.com>
To: lkml <linux-kernel@...r.kernel.org>
Cc: akpm <akpm@...ux-foundation.org>, zach.brown@...cle.com
Subject: [PATCH] aio: don't confuse DEBUG define location
From: Randy Dunlap <randy.dunlap@...cle.com>
I was debugging (via pr_debug()) why one test app was getting EINVAL
returns from aio. However, using DEBUG to enable pr_debug() needs to
be done before #include linux/kernel.h, so remove it from below there
so that someone doesn't have to debug pr_debug().
Signed-off-by: Randy Dunlap <randy.dunlap@...cle.com>
Signed-off-by: Zach Brown <zach.brown@...cle.com>
---
fs/aio.c | 3 +--
1 file changed, 1 insertion(+), 2 deletions(-)
--- linux-2.6.23-rc7.orig/fs/aio.c
+++ linux-2.6.23-rc7/fs/aio.c
@@ -8,6 +8,7 @@
*
* See ../COPYING for licensing terms.
*/
+
#include <linux/kernel.h>
#include <linux/init.h>
#include <linux/errno.h>
@@ -17,8 +18,6 @@
#include <linux/syscalls.h>
#include <linux/uio.h>
-#define DEBUG 0
-
#include <linux/sched.h>
#include <linux/fs.h>
#include <linux/file.h>
-
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