mirror of
https://github.com/followmsi/android_kernel_google_msm.git
synced 2024-11-06 23:17:41 +00:00
pty: Ignore slave open count for master pty open
Multiple slave pty opens may be performed in parallel with the master open. Of course, all the slave opens will fail because the master pty is still locked but during this time the slave pty count will be artificially greater than 1. This is should not cause the master pty open to fail. Signed-off-by: Peter Hurley <peter@hurleysoftware.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
7be88b4ccb
commit
80cace7256
1 changed files with 1 additions and 1 deletions
|
@ -256,7 +256,7 @@ static int pty_open(struct tty_struct *tty, struct file *filp)
|
|||
goto out;
|
||||
if (test_bit(TTY_PTY_LOCK, &tty->link->flags))
|
||||
goto out;
|
||||
if (tty->link->count != 1)
|
||||
if (tty->driver->subtype == PTY_TYPE_SLAVE && tty->link->count != 1)
|
||||
goto out;
|
||||
|
||||
clear_bit(TTY_IO_ERROR, &tty->flags);
|
||||
|
|
Loading…
Reference in a new issue