提交 a0340703 编写于 作者: G Greg Kroah-Hartman

Revert "TTY: call tty_driver_lookup_tty unconditionally"

This reverts commit 631180ac.

It caused problems when /dev/tty is a pty:
	https://lkml.org/lkml/2011/10/12/401

Cc: Jiri Slaby <jslaby@suse.cz>
Cc: stable <stable@vger.kernel.org>
Cc: Sukadev Bhattiprolu <sukadev@us.ibm.com>
Cc: Alan Cox <alan@redhat.com>
Signed-off-by: NGreg Kroah-Hartman <gregkh@suse.de>
上级 5fbe46b6
...@@ -1821,7 +1821,7 @@ int tty_release(struct inode *inode, struct file *filp) ...@@ -1821,7 +1821,7 @@ int tty_release(struct inode *inode, struct file *filp)
static int tty_open(struct inode *inode, struct file *filp) static int tty_open(struct inode *inode, struct file *filp)
{ {
struct tty_struct *tty; struct tty_struct *tty = NULL;
int noctty, retval; int noctty, retval;
struct tty_driver *driver; struct tty_driver *driver;
int index; int index;
...@@ -1892,14 +1892,17 @@ static int tty_open(struct inode *inode, struct file *filp) ...@@ -1892,14 +1892,17 @@ static int tty_open(struct inode *inode, struct file *filp)
return -ENODEV; return -ENODEV;
} }
got_driver: got_driver:
/* check whether we're reopening an existing tty */ if (!tty) {
tty = tty_driver_lookup_tty(driver, inode, index); /* check whether we're reopening an existing tty */
if (IS_ERR(tty)) { tty = tty_driver_lookup_tty(driver, inode, index);
tty_unlock();
mutex_unlock(&tty_mutex); if (IS_ERR(tty)) {
tty_driver_kref_put(driver); tty_unlock();
tty_free_file(filp); mutex_unlock(&tty_mutex);
return PTR_ERR(tty); tty_driver_kref_put(driver);
tty_free_file(filp);
return PTR_ERR(tty);
}
} }
if (tty) { if (tty) {
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册