Commit fba32474 authored by Andy Lutomirski's avatar Andy Lutomirski Committed by Ingo Molnar

x86/syscalls: Refactor syscalltbl.sh

This splits out the code to emit a syscall line.
Signed-off-by: default avatarAndy Lutomirski <luto@kernel.org>
Cc: Andy Lutomirski <luto@amacapital.net>
Cc: Borislav Petkov <bp@alien8.de>
Cc: Brian Gerst <brgerst@gmail.com>
Cc: Denys Vlasenko <dvlasenk@redhat.com>
Cc: Frederic Weisbecker <fweisbec@gmail.com>
Cc: H. Peter Anvin <hpa@zytor.com>
Cc: Linus Torvalds <torvalds@linux-foundation.org>
Cc: Peter Zijlstra <peterz@infradead.org>
Cc: Thomas Gleixner <tglx@linutronix.de>
Link: http://lkml.kernel.org/r/1bfcbba991f5cfaa9291ff950a593daa972a205f.1454022279.git.luto@kernel.orgSigned-off-by: default avatarIngo Molnar <mingo@kernel.org>
parent e21d50f3
...@@ -3,13 +3,21 @@ ...@@ -3,13 +3,21 @@
in="$1" in="$1"
out="$2" out="$2"
grep '^[0-9]' "$in" | sort -n | ( emit() {
while read nr abi name entry compat; do abi="$1"
abi=`echo "$abi" | tr '[a-z]' '[A-Z]'` nr="$2"
entry="$3"
compat="$4"
if [ -n "$compat" ]; then if [ -n "$compat" ]; then
echo "__SYSCALL_${abi}($nr, $entry, $compat)" echo "__SYSCALL_${abi}($nr, $entry, $compat)"
elif [ -n "$entry" ]; then elif [ -n "$entry" ]; then
echo "__SYSCALL_${abi}($nr, $entry, $entry)" echo "__SYSCALL_${abi}($nr, $entry, $entry)"
fi fi
}
grep '^[0-9]' "$in" | sort -n | (
while read nr abi name entry compat; do
abi=`echo "$abi" | tr '[a-z]' '[A-Z]'`
emit "$abi" "$nr" "$entry" "$compat"
done done
) > "$out" ) > "$out"
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment