mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-12-26 20:44:32 +08:00
net/sched: act_ct: set 'net' pointer when creating new nf_flow_table
[ Upstream commitfc54d9065f
] Following patches in series use the pointer to access flow table offload debug variables. Signed-off-by: Vlad Buslov <vladbu@nvidia.com> Signed-off-by: Oz Shlomo <ozsh@nvidia.com> Signed-off-by: Pablo Neira Ayuso <pablo@netfilter.org> Stable-dep-of:88c67aeb14
("sched: act_ct: add netns into the key of tcf_ct_flow_table") Signed-off-by: Sasha Levin <sashal@kernel.org>
This commit is contained in:
parent
692803b39a
commit
4b36171266
@ -276,7 +276,7 @@ static struct nf_flowtable_type flowtable_ct = {
|
||||
.owner = THIS_MODULE,
|
||||
};
|
||||
|
||||
static int tcf_ct_flow_table_get(struct tcf_ct_params *params)
|
||||
static int tcf_ct_flow_table_get(struct net *net, struct tcf_ct_params *params)
|
||||
{
|
||||
struct tcf_ct_flow_table *ct_ft;
|
||||
int err = -ENOMEM;
|
||||
@ -302,6 +302,7 @@ static int tcf_ct_flow_table_get(struct tcf_ct_params *params)
|
||||
err = nf_flow_table_init(&ct_ft->nf_ft);
|
||||
if (err)
|
||||
goto err_init;
|
||||
write_pnet(&ct_ft->nf_ft.net, net);
|
||||
|
||||
__module_get(THIS_MODULE);
|
||||
out_unlock:
|
||||
@ -1304,7 +1305,7 @@ static int tcf_ct_init(struct net *net, struct nlattr *nla,
|
||||
if (err)
|
||||
goto cleanup;
|
||||
|
||||
err = tcf_ct_flow_table_get(params);
|
||||
err = tcf_ct_flow_table_get(net, params);
|
||||
if (err)
|
||||
goto cleanup_params;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user