]> www.infradead.org Git - nvme.git/commitdiff
netfilter: x_tables: remove ipt_unregister_table
authorFlorian Westphal <fw@strlen.de>
Wed, 21 Apr 2021 07:51:00 +0000 (09:51 +0200)
committerPablo Neira Ayuso <pablo@netfilter.org>
Mon, 26 Apr 2021 01:20:08 +0000 (03:20 +0200)
Its the same function as ipt_unregister_table_exit.

Signed-off-by: Florian Westphal <fw@strlen.de>
Signed-off-by: Pablo Neira Ayuso <pablo@netfilter.org>
include/linux/netfilter_ipv4/ip_tables.h
include/linux/netfilter_ipv6/ip6_tables.h
net/ipv4/netfilter/ip_tables.c
net/ipv4/netfilter/iptable_nat.c
net/ipv6/netfilter/ip6_tables.c
net/ipv6/netfilter/ip6table_nat.c

index c4676d6feeff25eaf4f95baaced703c6a156c61c..9f440eb6cf6c9310137efbd9c49ff8a0757aef55 100644 (file)
@@ -31,9 +31,6 @@ void ipt_unregister_table_pre_exit(struct net *net, struct xt_table *table,
 
 void ipt_unregister_table_exit(struct net *net, struct xt_table *table);
 
-void ipt_unregister_table(struct net *net, struct xt_table *table,
-                         const struct nf_hook_ops *ops);
-
 /* Standard entry. */
 struct ipt_standard {
        struct ipt_entry entry;
index 1547d5f9ae06d2e78535635c8596b1b8e4680044..b88a27ce61b00027c37666c2c24886db1e1a8975 100644 (file)
@@ -27,8 +27,6 @@ extern void *ip6t_alloc_initial_table(const struct xt_table *);
 int ip6t_register_table(struct net *net, const struct xt_table *table,
                        const struct ip6t_replace *repl,
                        const struct nf_hook_ops *ops, struct xt_table **res);
-void ip6t_unregister_table(struct net *net, struct xt_table *table,
-                          const struct nf_hook_ops *ops);
 void ip6t_unregister_table_pre_exit(struct net *net, struct xt_table *table,
                                    const struct nf_hook_ops *ops);
 void ip6t_unregister_table_exit(struct net *net, struct xt_table *table);
index f77ea0dbe6562b38a1a10d176857773c3298d6e8..2fa7f28b88e38d27a3c12b93a93d761f8c267ae5 100644 (file)
@@ -1770,14 +1770,6 @@ void ipt_unregister_table_exit(struct net *net, struct xt_table *table)
        __ipt_unregister_table(net, table);
 }
 
-void ipt_unregister_table(struct net *net, struct xt_table *table,
-                         const struct nf_hook_ops *ops)
-{
-       if (ops)
-               ipt_unregister_table_pre_exit(net, table, ops);
-       __ipt_unregister_table(net, table);
-}
-
 /* Returns 1 if the type and code is matched by the range, 0 otherwise */
 static inline bool
 icmp_type_code_match(u_int8_t test_type, u_int8_t min_code, u_int8_t max_code,
@@ -1924,7 +1916,6 @@ static void __exit ip_tables_fini(void)
 }
 
 EXPORT_SYMBOL(ipt_register_table);
-EXPORT_SYMBOL(ipt_unregister_table);
 EXPORT_SYMBOL(ipt_unregister_table_pre_exit);
 EXPORT_SYMBOL(ipt_unregister_table_exit);
 EXPORT_SYMBOL(ipt_do_table);
index b0143b109f25f0c977f066ed479adce744eaef53..a89c1b9f94c28e4de3846cfabcb68be938380aec 100644 (file)
@@ -105,7 +105,7 @@ static int __net_init iptable_nat_table_init(struct net *net)
 
        ret = ipt_nat_register_lookups(net);
        if (ret < 0) {
-               ipt_unregister_table(net, net->ipv4.nat_table, NULL);
+               ipt_unregister_table_exit(net, net->ipv4.nat_table);
                net->ipv4.nat_table = NULL;
        }
 
index eb2b5404806c649c2fe4cb0c51b4481dace1652b..e605c28cfed58a1b0efc92f6d332b97361844837 100644 (file)
@@ -1780,14 +1780,6 @@ void ip6t_unregister_table_exit(struct net *net, struct xt_table *table)
        __ip6t_unregister_table(net, table);
 }
 
-void ip6t_unregister_table(struct net *net, struct xt_table *table,
-                          const struct nf_hook_ops *ops)
-{
-       if (ops)
-               ip6t_unregister_table_pre_exit(net, table, ops);
-       __ip6t_unregister_table(net, table);
-}
-
 /* Returns 1 if the type and code is matched by the range, 0 otherwise */
 static inline bool
 icmp6_type_code_match(u_int8_t test_type, u_int8_t min_code, u_int8_t max_code,
@@ -1935,7 +1927,6 @@ static void __exit ip6_tables_fini(void)
 }
 
 EXPORT_SYMBOL(ip6t_register_table);
-EXPORT_SYMBOL(ip6t_unregister_table);
 EXPORT_SYMBOL(ip6t_unregister_table_pre_exit);
 EXPORT_SYMBOL(ip6t_unregister_table_exit);
 EXPORT_SYMBOL(ip6t_do_table);
index 0a23265e3caaafa8ba16cf9d2cf020fd080f71d2..4cef1b4050749edf17c6024c7f893fc228c68a5c 100644 (file)
@@ -107,7 +107,7 @@ static int __net_init ip6table_nat_table_init(struct net *net)
 
        ret = ip6t_nat_register_lookups(net);
        if (ret < 0) {
-               ip6t_unregister_table(net, net->ipv6.ip6table_nat, NULL);
+               ip6t_unregister_table_exit(net, net->ipv6.ip6table_nat);
                net->ipv6.ip6table_nat = NULL;
        }
        kfree(repl);