2 # SPDX-License-Identifier: GPL-2.0
4 # Generate C file mapping errno codes to errno names.
6 # Copyright IBM Corp. 2018
7 # Author(s): Hendrik Brueckner <brueckner@linux.vnet.ibm.com>
11 include_path
="-I$toolsdir/include/uapi"
15 echo "$1" |
sed -e 'y/- /__/' |
tr '[[:upper:]]' '[[:lower:]]'
23 header
="$toolsdir/arch/$arch/include/uapi/asm/errno.h"
24 if test -r "$header"; then
27 echo "$toolsdir/include/uapi/asm-generic/errno.h"
31 create_errno_lookup_func
()
33 local arch
=$
(arch_string
"$1")
37 static const char *errno_to_name__$arch(int err)
42 while read name nr
; do
43 printf '\tcase %d: return "%s";\n' $nr $name
58 local asm_errno
=$
(asm_errno_file
"$arch")
60 $gcc $CFLAGS $include_path -E -dM -x c
$asm_errno \
61 |
grep -hE '^#define[[:blank:]]+(E[^[:blank:]]+)[[:blank:]]+([[:digit:]]+).*' \
62 |
awk '{ print $2","$3; }' \
64 |IFS
=, create_errno_lookup_func
"$arch"
67 create_arch_errno_table_func
()
73 printf 'const char *arch_syscalls__strerrno(const char *arch, int err)\n'
75 for arch
in $archlist; do
76 printf '\tif (!strcmp(arch, "%s"))\n' $
(arch_string
"$arch")
77 printf '\t\treturn errno_to_name__%s(err);\n' $
(arch_string
"$arch")
79 printf '\treturn errno_to_name__%s(err);\n' $
(arch_string
"$default")
84 /* SPDX-License-Identifier: GPL-2.0 */
90 # Create list of architectures and ignore those that do not appear
93 for arch
in $
(find $toolsdir/arch
-maxdepth 1 -mindepth 1 -type d
-printf "%f\n" |
grep -v x86 |
sort); do
94 test -d $toolsdir/perf
/arch
/$arch && archlist
="$archlist $arch"
97 for arch
in x86
$archlist generic
; do
100 create_arch_errno_table_func
"x86 $archlist" "generic"