The patch titled aio: don't confuse DEBUG define location has been removed from the -mm tree. Its filename was aio-dont-confuse-debug-define-location.patch This patch was dropped because of fs/aio.c:38:5: warning: "DEBUG" is not defined ------------------------------------------------------ Subject: aio: don't confuse DEBUG define location From: Randy Dunlap <randy.dunlap@xxxxxxxxxx> 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@xxxxxxxxxx> Signed-off-by: Zach Brown <zach.brown@xxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- fs/aio.c | 3 +-- 1 files changed, 1 insertion(+), 2 deletions(-) diff -puN fs/aio.c~aio-dont-confuse-debug-define-location fs/aio.c --- a/fs/aio.c~aio-dont-confuse-debug-define-location +++ a/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> _ Patches currently in -mm which might be from randy.dunlap@xxxxxxxxxx are git-alsa.patch fix-auditscc-kernel-doc.patch git-kbuild.patch menuconfig-distinguish-between-selected-by-another-options-and-comments.patch git-mtd.patch git-net.patch git-nfsd.patch git-scsi-misc.patch git-unionfs.patch git-watchdog.patch git-ipwireless_cs.patch kgdb-fix-help-text.patch kgdb-fix-docbook-and-kernel-doc-typos.patch security-convert-lsm-into-a-static-interface-fix-2-fix.patch docs-ramdisk-initrd-initramfs-corrections.patch send-quota-messages-via-netlink-fix.patch send-quota-messages-via-netlink-fix-fix.patch maintainers-linux-omap-list-is-subscribers-only.patch make-the-pr_-family-of-macros-in-kernelh-complete.patch doc-about-email-clients-for-linux-patches.patch aio-dont-confuse-debug-define-location.patch kernel-doc-fix-doc-blocks-and-html.patch express-relocatability-of-kernel-on-x86_64-in.patch profile-likely-unlikely-macros.patch - To unsubscribe from this list: send the line "unsubscribe mm-commits" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html