All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH net-next v2] netfilter: Fix incorrect tc_setup_type type for flowtable offload
@ 2020-03-23 23:34 wenxu
  2020-03-27  3:04 ` David Miller
  2020-03-27 17:36 ` Pablo Neira Ayuso
  0 siblings, 2 replies; 4+ messages in thread
From: wenxu @ 2020-03-23 23:34 UTC (permalink / raw)
  To: netdev; +Cc: netfilter-devel

From: wenxu <wenxu@ucloud.cn>

Flowtable offload setup flow_offlod_block in TC_SETP_FT. The indr block
offload of flowtable also should setup in TC_SETUP_FT.
But flow_indr_block_call always sets the tc_set_up_type as TC_SETUP_BLOCK.
So function flow_indr_block_call should expose a parameters to set
the tc_setup_type for each offload subsystem.

Fixes: b5140a36da78 ("netfilter: flowtable: add indr block setup support")
Signed-off-by: wenxu <wenxu@ucloud.cn>
---
v2: modify the comments

 include/net/flow_offload.h            | 3 ++-
 net/core/flow_offload.c               | 6 +++---
 net/netfilter/nf_flow_table_offload.c | 2 +-
 net/netfilter/nf_tables_offload.c     | 2 +-
 net/sched/cls_api.c                   | 2 +-
 5 files changed, 8 insertions(+), 7 deletions(-)

diff --git a/include/net/flow_offload.h b/include/net/flow_offload.h
index 51b9893..7e4e089 100644
--- a/include/net/flow_offload.h
+++ b/include/net/flow_offload.h
@@ -522,6 +522,7 @@ void flow_indr_block_cb_unregister(struct net_device *dev,
 
 void flow_indr_block_call(struct net_device *dev,
 			  struct flow_block_offload *bo,
-			  enum flow_block_command command);
+			  enum flow_block_command command,
+			  enum tc_setup_type type);
 
 #endif /* _NET_FLOW_OFFLOAD_H */
