mirror of
				https://github.com/torvalds/linux.git
				synced 2025-11-04 10:40:15 +02:00 
			
		
		
		
	ipv4: tcp: set unicast_sock uc_ttl to -1
Set unicast_sock uc_ttl to -1 so that we select the right ttl,
instead of sending packets with a 0 ttl.
Bug added in commit be9f4a44e7 (ipv4: tcp: remove per net tcp_sock)
Signed-off-by: Hiroaki SHIMODA <shimoda.hiroaki@gmail.com>
Signed-off-by: Eric Dumazet <edumazet@google.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
			
			
This commit is contained in:
		
							parent
							
								
									186e868786
								
							
						
					
					
						commit
						0980e56e50
					
				
					 1 changed files with 2 additions and 1 deletions
				
			
		| 
						 | 
					@ -1476,7 +1476,8 @@ static DEFINE_PER_CPU(struct inet_sock, unicast_sock) = {
 | 
				
			||||||
		.sk_allocation	= GFP_ATOMIC,
 | 
							.sk_allocation	= GFP_ATOMIC,
 | 
				
			||||||
		.sk_flags	= (1UL << SOCK_USE_WRITE_QUEUE),
 | 
							.sk_flags	= (1UL << SOCK_USE_WRITE_QUEUE),
 | 
				
			||||||
	},
 | 
						},
 | 
				
			||||||
	.pmtudisc = IP_PMTUDISC_WANT,
 | 
						.pmtudisc	= IP_PMTUDISC_WANT,
 | 
				
			||||||
 | 
						.uc_ttl		= -1,
 | 
				
			||||||
};
 | 
					};
 | 
				
			||||||
 | 
					
 | 
				
			||||||
void ip_send_unicast_reply(struct net *net, struct sk_buff *skb, __be32 daddr,
 | 
					void ip_send_unicast_reply(struct net *net, struct sk_buff *skb, __be32 daddr,
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
		Reference in a new issue