diff mbox series

[RFC,nf-next] netfilter: nf_tables: nft_flow_offload_type can be static

Message ID 20180108163349.GA63173@xian
State RFC
Delegated to: Pablo Neira
Headers show
Series [RFC,nf-next] netfilter: nf_tables: nft_flow_offload_type can be static | expand

Commit Message

kbuild test robot Jan. 8, 2018, 4:33 p.m. UTC
Fixes: db2ff0f2f440 ("netfilter: nf_tables: flow offload expression")
Signed-off-by: Fengguang Wu <fengguang.wu@intel.com>
---
 nft_flow_offload.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

--
To unsubscribe from this list: send the line "unsubscribe netfilter-devel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
diff mbox series

Patch

diff --git a/net/netfilter/nft_flow_offload.c b/net/netfilter/nft_flow_offload.c
index b7c7082..e7f16fe 100644
--- a/net/netfilter/nft_flow_offload.c
+++ b/net/netfilter/nft_flow_offload.c
@@ -176,7 +176,7 @@  static int nft_flow_offload_dump(struct sk_buff *skb, const struct nft_expr *exp
 	return -1;
 }
 
-struct nft_expr_type nft_flow_offload_type;
+static struct nft_expr_type nft_flow_offload_type;
 static const struct nft_expr_ops nft_flow_offload_ops = {
 	.type		= &nft_flow_offload_type,
 	.size		= NFT_EXPR_SIZE(sizeof(struct nft_flow_offload)),