aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/char/amiserial.c
diff options
context:
space:
mode:
authorAlan Cox <alan@lxorguk.ukuu.org.uk>2008-04-30 03:53:59 -0400
committerLinus Torvalds <torvalds@linux-foundation.org>2008-04-30 11:29:45 -0400
commit978e595f88a1fba5869aa42a4af4fba36f33ecac (patch)
tree60848f49949c5b7b518621ee36cdc6d500244539 /drivers/char/amiserial.c
parentac0e4b7d319bf284bb64bc7e1c051417386b34a4 (diff)
tty/serial: lay the foundations for the next set of reworks
- Stop drivers calling their own flush method indirectly, it obfuscates code and it will change soon anyway - A few more lock_kernel paths temporarily needed in some driver internal waiting code - Remove private put_char method that does a write call for one char - we have that anyway - Most but not yet all of the termios copy under lock fixing (some has other dependencies to follow) - Note a few locking bugs in drivers found in the process - Kill remaining [ab]users of TIOCG/SSOFTCAR in the driver, these must go to fix the termios locking Signed-off-by: Alan Cox <alan@redhat.com> Cc: Jiri Slaby <jirislaby@gmail.com> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'drivers/char/amiserial.c')
-rw-r--r--drivers/char/amiserial.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/drivers/char/amiserial.c b/drivers/char/amiserial.c
index 8ab75a43231b..a5f3956a5971 100644
--- a/drivers/char/amiserial.c
+++ b/drivers/char/amiserial.c
@@ -1505,8 +1505,7 @@ static void rs_close(struct tty_struct *tty, struct file * filp)
1505 rs_wait_until_sent(tty, info->timeout); 1505 rs_wait_until_sent(tty, info->timeout);
1506 } 1506 }
1507 shutdown(info); 1507 shutdown(info);
1508 if (tty->driver->flush_buffer) 1508 rs_flush_buffer(tty);
1509 tty->driver->flush_buffer(tty);
1510 1509
1511 tty_ldisc_flush(tty); 1510 tty_ldisc_flush(tty);
1512 tty->closing = 0; 1511 tty->closing = 0;
@@ -1539,6 +1538,8 @@ static void rs_wait_until_sent(struct tty_struct *tty, int timeout)
1539 return; /* Just in case.... */ 1538 return; /* Just in case.... */
1540 1539
1541 orig_jiffies = jiffies; 1540 orig_jiffies = jiffies;
1541
1542 lock_kernel();
1542 /* 1543 /*
1543 * Set the check interval to be 1/5 of the estimated time to 1544 * Set the check interval to be 1/5 of the estimated time to
1544 * send a single character, and make it at least 1. The check 1545 * send a single character, and make it at least 1. The check
@@ -1579,6 +1580,7 @@ static void rs_wait_until_sent(struct tty_struct *tty, int timeout)
1579 break; 1580 break;
1580 } 1581 }
1581 __set_current_state(TASK_RUNNING); 1582 __set_current_state(TASK_RUNNING);
1583 unlock_kernel();
1582#ifdef SERIAL_DEBUG_RS_WAIT_UNTIL_SENT 1584#ifdef SERIAL_DEBUG_RS_WAIT_UNTIL_SENT
1583 printk("lsr = %d (jiff=%lu)...done\n", lsr, jiffies); 1585 printk("lsr = %d (jiff=%lu)...done\n", lsr, jiffies);
1584#endif 1586#endif