You'd need to determine whether the CPU is busy or idle when this is
happening.
If it's busy, profile the kernel:
- boot with "profile=1" on the kernel command line
-
readprofile -r
<do something>
readprofile -v -m /boot/System.map | sort -n +2 | tail -40
It it's not busy, then:
while true
do
ps axl | grep ' D '
sleep 1
done &
<do something>
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/