Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 143496
b: refs/heads/master
c: 79d381c
h: refs/heads/master
v: v3
  • Loading branch information
H Hartley Sweeten authored and Ingo Molnar committed Apr 16, 2009
1 parent b11a9f9 commit c6a4f9a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 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: ef631b0ca01655d24e9ca7e199262c4a46416a26
refs/heads/master: 79d381c9f2354b594dcab9b04dfcc0debf7294fe
4 changes: 2 additions & 2 deletions trunk/kernel/softirq.c
Original file line number Diff line number Diff line change
Expand Up @@ -472,9 +472,9 @@ void tasklet_kill(struct tasklet_struct *t)
printk("Attempt to kill tasklet from interrupt\n");

while (test_and_set_bit(TASKLET_STATE_SCHED, &t->state)) {
do
do {
yield();
while (test_bit(TASKLET_STATE_SCHED, &t->state));
} while (test_bit(TASKLET_STATE_SCHED, &t->state));
}
tasklet_unlock_wait(t);
clear_bit(TASKLET_STATE_SCHED, &t->state);
Expand Down

0 comments on commit c6a4f9a

Please sign in to comment.