summaryrefslogtreecommitdiffstats
path: root/net/netfilter/nf_tables_api.c
diff options
context:
space:
mode:
authorFelix Fietkau2018-02-26 10:15:18 +0100
committerPablo Neira Ayuso2018-04-24 10:28:47 +0200
commit17857d9299225abb55bf6a61eb73f72de1c94625 (patch)
tree180266044b057ddb9d1a1d53f5b769a1315d3070 /net/netfilter/nf_tables_api.c
parentnetfilter: nf_flow_table: move init code to nf_flow_table_core.c (diff)
downloadkernel-qcow2-linux-17857d9299225abb55bf6a61eb73f72de1c94625.tar.gz
kernel-qcow2-linux-17857d9299225abb55bf6a61eb73f72de1c94625.tar.xz
kernel-qcow2-linux-17857d9299225abb55bf6a61eb73f72de1c94625.zip
netfilter: nf_flow_table: fix priv pointer for netdev hook
The offload ip hook expects a pointer to the flowtable, not to the rhashtable. Since the rhashtable is the first member, this is safe for the moment, but breaks as soon as the structure layout changes Signed-off-by: Felix Fietkau <nbd@nbd.name> Signed-off-by: Pablo Neira Ayuso <pablo@netfilter.org>
Diffstat (limited to 'net/netfilter/nf_tables_api.c')
-rw-r--r--net/netfilter/nf_tables_api.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/net/netfilter/nf_tables_api.c b/net/netfilter/nf_tables_api.c
index 6cd9955916e5..517bb93c00fb 100644
--- a/net/netfilter/nf_tables_api.c
+++ b/net/netfilter/nf_tables_api.c
@@ -5019,7 +5019,7 @@ static int nf_tables_flowtable_parse_hook(const struct nft_ctx *ctx,
flowtable->ops[i].pf = NFPROTO_NETDEV;
flowtable->ops[i].hooknum = hooknum;
flowtable->ops[i].priority = priority;
- flowtable->ops[i].priv = &flowtable->data.rhashtable;
+ flowtable->ops[i].priv = &flowtable->data;
flowtable->ops[i].hook = flowtable->data.type->hook;
flowtable->ops[i].dev = dev_array[i];
flowtable->dev_name[i] = kstrdup(dev_array[i]->name,