diff options
Diffstat (limited to 'net/ipv4/udp.c')
| -rw-r--r-- | net/ipv4/udp.c | 5 | 
1 files changed, 3 insertions, 2 deletions
diff --git a/net/ipv4/udp.c b/net/ipv4/udp.c index 7af756d0f93..8fef859db35 100644 --- a/net/ipv4/udp.c +++ b/net/ipv4/udp.c @@ -95,6 +95,7 @@  #include <linux/mm.h>  #include <linux/inet.h>  #include <linux/netdevice.h> +#include <linux/slab.h>  #include <net/tcp_states.h>  #include <linux/skbuff.h>  #include <linux/proc_fs.h> @@ -471,8 +472,8 @@ static struct sock *__udp4_lib_lookup(struct net *net, __be32 saddr,  			if (hslot->count < hslot2->count)  				goto begin; -			result = udp4_lib_lookup2(net, INADDR_ANY, sport, -						  daddr, hnum, dif, +			result = udp4_lib_lookup2(net, saddr, sport, +						  INADDR_ANY, hnum, dif,  						  hslot2, slot2);  		}  		rcu_read_unlock();  |