Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 289279
b: refs/heads/master
c: d3a532a
h: refs/heads/master
i:
  289277: be31b83
  289275: a384d87
  289271: d95af0b
  289263: 1f4c0da
  289247: 89f3676
  289215: 82849b4
  289151: 4b7db50
  289023: 4a6edb2
  288767: 8bd0fe7
v: v3
  • Loading branch information
Anton Vorontsov authored and Greg Kroah-Hartman committed Feb 9, 2012
1 parent 9efd5d9 commit b741f5f
Show file tree
Hide file tree
Showing 2 changed files with 7 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: e502babe0a85226f2417b60a8710cf8192879180
refs/heads/master: d3a532a9c617106a0169232d40164ee35d0440b5
9 changes: 6 additions & 3 deletions trunk/drivers/tty/sysrq.c
Original file line number Diff line number Diff line change
Expand Up @@ -324,9 +324,12 @@ static void send_sig_all(int sig)

read_lock(&tasklist_lock);
for_each_process(p) {
if (p->mm && !is_global_init(p))
/* Not swapper, init nor kernel thread */
force_sig(sig, p);
if (p->flags & PF_KTHREAD)
continue;
if (is_global_init(p))
continue;

force_sig(sig, p);
}
read_unlock(&tasklist_lock);
}
Expand Down

0 comments on commit b741f5f

Please sign in to comment.