mirror_ubuntu-kernels/arch/x86/entry/syscalls
Brian Gerst a845a6cf1d x86/entry/32: Clean up syscall_32.tbl
After removal of the __ia32_ prefix, remove compat entries that are now
identical to the native entry.

Converted with this script and fixing up whitespace:

while read nr abi name entry compat; do
    if [ "${nr:0:1}" = "#" ]; then
        echo $nr $abi $name $entry $compat
        continue
    fi
    if [ "$entry" = "$compat" ]; then
        compat=""
    fi
    echo "$nr	$abi	$name		$entry		$compat"
done

Signed-off-by: Brian Gerst <brgerst@gmail.com>
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Link: https://lkml.kernel.org/r/20200313195144.164260-14-brgerst@gmail.com
2020-03-21 16:03:23 +01:00
..
Makefile Merge branch 'x86/build' into x86/asm, to fix up conflicts 2017-11-07 10:54:30 +01:00
syscall_32.tbl x86/entry/32: Clean up syscall_32.tbl 2020-03-21 16:03:23 +01:00
syscall_64.tbl x86/entry: Remove ABI prefixes from functions in syscall tables 2020-03-21 16:03:23 +01:00
syscallhdr.sh x86/entry: Move max syscall number calculation to syscallhdr.sh 2020-03-21 16:03:21 +01:00
syscalltbl.sh x86/entry: Remove ABI prefixes from functions in syscall tables 2020-03-21 16:03:23 +01:00