5 if [[ "$file" = "" ]] ; then
6 echo "Usage: $0 <file with smatch messages>"
10 outfile
="kernel.unwind_functions"
12 remove
=$
(echo ${bin_dir}/..
/smatch_data
/${outfile}.remove
)
13 tmp
=$
(mktemp
/tmp
/smatch.XXXX
)
14 tmp2
=$
(mktemp
/tmp
/smatch.XXXX
)
16 echo "// list of unwind functions." > $outfile
17 echo '// generated by `gen_unwind_functions.sh`' >> $outfile
18 grep "is unwind function" $file | cut
-d ' ' -f 2 | cut
-d '(' -f 1 >> $tmp
19 cat $tmp |
sort -u > $tmp2
21 cat $tmp $remove $remove 2> /dev
/null |
sort |
uniq -u >> $outfile
23 echo "Done. List saved as '$outfile'"