aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/char
diff options
context:
space:
mode:
authorPeter Hurley <peter@hurleysoftware.com>2015-10-10 16:00:52 -0400
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2015-10-18 00:11:29 -0400
commitfef062cbf2a90fd926a6fff9eb06dde1b699f1b3 (patch)
tree5f2cc71db26e745beb483d96b0005b6d9cdd2714 /drivers/char
parent79c1faa4511e78380cd643dac88a775062a08bc0 (diff)
tty: Remove ASYNC_CLOSING checks in open()/hangup() methods
Since at least before 2.6.30, tty drivers that do not drop the tty lock while closing cannot observe ASYNC_CLOSING set while holding the tty lock; this includes the tty driver's open() and hangup() methods, since the tty core calls these methods holding the tty lock. For these drivers, waiting for ASYNC_CLOSING to clear while opening is not required, since this condition cannot occur. Similarly, even when the open() method drops and reacquires the tty lock after blocking, ASYNC_CLOSING cannot be set (again, for drivers that do not drop the tty lock while closing). Now that tty port drivers no longer drop the tty lock while closing (since 'tty: Remove tty_wait_until_sent_from_close()'), the same conditions apply: waiting for ASYNC_CLOSING to clear while opening is not required, nor is re-checking ASYNC_CLOSING after dropping and reacquiring the tty lock while blocking (eg., in *_block_til_ready()). Note: The ASYNC_CLOSING flag state is still maintained since several bitrotting drivers use it for (dubious) other purposes. Signed-off-by: Peter Hurley <peter@hurleysoftware.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/char')
-rw-r--r--drivers/char/pcmcia/synclink_cs.c9
1 files changed, 0 insertions, 9 deletions
diff --git a/drivers/char/pcmcia/synclink_cs.c b/drivers/char/pcmcia/synclink_cs.c
index 7680d5213ff8..45df4bf914f8 100644
--- a/drivers/char/pcmcia/synclink_cs.c
+++ b/drivers/char/pcmcia/synclink_cs.c
@@ -2507,15 +2507,6 @@ static int mgslpc_open(struct tty_struct *tty, struct file * filp)
2507 printk("%s(%d):mgslpc_open(%s), old ref count = %d\n", 2507 printk("%s(%d):mgslpc_open(%s), old ref count = %d\n",
2508 __FILE__, __LINE__, tty->driver->name, port->count); 2508 __FILE__, __LINE__, tty->driver->name, port->count);
2509 2509
2510 /* If port is closing, signal caller to try again */
2511 if (port->flags & ASYNC_CLOSING){
2512 wait_event_interruptible_tty(tty, port->close_wait,
2513 !(port->flags & ASYNC_CLOSING));
2514 retval = ((port->flags & ASYNC_HUP_NOTIFY) ?
2515 -EAGAIN : -ERESTARTSYS);
2516 goto cleanup;
2517 }
2518
2519 port->low_latency = (port->flags & ASYNC_LOW_LATENCY) ? 1 : 0; 2510 port->low_latency = (port->flags & ASYNC_LOW_LATENCY) ? 1 : 0;
2520 2511
2521 spin_lock_irqsave(&info->netlock, flags); 2512 spin_lock_irqsave(&info->netlock, flags);