netdev.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] net: sched: Remove NET_ACT_IPT from Kconfig
@ 2024-02-09 18:06 Harshit Mogalapalli
  2024-02-09 18:56 ` Jamal Hadi Salim
  2024-02-13 10:30 ` patchwork-bot+netdevbpf
  0 siblings, 2 replies; 3+ messages in thread
From: Harshit Mogalapalli @ 2024-02-09 18:06 UTC (permalink / raw)
  To: Jamal Hadi Salim, Cong Wang, Jiri Pirko, David S. Miller,
	Eric Dumazet, Jakub Kicinski, Paolo Abeni, netdev, linux-kernel
  Cc: darren.kenny, Harshit Mogalapalli

After this commit ba24ea129126 ("net/sched: Retire ipt action")
NET_ACT_IPT is not needed anymore as the action is retired and the code
is removed.

Clean the Kconfig part as well.

Signed-off-by: Harshit Mogalapalli <harshit.m.mogalapalli@oracle.com>
---
This is just based on observation.

 net/sched/Kconfig | 10 ----------
 1 file changed, 10 deletions(-)

diff --git a/net/sched/Kconfig b/net/sched/Kconfig
index 470c70deffe2..8180d0c12fce 100644
--- a/net/sched/Kconfig
+++ b/net/sched/Kconfig
@@ -737,16 +737,6 @@ config NET_ACT_SAMPLE
 	  To compile this code as a module, choose M here: the
 	  module will be called act_sample.
 
-config NET_ACT_IPT
-	tristate "IPtables targets"
-	depends on NET_CLS_ACT && NETFILTER && NETFILTER_XTABLES
-	help
-	  Say Y here to be able to invoke iptables targets after successful
-	  classification.
-
-	  To compile this code as a module, choose M here: the
-	  module will be called act_ipt.
-
 config NET_ACT_NAT
 	tristate "Stateless NAT"
 	depends on NET_CLS_ACT
-- 
2.39.3


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

* Re: [PATCH] net: sched: Remove NET_ACT_IPT from Kconfig
  2024-02-09 18:06 [PATCH] net: sched: Remove NET_ACT_IPT from Kconfig Harshit Mogalapalli
@ 2024-02-09 18:56 ` Jamal Hadi Salim
  2024-02-13 10:30 ` patchwork-bot+netdevbpf
  1 sibling, 0 replies; 3+ messages in thread
From: Jamal Hadi Salim @ 2024-02-09 18:56 UTC (permalink / raw)
  To: Harshit Mogalapalli
  Cc: Cong Wang, Jiri Pirko, David S. Miller, Eric Dumazet,
	Jakub Kicinski, Paolo Abeni, netdev, linux-kernel, darren.kenny

On Fri, Feb 9, 2024 at 1:07 PM Harshit Mogalapalli
<harshit.m.mogalapalli@oracle.com> wrote:
>
> After this commit ba24ea129126 ("net/sched: Retire ipt action")
> NET_ACT_IPT is not needed anymore as the action is retired and the code
> is removed.
>
> Clean the Kconfig part as well.
>
> Signed-off-by: Harshit Mogalapalli <harshit.m.mogalapalli@oracle.com>

Acked-by: Jamal Hadi Salim <jhs@mojatatu.com>

cheers,
jamal

> ---
> This is just based on observation.
>
>  net/sched/Kconfig | 10 ----------
>  1 file changed, 10 deletions(-)
>
> diff --git a/net/sched/Kconfig b/net/sched/Kconfig
> index 470c70deffe2..8180d0c12fce 100644
> --- a/net/sched/Kconfig
> +++ b/net/sched/Kconfig
> @@ -737,16 +737,6 @@ config NET_ACT_SAMPLE
>           To compile this code as a module, choose M here: the
>           module will be called act_sample.
>
> -config NET_ACT_IPT
> -       tristate "IPtables targets"
> -       depends on NET_CLS_ACT && NETFILTER && NETFILTER_XTABLES
> -       help
> -         Say Y here to be able to invoke iptables targets after successful
> -         classification.
> -
> -         To compile this code as a module, choose M here: the
> -         module will be called act_ipt.
> -
>  config NET_ACT_NAT
>         tristate "Stateless NAT"
>         depends on NET_CLS_ACT
> --
> 2.39.3
>

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

* Re: [PATCH] net: sched: Remove NET_ACT_IPT from Kconfig
  2024-02-09 18:06 [PATCH] net: sched: Remove NET_ACT_IPT from Kconfig Harshit Mogalapalli
  2024-02-09 18:56 ` Jamal Hadi Salim
@ 2024-02-13 10:30 ` patchwork-bot+netdevbpf
  1 sibling, 0 replies; 3+ messages in thread
From: patchwork-bot+netdevbpf @ 2024-02-13 10:30 UTC (permalink / raw)
  To: Harshit Mogalapalli
  Cc: jhs, xiyou.wangcong, jiri, davem, edumazet, kuba, pabeni, netdev,
	linux-kernel, darren.kenny

Hello:

This patch was applied to netdev/net-next.git (main)
by Paolo Abeni <pabeni@redhat.com>:

On Fri,  9 Feb 2024 10:06:56 -0800 you wrote:
> After this commit ba24ea129126 ("net/sched: Retire ipt action")
> NET_ACT_IPT is not needed anymore as the action is retired and the code
> is removed.
> 
> Clean the Kconfig part as well.
> 
> Signed-off-by: Harshit Mogalapalli <harshit.m.mogalapalli@oracle.com>
> 
> [...]

Here is the summary with links:
  - net: sched: Remove NET_ACT_IPT from Kconfig
    https://git.kernel.org/netdev/net-next/c/86fe596b588f

You are awesome, thank you!
-- 
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html



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

end of thread, other threads:[~2024-02-13 10:30 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-02-09 18:06 [PATCH] net: sched: Remove NET_ACT_IPT from Kconfig Harshit Mogalapalli
2024-02-09 18:56 ` Jamal Hadi Salim
2024-02-13 10:30 ` patchwork-bot+netdevbpf

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).