forked from mirrors/linux
		
	bareudp: remove unnecessary udp_encap_enable() in bareudp_socket_create()
In the current code, udp_encap_enable() is called in bareudp_socket_create(). But, setup_udp_tunnel_sock() internally calls udp_encap_enable(). So, udp_encap_enable() is unnecessary. Signed-off-by: Taehee Yoo <ap420073@gmail.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
		
							parent
							
								
									c46a49a45c
								
							
						
					
					
						commit
						2baecda37f
					
				
					 1 changed files with 0 additions and 3 deletions
				
			
		| 
						 | 
				
			
			@ -250,9 +250,6 @@ static int bareudp_socket_create(struct bareudp_dev *bareudp, __be16 port)
 | 
			
		|||
	tunnel_cfg.encap_destroy = NULL;
 | 
			
		||||
	setup_udp_tunnel_sock(bareudp->net, sock, &tunnel_cfg);
 | 
			
		||||
 | 
			
		||||
	if (sock->sk->sk_family == AF_INET6)
 | 
			
		||||
		udp_encap_enable();
 | 
			
		||||
 | 
			
		||||
	rcu_assign_pointer(bareudp->sock, sock);
 | 
			
		||||
	return 0;
 | 
			
		||||
}
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
		Reference in a new issue