summaryrefslogtreecommitdiffstats
path: root/include/net/ip_vs.h
diff options
context:
space:
mode:
authorSven Wegener2008-08-10 11:18:01 +0200
committerSven Wegener2008-08-11 11:45:48 +0200
commitafdd614071aef652f5a3e2a06965de049dd8339b (patch)
tree8daa411ae7abebf9105f9084a7d08e24bdc41e18 /include/net/ip_vs.h
parentipvs: Fix possible deadlock in estimator code (diff)
downloadkernel-qcow2-linux-afdd614071aef652f5a3e2a06965de049dd8339b.tar.gz
kernel-qcow2-linux-afdd614071aef652f5a3e2a06965de049dd8339b.tar.xz
kernel-qcow2-linux-afdd614071aef652f5a3e2a06965de049dd8339b.zip
ipvs: Use ARRAY_SIZE()
Signed-off-by: Sven Wegener <sven.wegener@stealer.net> Acked-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 cbb59ebed4ae..e980416bff81 100644
--- a/include/net/ip_vs.h
+++ b/include/net/ip_vs.h
@@ -440,7 +440,7 @@ struct ip_vs_app
*/
extern const char *ip_vs_proto_name(unsigned proto);
extern void ip_vs_init_hash_table(struct list_head *table, int rows);
-#define IP_VS_INIT_HASH_TABLE(t) ip_vs_init_hash_table(t, sizeof(t)/sizeof(t[0]))
+#define IP_VS_INIT_HASH_TABLE(t) ip_vs_init_hash_table((t), ARRAY_SIZE((t)))
#define IP_VS_APP_TYPE_FTP 1