[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-Id: <1347017491-11354-1-git-send-email-heiko.carstens@de.ibm.com>
Date: Fri, 7 Sep 2012 13:31:30 +0200
From: Heiko Carstens <heiko.carstens@...ibm.com>
To: Andrew Morton <akpm@...ux-foundation.org>
Cc: linux-kernel@...r.kernel.org,
Heiko Carstens <heiko.carstens@...ibm.com>,
Michal Marek <mmarek@...e.cz>,
"H. Peter Anvin" <hpa@...ux.intel.com>
Subject: [PATCH 1/2] checksyscalls: fix "here document" handling
"echo" doesn't read from stdin, therefore the checksyscalls script didn't warn
about not implemented system calls anymore since 29dc54c6 "checksyscalls: Use
arch/x86/syscalls/syscall_32.tbl as source".
Use "cat" instead of "echo" which handles this correctly.
Cc: Michal Marek <mmarek@...e.cz>
Cc: H. Peter Anvin <hpa@...ux.intel.com>
Signed-off-by: Heiko Carstens <heiko.carstens@...ibm.com>
---
scripts/checksyscalls.sh | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/scripts/checksyscalls.sh b/scripts/checksyscalls.sh
index d24810f..fd8fa9a 100755
--- a/scripts/checksyscalls.sh
+++ b/scripts/checksyscalls.sh
@@ -200,7 +200,7 @@ EOF
syscall_list() {
grep '^[0-9]' "$1" | sort -n | (
while read nr abi name entry ; do
- echo <<EOF
+ cat <<EOF
#if !defined(__NR_${name}) && !defined(__IGNORE_${name})
#warning syscall ${name} not implemented
#endif
--
1.7.10.4
--
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