Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 280380
b: refs/heads/master
c: 37ad8ac
h: refs/heads/master
v: v3
  • Loading branch information
Tejun Heo committed Nov 21, 2011
1 parent ba692ce commit c3df1a5
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 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: 5ece3eae4cdb968c269e0bc7e2c0e2b223552025
refs/heads/master: 37ad8aca94a1da2112a7c56151390914e80d1113
7 changes: 4 additions & 3 deletions trunk/kernel/freezer.c
Original file line number Diff line number Diff line change
Expand Up @@ -93,9 +93,10 @@ static void fake_signal_wake_up(struct task_struct *p)
{
unsigned long flags;

spin_lock_irqsave(&p->sighand->siglock, flags);
signal_wake_up(p, 0);
spin_unlock_irqrestore(&p->sighand->siglock, flags);
if (lock_task_sighand(p, &flags)) {
signal_wake_up(p, 0);
unlock_task_sighand(p, &flags);
}
}

/**
Expand Down

0 comments on commit c3df1a5

Please sign in to comment.