diff options
Diffstat (limited to 'drivers/char')
-rw-r--r-- | drivers/char/n_tty.c | 2 | ||||
-rw-r--r-- | drivers/char/tty_io.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/drivers/char/n_tty.c b/drivers/char/n_tty.c index 2bdb0144a22e..c035c2f1f462 100644 --- a/drivers/char/n_tty.c +++ b/drivers/char/n_tty.c | |||
@@ -1188,7 +1188,7 @@ static int job_control(struct tty_struct *tty, struct file *file) | |||
1188 | printk("read_chan: tty->pgrp <= 0!\n"); | 1188 | printk("read_chan: tty->pgrp <= 0!\n"); |
1189 | else if (process_group(current) != tty->pgrp) { | 1189 | else if (process_group(current) != tty->pgrp) { |
1190 | if (is_ignored(SIGTTIN) || | 1190 | if (is_ignored(SIGTTIN) || |
1191 | is_orphaned_pgrp(process_group(current))) | 1191 | is_current_pgrp_orphaned()) |
1192 | return -EIO; | 1192 | return -EIO; |
1193 | kill_pg(process_group(current), SIGTTIN, 1); | 1193 | kill_pg(process_group(current), SIGTTIN, 1); |
1194 | return -ERESTARTSYS; | 1194 | return -ERESTARTSYS; |
diff --git a/drivers/char/tty_io.c b/drivers/char/tty_io.c index 95f3596189cf..94070f7bf389 100644 --- a/drivers/char/tty_io.c +++ b/drivers/char/tty_io.c | |||
@@ -1118,7 +1118,7 @@ int tty_check_change(struct tty_struct * tty) | |||
1118 | return 0; | 1118 | return 0; |
1119 | if (is_ignored(SIGTTOU)) | 1119 | if (is_ignored(SIGTTOU)) |
1120 | return 0; | 1120 | return 0; |
1121 | if (is_orphaned_pgrp(process_group(current))) | 1121 | if (is_current_pgrp_orphaned()) |
1122 | return -EIO; | 1122 | return -EIO; |
1123 | (void) kill_pg(process_group(current), SIGTTOU, 1); | 1123 | (void) kill_pg(process_group(current), SIGTTOU, 1); |
1124 | return -ERESTARTSYS; | 1124 | return -ERESTARTSYS; |