aboutsummaryrefslogtreecommitdiffstats
path: root/include/net/ip_vs.h
diff options
context:
space:
mode:
authorChangli Gao <xiaosuo@gmail.com>2011-02-19 05:05:08 -0500
committerSimon Horman <horms@verge.net.au>2011-02-22 01:45:39 -0500
commit731109e78415b4cc6c2f8de6c11b37f0e40741f8 (patch)
tree1912a5dbb69a6baa98e81a6a1a1e62a20a58e30e /include/net/ip_vs.h
parent41ac51eeda58a85b8a06d748cce7035cc77deebd (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/ip_vs.h')
-rw-r--r--include/net/ip_vs.h2
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 */
496struct ip_vs_conn { 496struct 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