diff options
author | Changli Gao <xiaosuo@gmail.com> | 2011-02-19 18:05:08 +0800 |
---|---|---|
committer | Simon Horman <horms@verge.net.au> | 2011-02-22 15:45:39 +0900 |
commit | 731109e78415b4cc6c2f8de6c11b37f0e40741f8 (patch) | |
tree | 1912a5dbb69a6baa98e81a6a1a1e62a20a58e30e /include/net/ip_vs.h | |
parent | 41ac51eeda58a85b8a06d748cce7035cc77deebd (diff) | |
download | op-kernel-dev-731109e78415b4cc6c2f8de6c11b37f0e40741f8.zip op-kernel-dev-731109e78415b4cc6c2f8de6c11b37f0e40741f8.tar.gz |
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.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/net/ip_vs.h b/include/net/ip_vs.h index 9399549..17b01b2 100644 --- a/include/net/ip_vs.h +++ b/include/net/ip_vs.h @@ -494,7 +494,7 @@ struct ip_vs_conn_param { * IP_VS structure allocated for each dynamically scheduled connection */ struct ip_vs_conn { - struct list_head c_list; /* hashed list heads */ + struct hlist_node c_list; /* hashed list heads */ #ifdef CONFIG_NET_NS struct net *net; /* Name space */ #endif |