Magellan Linux

Annotation of /trunk/kernel26-magellan-server/patches-2.6.31-r4/0102-2.6.31.3-all-fixes.patch

Parent Directory Parent Directory | Revision Log Revision Log


Revision 968 - (hide annotations) (download)
Fri Jan 1 14:52:51 2010 UTC (14 years, 4 months ago) by niro
File size: 790 byte(s)
-2.6.31-magellan-r4:
-updated to linux-2.6.31.9

1 niro 968 diff --git a/drivers/char/tty_port.c b/drivers/char/tty_port.c
2     index 549bd0f..fa4ce67 100644
3     --- a/drivers/char/tty_port.c
4     +++ b/drivers/char/tty_port.c
5     @@ -99,7 +99,7 @@ EXPORT_SYMBOL(tty_port_tty_set);
6     static void tty_port_shutdown(struct tty_port *port)
7     {
8     if (port->ops->shutdown &&
9     - test_and_clear_bit(ASYNC_INITIALIZED, &port->flags))
10     + test_and_clear_bit(ASYNCB_INITIALIZED, &port->flags))
11     port->ops->shutdown(port);
12    
13     }
14     @@ -309,7 +309,7 @@ int tty_port_close_start(struct tty_port *port, struct tty_struct *tty, struct f
15     port->ops->drop(port);
16     return 0;
17     }
18     - set_bit(ASYNC_CLOSING, &port->flags);
19     + set_bit(ASYNCB_CLOSING, &port->flags);
20     tty->closing = 1;
21     spin_unlock_irqrestore(&port->lock, flags);
22     /* Don't block on a stalled port, just pull the chain */