Merge tag 'ntb-5.11' of git://github.com/jonmason/ntb
[linux/fpc-iii.git] / tools / perf / trace / beauty / fspick.sh
blobb220e07ef452cabf77dc91760ec5eae62da9bd79
1 #!/bin/sh
2 # SPDX-License-Identifier: LGPL-2.1
4 if [ $# -ne 1 ] ; then
5 linux_header_dir=tools/include/uapi/linux
6 else
7 linux_header_dir=$1
8 fi
10 linux_mount=${linux_header_dir}/mount.h
12 printf "static const char *fspick_flags[] = {\n"
13 regex='^[[:space:]]*#[[:space:]]*define[[:space:]]+FSPICK_([[:alnum:]_]+)[[:space:]]+(0x[[:xdigit:]]+)[[:space:]]*.*'
14 egrep $regex ${linux_mount} | \
15 sed -r "s/$regex/\2 \1/g" | \
16 xargs printf "\t[ilog2(%s) + 1] = \"%s\",\n"
17 printf "};\n"