diff options
author | Jan Engelhardt <jengelh@computergmbh.de> | 2008-02-19 17:19:44 -0800 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2008-02-19 17:19:44 -0800 |
commit | 7d9904c2604ce091c97c225b5e2f92f3e7cc2e3a (patch) | |
tree | b14eb64e39855157975b0b2169861fd42fba4b40 /include/linux/netfilter | |
parent | 651acc9893f2cd036e9485ce782d0c4cffbc27f5 (diff) | |
download | blackbird-op-linux-7d9904c2604ce091c97c225b5e2f92f3e7cc2e3a.tar.gz blackbird-op-linux-7d9904c2604ce091c97c225b5e2f92f3e7cc2e3a.zip |
[NETFILTER]: xt_hashlimit: remove unneeded struct member
By allocating ->hinfo, we already have the needed indirection to cope
with the per-cpu xtables struct match_entry.
[Patrick: do this now before the revision 1 struct is used by userspace]
Signed-off-by: Jan Engelhardt <jengelh@computergmbh.de>
Signed-off-by: Patrick McHardy <kaber@trash.net>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'include/linux/netfilter')
-rw-r--r-- | include/linux/netfilter/xt_hashlimit.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/include/linux/netfilter/xt_hashlimit.h b/include/linux/netfilter/xt_hashlimit.h index 58b818ee41ca..51b18d83b477 100644 --- a/include/linux/netfilter/xt_hashlimit.h +++ b/include/linux/netfilter/xt_hashlimit.h @@ -61,7 +61,6 @@ struct xt_hashlimit_mtinfo1 { /* Used internally by the kernel */ struct xt_hashlimit_htable *hinfo __attribute__((aligned(8))); - struct xt_hashlimit_mtinfo1 *master __attribute__((aligned(8))); }; #endif /*_XT_HASHLIMIT_H*/ |