diff options
author | Changli Gao <xiaosuo@gmail.com> | 2011-02-19 05:05:08 -0500 |
---|---|---|
committer | Simon Horman <horms@verge.net.au> | 2011-02-22 01:45:39 -0500 |
commit | 731109e78415b4cc6c2f8de6c11b37f0e40741f8 (patch) | |
tree | 1912a5dbb69a6baa98e81a6a1a1e62a20a58e30e /include/net | |
parent | 41ac51eeda58a85b8a06d748cce7035cc77deebd (diff) |
ipvs: use hlist instead of list
Signed-off-by: Changli Gao <xiaosuo@gmail.com>
Signed-off-by: Simon Horman <horms@verge.net.au>
Diffstat (limited to 'include/net')
-rw-r--r-- | include/net/ip_vs.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/net/ip_vs.h b/include/net/ip_vs.h index 93995494dfd4..17b01b2d48f9 100644 --- a/include/net/ip_vs.h +++ b/include/net/ip_vs.h | |||
@@ -494,7 +494,7 @@ struct ip_vs_conn_param { | |||
494 | * IP_VS structure allocated for each dynamically scheduled connection | 494 | * IP_VS structure allocated for each dynamically scheduled connection |
495 | */ | 495 | */ |
496 | struct ip_vs_conn { | 496 | struct ip_vs_conn { |
497 | struct list_head c_list; /* hashed list heads */ | 497 | struct hlist_node c_list; /* hashed list heads */ |
498 | #ifdef CONFIG_NET_NS | 498 | #ifdef CONFIG_NET_NS |
499 | struct net *net; /* Name space */ | 499 | struct net *net; /* Name space */ |
500 | #endif | 500 | #endif |