net/sched: retire tc ipt action
From: | Jamal Hadi Salim <jhs-AT-mojatatu.com> | |
To: | davem-AT-davemloft.net, kuba-AT-kernel.org, edumazet-AT-google.com, pabeni-AT-redhat.com | |
Subject: | [PATCH net-next 0/2] net/sched: retire tc ipt action | |
Date: | Thu, 21 Dec 2023 16:31:02 -0500 | |
Message-ID: | <20231221213105.476630-1-jhs@mojatatu.com> | |
Cc: | netdev-AT-vger.kernel.org, jiri-AT-resnulli.us, xiyou.wangcong-AT-gmail.com, stephen-AT-networkplumber.org, dsahern-AT-gmail.com, fw-AT-strlen.de, pctammela-AT-mojatatu.com, victor-AT-mojatatu.com | |
Archive-link: | Article |
In keeping up with my status as a hero who removes code: another one bites the dust. The tc ipt action was intended to run all netfilter/iptables target. Unfortunately it has not benefitted over the years from proper updates when netfilter changes, and for that reason it has remained rudimentary. Pinging a bunch of people that i was aware were using this indicates that removing it wont affect them. Retire it to reduce maintenance efforts. So Long, ipt, and Thanks for all the Fish. Jamal Hadi Salim (2): net/sched: Retire ipt action net/sched: Remove CONFIG_NET_ACT_IPT from default configs arch/loongarch/configs/loongson3_defconfig | 1 - arch/mips/configs/ip22_defconfig | 1 - arch/mips/configs/malta_defconfig | 1 - arch/mips/configs/malta_kvm_defconfig | 1 - arch/mips/configs/maltaup_xpa_defconfig | 1 - arch/mips/configs/rb532_defconfig | 1 - arch/powerpc/configs/ppc6xx_defconfig | 1 - arch/s390/configs/debug_defconfig | 1 - arch/s390/configs/defconfig | 1 - arch/sh/configs/titan_defconfig | 1 - include/net/tc_act/tc_ipt.h | 17 - include/net/tc_wrapper.h | 4 - include/uapi/linux/pkt_cls.h | 4 +- include/uapi/linux/tc_act/tc_ipt.h | 20 - net/sched/Makefile | 1 - net/sched/act_ipt.c | 464 --------------------- tools/testing/selftests/tc-testing/config | 1 - tools/testing/selftests/tc-testing/tdc.sh | 1 - 18 files changed, 2 insertions(+), 520 deletions(-) delete mode 100644 include/net/tc_act/tc_ipt.h delete mode 100644 include/uapi/linux/tc_act/tc_ipt.h delete mode 100644 net/sched/act_ipt.c -- 2.34.1