diff options
author | Patrick McHardy <kaber@trash.net> | 2014-01-09 13:42:43 -0500 |
---|---|---|
committer | Pablo Neira Ayuso <pablo@netfilter.org> | 2014-01-09 14:17:16 -0500 |
commit | 3876d22dba62ebf6582f33e1ef2160eeb95e1129 (patch) | |
tree | b4ee6d922f5523a03f78268d9e958abb768c70a8 /net/ipv4 | |
parent | 44a6f0df039ee7ddeebc88327dd61f0afb53baa7 (diff) |
netfilter: nf_tables: rename nft_do_chain_pktinfo() to nft_do_chain()
We don't encode argument types into function names and since besides
nft_do_chain() there are only AF-specific versions, there is no risk
of confusion.
Signed-off-by: Patrick McHardy <kaber@trash.net>
Signed-off-by: Pablo Neira Ayuso <pablo@netfilter.org>
Diffstat (limited to 'net/ipv4')
-rw-r--r-- | net/ipv4/netfilter/nf_tables_arp.c | 2 | ||||
-rw-r--r-- | net/ipv4/netfilter/nf_tables_ipv4.c | 2 | ||||
-rw-r--r-- | net/ipv4/netfilter/nft_chain_nat_ipv4.c | 2 | ||||
-rw-r--r-- | net/ipv4/netfilter/nft_chain_route_ipv4.c | 2 |
4 files changed, 4 insertions, 4 deletions
diff --git a/net/ipv4/netfilter/nf_tables_arp.c b/net/ipv4/netfilter/nf_tables_arp.c index b90d16c332ab..19412a4063fb 100644 --- a/net/ipv4/netfilter/nf_tables_arp.c +++ b/net/ipv4/netfilter/nf_tables_arp.c | |||
@@ -25,7 +25,7 @@ nft_do_chain_arp(const struct nf_hook_ops *ops, | |||
25 | 25 | ||
26 | nft_set_pktinfo(&pkt, ops, skb, in, out); | 26 | nft_set_pktinfo(&pkt, ops, skb, in, out); |
27 | 27 | ||
28 | return nft_do_chain_pktinfo(&pkt, ops); | 28 | return nft_do_chain(&pkt, ops); |
29 | } | 29 | } |
30 | 30 | ||
31 | static struct nft_af_info nft_af_arp __read_mostly = { | 31 | static struct nft_af_info nft_af_arp __read_mostly = { |
diff --git a/net/ipv4/netfilter/nf_tables_ipv4.c b/net/ipv4/netfilter/nf_tables_ipv4.c index 66679fd4b022..fec163a6ac38 100644 --- a/net/ipv4/netfilter/nf_tables_ipv4.c +++ b/net/ipv4/netfilter/nf_tables_ipv4.c | |||
@@ -28,7 +28,7 @@ static unsigned int nft_do_chain_ipv4(const struct nf_hook_ops *ops, | |||
28 | 28 | ||
29 | nft_set_pktinfo_ipv4(&pkt, ops, skb, in, out); | 29 | nft_set_pktinfo_ipv4(&pkt, ops, skb, in, out); |
30 | 30 | ||
31 | return nft_do_chain_pktinfo(&pkt, ops); | 31 | return nft_do_chain(&pkt, ops); |
32 | } | 32 | } |
33 | 33 | ||
34 | static unsigned int nft_ipv4_output(const struct nf_hook_ops *ops, | 34 | static unsigned int nft_ipv4_output(const struct nf_hook_ops *ops, |
diff --git a/net/ipv4/netfilter/nft_chain_nat_ipv4.c b/net/ipv4/netfilter/nft_chain_nat_ipv4.c index 208d60afaaa0..b5b256d45e67 100644 --- a/net/ipv4/netfilter/nft_chain_nat_ipv4.c +++ b/net/ipv4/netfilter/nft_chain_nat_ipv4.c | |||
@@ -75,7 +75,7 @@ static unsigned int nf_nat_fn(const struct nf_hook_ops *ops, | |||
75 | 75 | ||
76 | nft_set_pktinfo_ipv4(&pkt, ops, skb, in, out); | 76 | nft_set_pktinfo_ipv4(&pkt, ops, skb, in, out); |
77 | 77 | ||
78 | ret = nft_do_chain_pktinfo(&pkt, ops); | 78 | ret = nft_do_chain(&pkt, ops); |
79 | if (ret != NF_ACCEPT) | 79 | if (ret != NF_ACCEPT) |
80 | return ret; | 80 | return ret; |
81 | if (!nf_nat_initialized(ct, maniptype)) { | 81 | if (!nf_nat_initialized(ct, maniptype)) { |
diff --git a/net/ipv4/netfilter/nft_chain_route_ipv4.c b/net/ipv4/netfilter/nft_chain_route_ipv4.c index 67db1bbde1c8..125b66766c0a 100644 --- a/net/ipv4/netfilter/nft_chain_route_ipv4.c +++ b/net/ipv4/netfilter/nft_chain_route_ipv4.c | |||
@@ -47,7 +47,7 @@ static unsigned int nf_route_table_hook(const struct nf_hook_ops *ops, | |||
47 | daddr = iph->daddr; | 47 | daddr = iph->daddr; |
48 | tos = iph->tos; | 48 | tos = iph->tos; |
49 | 49 | ||
50 | ret = nft_do_chain_pktinfo(&pkt, ops); | 50 | ret = nft_do_chain(&pkt, ops); |
51 | if (ret != NF_DROP && ret != NF_QUEUE) { | 51 | if (ret != NF_DROP && ret != NF_QUEUE) { |
52 | iph = ip_hdr(skb); | 52 | iph = ip_hdr(skb); |
53 | 53 | ||