diff options
Diffstat (limited to 'net')
| -rw-r--r-- | net/ipv4/udp.c | 3 | ||||
| -rw-r--r-- | net/ipv6/udp.c | 3 | 
2 files changed, 4 insertions, 2 deletions
diff --git a/net/ipv4/udp.c b/net/ipv4/udp.c index ad481b32f1e..5d075b5f70f 100644 --- a/net/ipv4/udp.c +++ b/net/ipv4/udp.c @@ -445,7 +445,7 @@ exact_match:  /* UDP is nearly always wildcards out the wazoo, it makes no sense to try   * harder than this. -DaveM   */ -static struct sock *__udp4_lib_lookup(struct net *net, __be32 saddr, +struct sock *__udp4_lib_lookup(struct net *net, __be32 saddr,  		__be16 sport, __be32 daddr, __be16 dport,  		int dif, struct udp_table *udptable)  { @@ -512,6 +512,7 @@ begin:  	rcu_read_unlock();  	return result;  } +EXPORT_SYMBOL_GPL(__udp4_lib_lookup);  static inline struct sock *__udp4_lib_lookup_skb(struct sk_buff *skb,  						 __be16 sport, __be16 dport, diff --git a/net/ipv6/udp.c b/net/ipv6/udp.c index adfe26a7fc6..4f96b5c6368 100644 --- a/net/ipv6/udp.c +++ b/net/ipv6/udp.c @@ -238,7 +238,7 @@ exact_match:  	return result;  } -static struct sock *__udp6_lib_lookup(struct net *net, +struct sock *__udp6_lib_lookup(struct net *net,  				      const struct in6_addr *saddr, __be16 sport,  				      const struct in6_addr *daddr, __be16 dport,  				      int dif, struct udp_table *udptable) @@ -305,6 +305,7 @@ begin:  	rcu_read_unlock();  	return result;  } +EXPORT_SYMBOL_GPL(__udp6_lib_lookup);  static struct sock *__udp6_lib_lookup_skb(struct sk_buff *skb,  					  __be16 sport, __be16 dport,  |