Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 323543
b: refs/heads/master
c: c8020a6
h: refs/heads/master
i:
  323541: 1e3a4a7
  323539: b1aebde
  323535: c6480f8
v: v3
  • Loading branch information
Paul E. McKenney committed Sep 23, 2012
1 parent 2ee1915 commit d2c331c
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 8 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 5fd4dc068c4ded1339180dbcd1a99e15b1c0a728
refs/heads/master: c8020a67e625c714c4dbedc8ae2944b461e204ec
15 changes: 8 additions & 7 deletions trunk/kernel/rcutree.c
Original file line number Diff line number Diff line change
Expand Up @@ -746,14 +746,15 @@ static void print_other_cpu_stall(struct rcu_state *rsp)
rcu_for_each_leaf_node(rsp, rnp) {
raw_spin_lock_irqsave(&rnp->lock, flags);
ndetected += rcu_print_task_stall(rnp);
if (rnp->qsmask != 0) {
for (cpu = 0; cpu <= rnp->grphi - rnp->grplo; cpu++)
if (rnp->qsmask & (1UL << cpu)) {
print_cpu_stall_info(rsp,
rnp->grplo + cpu);
ndetected++;
}
}
raw_spin_unlock_irqrestore(&rnp->lock, flags);
if (rnp->qsmask == 0)
continue;
for (cpu = 0; cpu <= rnp->grphi - rnp->grplo; cpu++)
if (rnp->qsmask & (1UL << cpu)) {
print_cpu_stall_info(rsp, rnp->grplo + cpu);
ndetected++;
}
}

/*
Expand Down

0 comments on commit d2c331c

Please sign in to comment.