#! /bin/awk
# kmalloc threshold is 20K. If this is more then we will output details.
BEGIN {rows=""; KMALLOCTHRESHOLD = 20000}
{ 
	kmalloccount = $(NF-2);
	if ( kmalloccount >= KMALLOCTHRESHOLD ) {
		row = row" " $1;
	}
}
END {print row }
