aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/char
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/char')
-rw-r--r--drivers/char/pty.c18
-rw-r--r--drivers/char/tty_io.c14
2 files changed, 18 insertions, 14 deletions
diff --git a/drivers/char/pty.c b/drivers/char/pty.c
index c5a192dd00db..a391badef52a 100644
--- a/drivers/char/pty.c
+++ b/drivers/char/pty.c
@@ -60,7 +60,7 @@ static void pty_close(struct tty_struct * tty, struct file * filp)
60 set_bit(TTY_OTHER_CLOSED, &tty->flags); 60 set_bit(TTY_OTHER_CLOSED, &tty->flags);
61#ifdef CONFIG_UNIX98_PTYS 61#ifdef CONFIG_UNIX98_PTYS
62 if (tty->driver == ptm_driver) 62 if (tty->driver == ptm_driver)
63 devpts_pty_kill(tty->index); 63 devpts_pty_kill(tty->link);
64#endif 64#endif
65 tty_vhangup(tty->link); 65 tty_vhangup(tty->link);
66 } 66 }
@@ -453,9 +453,10 @@ static int pty_unix98_ioctl(struct tty_struct *tty, struct file *file,
453 * This provides our locking. 453 * This provides our locking.
454 */ 454 */
455 455
456static struct tty_struct *ptm_unix98_lookup(struct tty_driver *driver, int idx) 456static struct tty_struct *ptm_unix98_lookup(struct tty_driver *driver,
457 struct inode *ptm_inode, int idx)
457{ 458{
458 struct tty_struct *tty = devpts_get_tty(idx); 459 struct tty_struct *tty = devpts_get_tty(ptm_inode, idx);
459 if (tty) 460 if (tty)
460 tty = tty->link; 461 tty = tty->link;
461 return tty; 462 return tty;
@@ -470,9 +471,10 @@ static struct tty_struct *ptm_unix98_lookup(struct tty_driver *driver, int idx)
470 * This provides our locking. 471 * This provides our locking.
471 */ 472 */
472 473
473static struct tty_struct *pts_unix98_lookup(struct tty_driver *driver, int idx) 474static struct tty_struct *pts_unix98_lookup(struct tty_driver *driver,
475 struct inode *pts_inode, int idx)
474{ 476{
475 struct tty_struct *tty = devpts_get_tty(idx); 477 struct tty_struct *tty = devpts_get_tty(pts_inode, idx);
476 /* Master must be open before slave */ 478 /* Master must be open before slave */
477 if (!tty) 479 if (!tty)
478 return ERR_PTR(-EIO); 480 return ERR_PTR(-EIO);
@@ -602,7 +604,7 @@ static int __ptmx_open(struct inode *inode, struct file *filp)
602 nonseekable_open(inode, filp); 604 nonseekable_open(inode, filp);
603 605
604 /* find a device that is not in use. */ 606 /* find a device that is not in use. */
605 index = devpts_new_index(); 607 index = devpts_new_index(inode);
606 if (index < 0) 608 if (index < 0)
607 return index; 609 return index;
608 610
@@ -619,7 +621,7 @@ static int __ptmx_open(struct inode *inode, struct file *filp)
619 filp->private_data = tty; 621 filp->private_data = tty;
620 file_move(filp, &tty->tty_files); 622 file_move(filp, &tty->tty_files);
621 623
622 retval = devpts_pty_new(tty->link); 624 retval = devpts_pty_new(inode, tty->link);
623 if (retval) 625 if (retval)
624 goto out1; 626 goto out1;
625 627
@@ -630,7 +632,7 @@ out1:
630 tty_release_dev(filp); 632 tty_release_dev(filp);
631 return retval; 633 return retval;
632out: 634out:
633 devpts_kill_index(index); 635 devpts_kill_index(inode, index);
634 return retval; 636 return retval;
635} 637}
636 638
diff --git a/drivers/char/tty_io.c b/drivers/char/tty_io.c
index 36098ee8fe65..959083961024 100644
--- a/drivers/char/tty_io.c
+++ b/drivers/char/tty_io.c
@@ -1213,12 +1213,13 @@ static void tty_line_name(struct tty_driver *driver, int index, char *p)
1213 * be held until the 'fast-open' is also done. Will change once we 1213 * be held until the 'fast-open' is also done. Will change once we
1214 * have refcounting in the driver and per driver locking 1214 * have refcounting in the driver and per driver locking
1215 */ 1215 */
1216struct tty_struct *tty_driver_lookup_tty(struct tty_driver *driver, int idx) 1216struct tty_struct *tty_driver_lookup_tty(struct tty_driver *driver,
1217 struct inode *inode, int idx)
1217{ 1218{
1218 struct tty_struct *tty; 1219 struct tty_struct *tty;
1219 1220
1220 if (driver->ops->lookup) 1221 if (driver->ops->lookup)
1221 return driver->ops->lookup(driver, idx); 1222 return driver->ops->lookup(driver, inode, idx);
1222 1223
1223 tty = driver->ttys[idx]; 1224 tty = driver->ttys[idx];
1224 return tty; 1225 return tty;
@@ -1539,10 +1540,11 @@ void tty_release_dev(struct file *filp)
1539 int devpts; 1540 int devpts;
1540 int idx; 1541 int idx;
1541 char buf[64]; 1542 char buf[64];
1543 struct inode *inode;
1542 1544
1545 inode = filp->f_path.dentry->d_inode;
1543 tty = (struct tty_struct *)filp->private_data; 1546 tty = (struct tty_struct *)filp->private_data;
1544 if (tty_paranoia_check(tty, filp->f_path.dentry->d_inode, 1547 if (tty_paranoia_check(tty, inode, "tty_release_dev"))
1545 "tty_release_dev"))
1546 return; 1548 return;
1547 1549
1548 check_tty_count(tty, "tty_release_dev"); 1550 check_tty_count(tty, "tty_release_dev");
@@ -1751,7 +1753,7 @@ void tty_release_dev(struct file *filp)
1751 1753
1752 /* Make this pty number available for reallocation */ 1754 /* Make this pty number available for reallocation */
1753 if (devpts) 1755 if (devpts)
1754 devpts_kill_index(idx); 1756 devpts_kill_index(inode, idx);
1755} 1757}
1756 1758
1757/** 1759/**
@@ -1836,7 +1838,7 @@ retry_open:
1836got_driver: 1838got_driver:
1837 if (!tty) { 1839 if (!tty) {
1838 /* check whether we're reopening an existing tty */ 1840 /* check whether we're reopening an existing tty */
1839 tty = tty_driver_lookup_tty(driver, index); 1841 tty = tty_driver_lookup_tty(driver, inode, index);
1840 1842
1841 if (IS_ERR(tty)) 1843 if (IS_ERR(tty))
1842 return PTR_ERR(tty); 1844 return PTR_ERR(tty);