diff options
author | Patrick McHardy <kaber@trash.net> | 2007-07-08 01:30:27 -0400 |
---|---|---|
committer | David S. Miller <davem@sunset.davemloft.net> | 2007-07-11 01:17:43 -0400 |
commit | 53aba5979e1d964c0234816eda2316f1c2e7946d (patch) | |
tree | 042b0528b82f119d2a452c0e2a448f1d4d04fb14 /include/net | |
parent | ac565e5fc104fe1842a87f2206fcfb7b6dda903d (diff) |
[NETFILTER]: nf_nat: use hlists for bysource hash
Signed-off-by: Patrick McHardy <kaber@trash.net>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'include/net')
-rw-r--r-- | include/net/netfilter/nf_nat.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/net/netfilter/nf_nat.h b/include/net/netfilter/nf_nat.h index d0e5e436dc1b..6ae52f7c9f55 100644 --- a/include/net/netfilter/nf_nat.h +++ b/include/net/netfilter/nf_nat.h | |||
@@ -66,7 +66,7 @@ struct nf_conn; | |||
66 | /* The structure embedded in the conntrack structure. */ | 66 | /* The structure embedded in the conntrack structure. */ |
67 | struct nf_conn_nat | 67 | struct nf_conn_nat |
68 | { | 68 | { |
69 | struct list_head bysource; | 69 | struct hlist_node bysource; |
70 | struct nf_nat_seq seq[IP_CT_DIR_MAX]; | 70 | struct nf_nat_seq seq[IP_CT_DIR_MAX]; |
71 | struct nf_conn *ct; | 71 | struct nf_conn *ct; |
72 | union nf_conntrack_nat_help help; | 72 | union nf_conntrack_nat_help help; |