From 8e1a83d8f335932fd210c079bcb96c82e790e373 Mon Sep 17 00:00:00 2001 From: Pravin B Shelar Date: Thu, 25 Jul 2013 11:25:21 -0700 Subject: [PATCH] datapath: Use correct type while allocating flex array. Flex array is used to allocate hash buckets which is type struct hlist_head, but we use `struct hlist_head *` to calculate array size. Since hlist_head is of size pointer it works fine. Following patch use correct type. Signed-off-by: Pravin B Shelar Acked-by: Jesse Gross --- datapath/flow.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/datapath/flow.c b/datapath/flow.c index c6a90b936..21e956c2d 100644 --- a/datapath/flow.c +++ b/datapath/flow.c @@ -429,7 +429,7 @@ static struct flex_array *alloc_buckets(unsigned int n_buckets) struct flex_array *buckets; int i, err; - buckets = flex_array_alloc(sizeof(struct hlist_head *), + buckets = flex_array_alloc(sizeof(struct hlist_head), n_buckets, GFP_KERNEL); if (!buckets) return NULL; -- 2.43.0