forked from mirrors/linux
		
	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>
This commit is contained in:
		
							parent
							
								
									b21597d026
								
							
						
					
					
						commit
						7a9a65ced1
					
				
					 1 changed files with 0 additions and 4 deletions
				
			
		|  | @ -546,10 +546,6 @@ static int acm_tty_open(struct tty_struct *tty, struct file *filp) | ||||||
| 	tty->driver_data = acm; | 	tty->driver_data = acm; | ||||||
| 	acm->tty = tty; | 	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) | 	if (usb_autopm_get_interface(acm->control) < 0) | ||||||
| 		goto early_bail; | 		goto early_bail; | ||||||
| 	else | 	else | ||||||
|  |  | ||||||
		Loading…
	
		Reference in a new issue
	
	 Alan Cox
						Alan Cox