drm/nouveau: consume the return of large GSP message
[drm/drm-misc.git] / tools / perf / trace / beauty / prctl_option.sh
blobe049f5e9c01116fbb0b51281403819494d93c1e9
1 #!/bin/sh
2 # SPDX-License-Identifier: LGPL-2.1
4 [ $# -eq 1 ] && beauty_uapi_linux_dir=$1 || beauty_uapi_linux_dir=tools/perf/trace/beauty/include/uapi/linux/
6 printf "static const char *prctl_options[] = {\n"
7 regex='^#define[[:space:]]{1}PR_(\w+)[[:space:]]*([[:xdigit:]]+)([[:space:]]*/.*)?$'
8 grep -E $regex ${beauty_uapi_linux_dir}/prctl.h | grep -v PR_SET_PTRACER | \
9 sed -E "s%$regex%\2 \1%g" | \
10 sort -n | xargs printf "\t[%s] = \"%s\",\n"
11 printf "};\n"
13 printf "static const char *prctl_set_mm_options[] = {\n"
14 regex='^#[[:space:]]+define[[:space:]]+PR_SET_MM_(\w+)[[:space:]]*([[:digit:]]+).*'
15 grep -E $regex ${beauty_uapi_linux_dir}/prctl.h | \
16 sed -r "s/$regex/\2 \1/g" | \
17 sort -n | xargs printf "\t[%s] = \"%s\",\n"
18 printf "};\n"