The patch titled headers_check: improve #include regexp has been added to the -mm tree. Its filename is headers_check-improve-include-regexp.patch See http://www.zip.com.au/~akpm/linux/patches/stuff/added-to-mm.txt to find out what to do about this ------------------------------------------------------ Subject: headers_check: improve #include regexp From: Alexey Dobriyan <adobriyan@xxxxxxxxx> Instead of headers_check-fix-include-regexp.patch ----------------------------------------------------- The following combinations of pp-tokens are used #include #include # include so, script'd better check for all of them. Signed-off-by: Alexey Dobriyan <adobriyan@xxxxxxxxx> Cc: David Woodhouse <dwmw2@xxxxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxx> --- scripts/hdrcheck.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff -puN scripts/hdrcheck.sh~headers_check-improve-include-regexp scripts/hdrcheck.sh --- a/scripts/hdrcheck.sh~headers_check-improve-include-regexp +++ a/scripts/hdrcheck.sh @@ -1,6 +1,6 @@ #!/bin/sh -for FILE in `grep '^#include <' $2 | cut -f2 -d\< | cut -f1 -d\> | egrep ^linux\|^asm` ; do +for FILE in `grep '^[ \t]*#[ \t]*include[ \t]*<' $2 | cut -f2 -d\< | cut -f1 -d\> | egrep ^linux\|^asm` ; do if [ ! -r $1/$FILE ]; then echo $2 requires $FILE, which does not exist exit 1 _ Patches currently in -mm which might be from adobriyan@xxxxxxxxx are include-linux-netfilter_bridgeh-header-cleanup.patch megaraid-fix-warnings-when-config_proc_fs=n.patch git-xfs.patch headers_check-improve-include-regexp.patch headers_check-clarify-error-message.patch headers_check-fix-include-regexp.patch task_struct-ifdef-missedem-v-ipc.patch task_struct-ifdef-btrace_seq.patch documentation-ioctl-messtxt-start-tree-wide-ioctl-registry.patch ioctl-messtxt-xfs-typos.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