4 project
=$
(echo "$2" | cut
-d = -f 2)
6 if [[ "$file" = "" ]] ; then
7 echo "Usage: $0 <file with smatch messages> -p=<project>"
11 if [[ "$project" != "kernel" ]] ; then
16 remove
=$
(echo ${bin_dir}/..
/smatch_data
/kernel.allocation_funcs.remove
)
17 tmp
=$
(mktemp
/tmp
/smatch.XXXX
)
19 echo "// list of functions that return a new allocation." \
20 > kernel.allocation_funcs
21 echo '// generated by `gen_allocation_list.sh`' >> kernel.allocation_funcs
22 grep "allocation func$" $file | cut
-s -d ' ' -f 2 | cut
-d '(' -f 1 | \
24 echo "kmalloc" >> $tmp
25 echo "kzalloc" >> $tmp
26 echo "kcalloc" >> $tmp
27 cat $tmp $remove $remove 2> /dev
/null |
sort |
uniq -u \
28 >> kernel.allocation_funcs
30 echo "Done. List saved as 'kernel.allocation_funcs'"