mirror of
				https://github.com/torvalds/linux.git
				synced 2025-11-04 10:40:15 +02:00 
			
		
		
		
	udp: do not expect udp headers on ioctl SIOCINQ
On udp sockets, ioctl SIOCINQ returns the payload size of the first packet. Since commite6afc8ace6pulled the headers, the result is incorrect when subtracting header length. Remove that operation. Fixes:e6afc8ace6("udp: remove headers from UDP packets before queueing") Signed-off-by: Willem de Bruijn <willemb@google.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
		
							parent
							
								
									99717bdfdb
								
							
						
					
					
						commit
						9f9a45beaa
					
				
					 1 changed files with 0 additions and 2 deletions
				
			
		| 
						 | 
				
			
			@ -1282,8 +1282,6 @@ int udp_ioctl(struct sock *sk, int cmd, unsigned long arg)
 | 
			
		|||
			 * of this packet since that is all
 | 
			
		||||
			 * that will be read.
 | 
			
		||||
			 */
 | 
			
		||||
			amount -= sizeof(struct udphdr);
 | 
			
		||||
 | 
			
		||||
		return put_user(amount, (int __user *)arg);
 | 
			
		||||
	}
 | 
			
		||||
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
		Reference in a new issue