patch-1.3.60 linux/drivers/char/serial.c
Next file: linux/drivers/char/softdog.c
Previous file: linux/drivers/char/mouse.c
Back to the patch index
Back to the overall index
- Lines: 88
- Date:
Wed Feb 7 08:55:36 1996
- Orig file:
v1.3.59/linux/drivers/char/serial.c
- Orig date:
Sun Dec 17 11:43:18 1995
diff -u --recursive --new-file v1.3.59/linux/drivers/char/serial.c linux/drivers/char/serial.c
@@ -887,23 +887,32 @@
unsigned long flags;
int retval;
void (*handler)(int, struct pt_regs *);
+ unsigned long page;
- if (info->flags & ASYNC_INITIALIZED)
+ page = get_free_page(GFP_KERNEL);
+ if (!page)
+ return -ENOMEM;
+
+
+ save_flags(flags); cli();
+
+ if (info->flags & ASYNC_INITIALIZED) {
+ free_page(page);
+ restore_flags(flags);
return 0;
+ }
if (!info->port || !info->type) {
if (info->tty)
set_bit(TTY_IO_ERROR, &info->tty->flags);
+ free_page(page);
+ restore_flags(flags);
return 0;
}
-
- if (!info->xmit_buf) {
- info->xmit_buf = (unsigned char *) get_free_page(GFP_KERNEL);
- if (!info->xmit_buf)
- return -ENOMEM;
- }
-
- save_flags(flags); cli();
+ if (info->xmit_buf)
+ free_page(page);
+ else
+ info->xmit_buf = (unsigned char *) page;
#ifdef SERIAL_DEBUG_OPEN
printk("starting up ttys%d (irq %d)...", info->line, info->irq);
@@ -2207,7 +2216,8 @@
* If the device is in the middle of being closed, then block
* until it's done, and then try again.
*/
- if (info->flags & ASYNC_CLOSING) {
+ if (tty_hung_up_p(filp) ||
+ (info->flags & ASYNC_CLOSING)) {
interruptible_sleep_on(&info->close_wait);
#ifdef SERIAL_DO_RESTART
if (info->flags & ASYNC_HUP_NOTIFY)
@@ -2271,7 +2281,10 @@
printk("block_til_ready before block: ttys%d, count = %d\n",
info->line, info->count);
#endif
- info->count--;
+ cli();
+ if (!tty_hung_up_p(filp))
+ info->count--;
+ sti();
info->blocked_open++;
while (1) {
cli();
@@ -2333,6 +2346,7 @@
{
struct async_struct *info;
int retval, line;
+ unsigned long page;
line = MINOR(tty->device) - tty->driver.minor_start;
if ((line < 0) || (line >= NR_PORTS))
@@ -2350,9 +2364,13 @@
info->tty = tty;
if (!tmp_buf) {
- tmp_buf = (unsigned char *) get_free_page(GFP_KERNEL);
- if (!tmp_buf)
+ page = get_free_page(GFP_KERNEL);
+ if (!page)
return -ENOMEM;
+ if (tmp_buf)
+ free_page(page);
+ else
+ tmp_buf = (unsigned char *) page;
}
/*
FUNET's LINUX-ADM group, linux-adm@nic.funet.fi
TCL-scripts by Sam Shen, slshen@lbl.gov
with Sam's (original) version of this