commit | 99bf254f8f6ac77222e98c95535ad38512ee9e34 | [log] [tgz] |
---|---|---|
author | Patrick Daly <pdaly@codeaurora.org> | Tue Apr 07 15:12:07 2015 -0700 |
committer | Paul E. McKenney <paulmck@linux.vnet.ibm.com> | Mon Apr 13 05:48:23 2015 -0700 |
tree | b9eb082311d09a9b3f69d2d4cd58d289ac8d0626 | |
parent | 6fdfdcd6270b8c1490238f741dc69ae5c6bb3e32 [diff] |
rcu: Fix missing task information during rcu-preempt stall The first item list_for_each_entry_continue(alist) iterates over is alist->next, rather than alist itself. Consequently, rcu_print_detail_task_stall_rnp() skips the task referenced by gp_tasks. Use gp_tasks->prev as the argument to list_for_each_entry_continue() instead. Signed-off-by: Patrick Daly <pdaly@codeaurora.org> Signed-off-by: Paul E. McKenney <paulmck@linux.vnet.ibm.com>