diff options
author | Alan Cox <alan@lxorguk.ukuu.org.uk> | 2009-04-14 14:57:36 +0100 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2009-04-14 08:48:50 -0700 |
commit | 7a9a65ced11ece416b730d6f21040a18e62d78a8 (patch) | |
tree | 6110bcec1e1e0983188f2c4a11930ca948e99cdd /drivers | |
parent | b21597d0268983f8f9e8b563494f75490403e948 (diff) | |
download | linux-3.10-7a9a65ced11ece416b730d6f21040a18e62d78a8.tar.gz linux-3.10-7a9a65ced11ece416b730d6f21040a18e62d78a8.tar.bz2 linux-3.10-7a9a65ced11ece416b730d6f21040a18e62d78a8.zip |
cdc-acm: Fix long standing abuse of tty->low_latency
ACM sets the low latency flag but calls the flip buffer routines from
IRQ context which isn't permitted (and as of 2.6.29 causes a warning
hence this one was caught)
Fortunatelt ACM doesn't need to set this flag in the first place as it
only set it to work around problems in ancient (pre tty flip rewrite)
kernels.
Reported-by: Chuck Ebbert <cebbert@redhat.com>
Signed-off-by: Alan Cox <alan@lxorguk.ukuu.org.uk>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/usb/class/cdc-acm.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/drivers/usb/class/cdc-acm.c b/drivers/usb/class/cdc-acm.c index 869d47cb6db..0a69c0977e3 100644 --- a/drivers/usb/class/cdc-acm.c +++ b/drivers/usb/class/cdc-acm.c @@ -546,10 +546,6 @@ static int acm_tty_open(struct tty_struct *tty, struct file *filp) tty->driver_data = acm; acm->tty = tty; - /* force low_latency on so that our tty_push actually forces the data through, - otherwise it is scheduled, and with high data rates data can get lost. */ - tty->low_latency = 1; - if (usb_autopm_get_interface(acm->control) < 0) goto early_bail; else |