drm/nouveau: consume the return of large GSP message
[drm/drm-misc.git] / tools / perf / trace / beauty / clone.sh
blob18b6c0d75693721d3c50b3aebfce5655536336b5
1 #!/bin/sh
2 # SPDX-License-Identifier: LGPL-2.1
4 if [ $# -ne 1 ] ; then
5 beauty_uapi_linux_dir=tools/perf/trace/beauty/include/uapi/linux/
6 else
7 beauty_uapi_linux_dir=$1
8 fi
10 linux_sched=${beauty_uapi_linux_dir}/sched.h
12 printf "static const char *clone_flags[] = {\n"
13 regex='^[[:space:]]*#[[:space:]]*define[[:space:]]+CLONE_([^_]+[[:alnum:]_]+)[[:space:]]+(0x[[:xdigit:]]+)[[:space:]]*.*'
14 grep -E $regex ${linux_sched} | \
15 sed -r "s/$regex/\2 \1/g" | \
16 xargs printf "\t[ilog2(%s) + 1] = \"%s\",\n"
17 printf "};\n"