mirror of
				https://github.com/torvalds/linux.git
				synced 2025-11-04 10:40:15 +02:00 
			
		
		
		
	tty: Fix GPF in flush_to_ldisc(), part 2
commit 9ce119f318 ("tty: Fix GPF in flush_to_ldisc()") fixed a
GPF caused by a line discipline which does not define a receive_buf()
method.
However, the vt driver (and speakup driver also) pushes selection
data directly to the line discipline receive_buf() method via
tty_ldisc_receive_buf(). Fix the same problem in tty_ldisc_receive_buf().
Cc: <stable@vger.kernel.org>
Signed-off-by: Peter Hurley <peter@hurleysoftware.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
			
			
This commit is contained in:
		
							parent
							
								
									2d73b069f8
								
							
						
					
					
						commit
						f33798deec
					
				
					 1 changed files with 1 additions and 1 deletions
				
			
		| 
						 | 
				
			
			@ -579,7 +579,7 @@ static inline int tty_ldisc_receive_buf(struct tty_ldisc *ld, unsigned char *p,
 | 
			
		|||
		count = ld->ops->receive_buf2(ld->tty, p, f, count);
 | 
			
		||||
	else {
 | 
			
		||||
		count = min_t(int, count, ld->tty->receive_room);
 | 
			
		||||
		if (count)
 | 
			
		||||
		if (count && ld->ops->receive_buf)
 | 
			
		||||
			ld->ops->receive_buf(ld->tty, p, f, count);
 | 
			
		||||
	}
 | 
			
		||||
	return count;
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
		Reference in a new issue