torture: Add starvation events to error summary
authorPaul E. McKenney <paulmck@linux.vnet.ibm.com>
Thu, 21 Apr 2016 19:03:06 +0000 (12:03 -0700)
committerPaul E. McKenney <paulmck@linux.vnet.ibm.com>
Tue, 14 Jun 2016 23:02:17 +0000 (16:02 -0700)
This commit adds a string of the form "Starves: 10" to the summary
line for error conditions found in the console output.

Signed-off-by: Paul E. McKenney <paulmck@linux.vnet.ibm.com>
tools/testing/selftests/rcutorture/bin/parse-console.sh

index 5eb49b7..08aa7d5 100755 (executable)
@@ -33,7 +33,7 @@ if grep -Pq '\x00' < $file
 then
        print_warning Console output contains nul bytes, old qemu still running?
 fi
-egrep 'Badness|WARNING:|Warn|BUG|===========|Call Trace:|Oops:|detected stalls on CPUs/tasks:|self-detected stall on CPU|Stall ended before state dump start|\?\?\? Writer stall state' < $file | grep -v 'ODEBUG: ' | grep -v 'Warning: unable to open an initial console' > $1.diags
+egrep 'Badness|WARNING:|Warn|BUG|===========|Call Trace:|Oops:|detected stalls on CPUs/tasks:|self-detected stall on CPU|Stall ended before state dump start|\?\?\? Writer stall state|rcu_.*kthread starved for' < $file | grep -v 'ODEBUG: ' | grep -v 'Warning: unable to open an initial console' > $1.diags
 if test -s $1.diags
 then
        print_warning Assertion failure in $file $title
@@ -69,6 +69,11 @@ then
        then
                summary="$summary  Stalls: $n_stalls"
        fi
+       n_starves=`grep -c 'rcu_.*kthread starved for' $1`
+       if test "$n_starves" -ne 0
+       then
+               summary="$summary  Starves: $n_starves"
+       fi
        print_warning Summary: $summary
 else
        rm $1.diags