From patchwork Fri Apr 5 12:16:23 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: [net-next, v2, 2/4] ipv6: export ipv6_sock_mc_join and ipv6_sock_mc_drop X-Patchwork-Submitter: Amerigo Wang X-Patchwork-Id: 234116 X-Patchwork-Delegate: davem@davemloft.net Message-Id: <1365164186-21719-2-git-send-email-amwang@redhat.com> To: netdev@vger.kernel.org Cc: Stephen Hemminger , "David S. Miller" , Cong Wang Date: Fri, 5 Apr 2013 20:16:23 +0800 From: Cong Wang List-Id: From: Cong Wang They will be used by vxlan module. Cc: Stephen Hemminger Cc: David S. Miller Signed-off-by: Cong Wang --- net/ipv6/mcast.c | 2 ++ 1 files changed, 2 insertions(+), 0 deletions(-) diff --git a/net/ipv6/mcast.c b/net/ipv6/mcast.c index bfa6cc3..d03426d 100644 --- a/net/ipv6/mcast.c +++ b/net/ipv6/mcast.c @@ -200,6 +200,7 @@ int ipv6_sock_mc_join(struct sock *sk, int ifindex, const struct in6_addr *addr) return 0; } +EXPORT_SYMBOL(ipv6_sock_mc_join); /* * socket leave on multicast group @@ -246,6 +247,7 @@ int ipv6_sock_mc_drop(struct sock *sk, int ifindex, const struct in6_addr *addr) return -EADDRNOTAVAIL; } +EXPORT_SYMBOL(ipv6_sock_mc_drop); /* called with rcu_read_lock() */ static struct inet6_dev *ip6_mc_find_dev_rcu(struct net *net,