diff options
author | Eric W. Biederman <ebiederm@xmission.com> | 2015-09-18 22:33:03 +0300 |
---|---|---|
committer | Pablo Neira Ayuso <pablo@netfilter.org> | 2015-09-18 22:59:31 +0300 |
commit | a4ffe319ae72034e3f3332698a2fd83b6f063b18 (patch) | |
tree | 779dcc698d6438487e405a6ccea64dd57cc81afb /include/net/tc_act | |
parent | 206e8c00752fbe9cc463184236ac64b2a532cda5 (diff) | |
download | linux-a4ffe319ae72034e3f3332698a2fd83b6f063b18.tar.xz |
act_connmark: Remember the struct net instead of guessing it.
Stop guessing the struct net instead of remember it. Guessing is just
silly and will be problematic in the future when I implement routes
between network namespaces.
Signed-off-by: "Eric W. Biederman" <ebiederm@xmission.com>
Signed-off-by: Pablo Neira Ayuso <pablo@netfilter.org>
Diffstat (limited to 'include/net/tc_act')
-rw-r--r-- | include/net/tc_act/tc_connmark.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/net/tc_act/tc_connmark.h b/include/net/tc_act/tc_connmark.h index 5c1104c2e24f..02caa406611b 100644 --- a/include/net/tc_act/tc_connmark.h +++ b/include/net/tc_act/tc_connmark.h @@ -5,6 +5,7 @@ struct tcf_connmark_info { struct tcf_common common; + struct net *net; u16 zone; }; |