From mboxrd@z Thu Jan 1 00:00:00 1970 From: Tom Herbert Subject: [PATCH net-next 5/5] net: Export inet_offloads and inet6_offloads Date: Sun, 7 Sep 2014 22:26:29 -0700 Message-ID: <1410153989-23837-6-git-send-email-therbert@google.com> References: <1410153989-23837-1-git-send-email-therbert@google.com> To: davem@davemloft.net, netdev@vger.kernel.org Return-path: Received: from mail-pa0-f48.google.com ([209.85.220.48]:40349 "EHLO mail-pa0-f48.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751781AbaIHF1X (ORCPT ); Mon, 8 Sep 2014 01:27:23 -0400 Received: by mail-pa0-f48.google.com with SMTP id hz1so4895170pad.7 for ; Sun, 07 Sep 2014 22:27:23 -0700 (PDT) In-Reply-To: <1410153989-23837-1-git-send-email-therbert@google.com> Sender: netdev-owner@vger.kernel.org List-ID: Want to be able to call this in foo-over-udp offloads, etc. Signed-off-by: Tom Herbert --- net/ipv4/protocol.c | 1 + net/ipv6/protocol.c | 1 + 2 files changed, 2 insertions(+) diff --git a/net/ipv4/protocol.c b/net/ipv4/protocol.c index 46d6a1c..4b7c0ec 100644 --- a/net/ipv4/protocol.c +++ b/net/ipv4/protocol.c @@ -30,6 +30,7 @@ const struct net_protocol __rcu *inet_protos[MAX_INET_PROTOS] __read_mostly; const struct net_offload __rcu *inet_offloads[MAX_INET_PROTOS] __read_mostly; +EXPORT_SYMBOL(inet_offloads); int inet_add_protocol(const struct net_protocol *prot, unsigned char protocol) { diff --git a/net/ipv6/protocol.c b/net/ipv6/protocol.c index e048cf1..e3770ab 100644 --- a/net/ipv6/protocol.c +++ b/net/ipv6/protocol.c @@ -51,6 +51,7 @@ EXPORT_SYMBOL(inet6_del_protocol); #endif const struct net_offload __rcu *inet6_offloads[MAX_INET_PROTOS] __read_mostly; +EXPORT_SYMBOL(inet6_offloads); int inet6_add_offload(const struct net_offload *prot, unsigned char protocol) { -- 2.1.0.rc2.206.gedb03e5