diff --git a/net/core/flow_offload.c b/net/core/flow_offload.c
index 7440e61..e951b74 100644
--- a/net/core/flow_offload.c
+++ b/net/core/flow_offload.c
@@ -511,7 +511,8 @@ void flow_indr_block_cb_unregister(struct net_device *dev,
 
 void flow_indr_block_call(struct net_device *dev,
 			  struct flow_block_offload *bo,
-			  enum flow_block_command command)
+			  enum flow_block_command command,
+			  enum tc_setup_type type)
 {
 	struct flow_indr_block_cb *indr_block_cb;
 	struct flow_indr_block_dev *indr_dev;
@@ -521,8 +522,7 @@ void flow_indr_block_call(struct net_device *dev,
 		return;
 
 	list_for_each_entry(indr_block_cb, &indr_dev->cb_list, list)
-		indr_block_cb->cb(dev, indr_block_cb->cb_priv, TC_SETUP_BLOCK,
-				  bo);
+		indr_block_cb->cb(dev, indr_block_cb->cb_priv, type, bo);
 }
 EXPORT_SYMBOL_GPL(flow_indr_block_call);
 
diff --git a/net/netfilter/nf_flow_table_offload.c b/net/netfilter/nf_flow_table_offload.c
index ad54931..cd5bd23 100644
--- a/net/netfilter/nf_flow_table_offload.c
+++ b/net/netfilter/nf_flow_table_offload.c
@@ -938,7 +938,7 @@ static int nf_flow_table_indr_offload_cmd(struct flow_block_offload *bo,
 {
 	nf_flow_table_block_offload_init(bo, dev_net(dev), cmd, flowtable,
 					 extack);
-	flow_indr_block_call(dev, bo, cmd);
+	flow_indr_block_call(dev, bo, cmd, TC_SETUP_FT);
 
 	if (list_empty(&bo->cb_list))
 		return -EOPNOTSUPP;
diff --git a/net/netfilter/nf_tables_offload.c b/net/netfilter/nf_tables_offload.c
index 2bb2848..954bccb 100644
--- a/net/netfilter/nf_tables_offload.c
+++ b/net/netfilter/nf_tables_offload.c
@@ -313,7 +313,7 @@ static int nft_indr_block_offload_cmd(struct nft_base_chain *chain,
 
 	nft_flow_block_offload_init(&bo, dev_net(dev), cmd, chain, &extack);
 
-	flow_indr_block_call(dev, &bo, cmd);
+	flow_indr_block_call(dev, &bo, cmd, TC_SETUP_BLOCK);
 
 	if (list_empty(&bo.cb_list))
 		return -EOPNOTSUPP;
diff --git a/net/sched/cls_api.c b/net/sched/cls_api.c
index fb6c366..bf4dd4d 100644
--- a/net/sched/cls_api.c
+++ b/net/sched/cls_api.c
@@ -708,7 +708,7 @@ static void tc_indr_block_call(struct tcf_block *block,
 	};
 	INIT_LIST_HEAD(&bo.cb_list);
 
-	flow_indr_block_call(dev, &bo, command);
+	flow_indr_block_call(dev, &bo, command, TC_SETUP_BLOCK);
 	tcf_block_setup(block, &bo);
 }
 
-- 
1.8.3.1


^ permalink raw reply related	[flat|nested] 4+ messages in thread

* Re: [PATCH net-next v2] netfilter: Fix incorrect tc_setup_type type for flowtable offload
  2020-03-23 23:34 [PATCH net-next v2] netfilter: Fix incorrect tc_setup_type type for flowtable offload wenxu
@ 2020-03-27  3:04 ` David Miller
  2020-03-27 16:23   ` Pablo Neira Ayuso
  2020-03-27 17:36 ` Pablo Neira Ayuso
  1 sibling, 1 reply; 4+ messages in thread
From: David Miller @ 2020-03-27  3:04 UTC (permalink / raw)
  To: wenxu; +Cc: netdev, netfilter-devel

From: wenxu@ucloud.cn
Date: Tue, 24 Mar 2020 07:34:25 +0800

> From: wenxu <wenxu@ucloud.cn>
> 
> Flowtable offload setup flow_offlod_block in TC_SETP_FT. The indr block
> offload of flowtable also should setup in TC_SETUP_FT.
> But flow_indr_block_call always sets the tc_set_up_type as TC_SETUP_BLOCK.
> So function flow_indr_block_call should expose a parameters to set
> the tc_setup_type for each offload subsystem.
> 
> Fixes: b5140a36da78 ("netfilter: flowtable: add indr block setup support")
> Signed-off-by: wenxu <wenxu@ucloud.cn>
> ---
> v2: modify the comments

Do the netfilter folks want to take this or should I apply it directly?

Thanks.

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH net-next v2] netfilter: Fix incorrect tc_setup_type type for flowtable offload
  2020-03-27  3:04 ` David Miller
@ 2020-03-27 16:23   ` Pablo Neira Ayuso
  0 siblings, 0 replies; 4+ messages in thread
From: Pablo Neira Ayuso @ 2020-03-27 16:23 UTC (permalink / raw)
  To: David Miller; +Cc: wenxu, netdev, netfilter-devel

On Thu, Mar 26, 2020 at 08:04:09PM -0700, David Miller wrote:
> From: wenxu@ucloud.cn
> Date: Tue, 24 Mar 2020 07:34:25 +0800
> 
> > From: wenxu <wenxu@ucloud.cn>
> > 
> > Flowtable offload setup flow_offlod_block in TC_SETP_FT. The indr block
> > offload of flowtable also should setup in TC_SETUP_FT.
> > But flow_indr_block_call always sets the tc_set_up_type as TC_SETUP_BLOCK.
> > So function flow_indr_block_call should expose a parameters to set
> > the tc_setup_type for each offload subsystem.
> > 
> > Fixes: b5140a36da78 ("netfilter: flowtable: add indr block setup support")
> > Signed-off-by: wenxu <wenxu@ucloud.cn>
> > ---
> > v2: modify the comments
> 
> Do the netfilter folks want to take this or should I apply it directly?

We'll take care of this patch, thank you.

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH net-next v2] netfilter: Fix incorrect tc_setup_type type for flowtable offload
  2020-03-23 23:34 [PATCH net-next v2] netfilter: Fix incorrect tc_setup_type type for flowtable offload wenxu
  2020-03-27  3:04 ` David Miller
@ 2020-03-27 17:36 ` Pablo Neira Ayuso
  1 sibling, 0 replies; 4+ messages in thread
From: Pablo Neira Ayuso @ 2020-03-27 17:36 UTC (permalink / raw)
  To: wenxu; +Cc: netdev, netfilter-devel

Applied to nf-next.

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2020-03-27 17:36 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-03-23 23:34 [PATCH net-next v2] netfilter: Fix incorrect tc_setup_type type for flowtable offload wenxu
2020-03-27  3:04 ` David Miller
2020-03-27 16:23   ` Pablo Neira Ayuso
2020-03-27 17:36 ` Pablo Neira Ayuso

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.