Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 109348
b: refs/heads/master
c: 316d967
h: refs/heads/master
v: v3
  • Loading branch information
Andi Kleen authored and Linus Torvalds committed Aug 29, 2008
1 parent c5dc9f0 commit 9553b1f
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: b4609472116bb806a95e98d04767189406c74c70
refs/heads/master: 316d9679f33caf7e683471647d1472bfe133d858
4 changes: 4 additions & 0 deletions trunk/kernel/softlockup.c
Original file line number Diff line number Diff line change
Expand Up @@ -180,6 +180,10 @@ static void check_hung_task(struct task_struct *t, unsigned long now)
if (t->flags & PF_FROZEN)
return;

/* Don't check for tasks waiting on network file systems like NFS */
if (t->state & TASK_KILLABLE)
return;

if (switch_count != t->last_switch_count || !t->last_switch_timestamp) {
t->last_switch_count = switch_count;
t->last_switch_timestamp = now;
Expand Down

0 comments on commit 9553b1f

Please sign in to comment.