aboutsummaryrefslogtreecommitdiffstats
path: root/net/ipv4/netfilter/nf_tables_ipv4.c
diff options
context:
space:
mode:
authorDavid S. Miller <davem@davemloft.net>2015-04-03 21:16:25 -0400
committerDavid S. Miller <davem@davemloft.net>2015-04-04 12:54:27 -0400
commit073bfd56860446a2cb349bcf282fc17a36ca386c (patch)
tree715689c7e8b3d4f3653576d24ca4018af41043b2 /net/ipv4/netfilter/nf_tables_ipv4.c
parentnetfilter: Pass nf_hook_state through ip6t_do_table(). (diff)
downloadlinux-dev-073bfd56860446a2cb349bcf282fc17a36ca386c.tar.xz
linux-dev-073bfd56860446a2cb349bcf282fc17a36ca386c.zip
netfilter: Pass nf_hook_state through nft_set_pktinfo*().
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/ipv4/netfilter/nf_tables_ipv4.c')
-rw-r--r--net/ipv4/netfilter/nf_tables_ipv4.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/net/ipv4/netfilter/nf_tables_ipv4.c b/net/ipv4/netfilter/nf_tables_ipv4.c
index 708e388e3dbe..aa180d3a69a5 100644
--- a/net/ipv4/netfilter/nf_tables_ipv4.c
+++ b/net/ipv4/netfilter/nf_tables_ipv4.c
@@ -24,7 +24,7 @@ static unsigned int nft_do_chain_ipv4(const struct nf_hook_ops *ops,
{
struct nft_pktinfo pkt;
- nft_set_pktinfo_ipv4(&pkt, ops, skb, state->in, state->out);
+ nft_set_pktinfo_ipv4(&pkt, ops, skb, state);
return nft_do_chain(&pkt, ops);
}