From mboxrd@z Thu Jan 1 00:00:00 1970 From: Cong Wang Subject: [Patch net-next v2 2/4] ipv6: export ipv6_sock_mc_join and ipv6_sock_mc_drop Date: Fri, 5 Apr 2013 20:16:23 +0800 Message-ID: <1365164186-21719-2-git-send-email-amwang@redhat.com> References: <1365164186-21719-1-git-send-email-amwang@redhat.com> Cc: Stephen Hemminger , "David S. Miller" , Cong Wang To: netdev@vger.kernel.org Return-path: Received: from mx1.redhat.com ([209.132.183.28]:52422 "EHLO mx1.redhat.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1160994Ab3DEMQo (ORCPT ); Fri, 5 Apr 2013 08:16:44 -0400 In-Reply-To: <1365164186-21719-1-git-send-email-amwang@redhat.com> Sender: netdev-owner@vger.kernel.org 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, -- 1.7.7.6