Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 175362
b: refs/heads/master
c: f18f949
h: refs/heads/master
v: v3
  • Loading branch information
Alan Cox authored and Greg Kroah-Hartman committed Dec 11, 2009
1 parent 389f6c8 commit 03f2c6b
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 6 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: eeb89d918c2fa2b809e464136bbafdaec2aacb30
refs/heads/master: f18f9498e90327b9b0e245e191029e6e1996d203
2 changes: 0 additions & 2 deletions trunk/drivers/char/tty_io.c
Original file line number Diff line number Diff line change
Expand Up @@ -1347,9 +1347,7 @@ struct tty_struct *tty_init_dev(struct tty_driver *driver, int idx,
* If we fail here just call release_tty to clean up. No need
* to decrement the use counts, as release_tty doesn't care.
*/
lock_kernel();
retval = tty_ldisc_setup(tty, tty->link);
unlock_kernel();
if (retval)
goto release_mem_out;
return tty;
Expand Down
12 changes: 9 additions & 3 deletions trunk/drivers/char/tty_ldisc.c
Original file line number Diff line number Diff line change
Expand Up @@ -445,8 +445,14 @@ static void tty_set_termios_ldisc(struct tty_struct *tty, int num)
static int tty_ldisc_open(struct tty_struct *tty, struct tty_ldisc *ld)
{
WARN_ON(test_and_set_bit(TTY_LDISC_OPEN, &tty->flags));
if (ld->ops->open)
return ld->ops->open(tty);
if (ld->ops->open) {
int ret;
/* BKL here locks verus a hangup event */
lock_kernel();
ret = ld->ops->open(tty);
unlock_kernel();
return ret;
}
return 0;
}

Expand Down Expand Up @@ -566,14 +572,14 @@ int tty_set_ldisc(struct tty_struct *tty, int ldisc)
return 0;
}

unlock_kernel();
/*
* Problem: What do we do if this blocks ?
* We could deadlock here
*/

tty_wait_until_sent(tty, 0);

unlock_kernel();
mutex_lock(&tty->ldisc_mutex);

/*
Expand Down

0 comments on commit 03f2c6b

Please sign in to comment.