Merge branch 'work.quota-compat' of git://git.kernel.org/pub/scm/linux/kernel/git...
[linux-2.6-microblaze.git] / tools / objtool / sync-check.sh
1 #!/bin/sh
2 # SPDX-License-Identifier: GPL-2.0
3
4 FILES='
5 arch/x86/include/asm/inat_types.h
6 arch/x86/include/asm/orc_types.h
7 arch/x86/include/asm/emulate_prefix.h
8 arch/x86/lib/x86-opcode-map.txt
9 arch/x86/tools/gen-insn-attr-x86.awk
10 include/linux/static_call_types.h
11 '
12
13 check_2 () {
14   file1=$1
15   file2=$2
16
17   shift
18   shift
19
20   cmd="diff $* $file1 $file2 > /dev/null"
21
22   test -f $file2 && {
23     eval $cmd || {
24       echo "Warning: Kernel ABI header at '$file1' differs from latest version at '$file2'" >&2
25       echo diff -u $file1 $file2
26     }
27   }
28 }
29
30 check () {
31   file=$1
32
33   shift
34
35   check_2 tools/$file $file $*
36 }
37
38 if [ ! -d ../../kernel ] || [ ! -d ../../tools ] || [ ! -d ../objtool ]; then
39         exit 0
40 fi
41
42 cd ../..
43
44 for i in $FILES; do
45   check $i
46 done
47
48 check arch/x86/include/asm/inat.h     '-I "^#include [\"<]\(asm/\)*inat_types.h[\">]"'
49 check arch/x86/include/asm/insn.h     '-I "^#include [\"<]\(asm/\)*inat.h[\">]"'
50 check arch/x86/lib/inat.c             '-I "^#include [\"<]\(../include/\)*asm/insn.h[\">]"'
51 check arch/x86/lib/insn.c             '-I "^#include [\"<]\(../include/\)*asm/in\(at\|sn\).h[\">]" -I "^#include [\"<]\(../include/\)*asm/emulate_prefix.h[\">]"'