summaryrefslogtreecommitdiffstats
path: root/mm
diff options
context:
space:
mode:
authorGustavo A. R. Silva <gustavo@embeddedor.com>2019-03-05 18:49:31 -0500
committerLinus Torvalds <torvalds@linux-foundation.org>2019-03-06 00:07:21 -0500
commit960087445cd263c30ecc32b9e218887a349597ce (patch)
tree72e533f6d90f4b0f86cd07f95da4e59a9777b7a8 /mm
parent5a7f1b2f2fbeb40c735639c9a86910d86fd5ec41 (diff)
mm/swapfile.c: use struct_size() in kvzalloc()
One of the more common cases of allocation size calculations is finding the size of a structure that has a zero-sized array at the end, along with memory for some number of elements for that array. For example: struct foo { int stuff; struct boo entry[]; }; size = sizeof(struct foo) + count * sizeof(struct boo); instance = kvzalloc(size, GFP_KERNEL); Instead of leaving these open-coded and prone to type mistakes, we can now use the new struct_size() helper: instance = kvzalloc(struct_size(instance, entry, count), GFP_KERNEL); Notice that, in this case, variable size is not necessary, hence it is removed. This code was detected with the help of Coccinelle. Link: http://lkml.kernel.org/r/20190221154622.GA19599@embeddedor Signed-off-by: Gustavo A. R. Silva <gustavo@embeddedor.com> Reviewed-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'mm')
-rw-r--r--mm/swapfile.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/mm/swapfile.c b/mm/swapfile.c
index a14257ac0476..2b8d9c3fbb47 100644
--- a/mm/swapfile.c
+++ b/mm/swapfile.c
@@ -2713,9 +2713,8 @@ static struct swap_info_struct *alloc_swap_info(void)
2713 struct swap_info_struct *p; 2713 struct swap_info_struct *p;
2714 unsigned int type; 2714 unsigned int type;
2715 int i; 2715 int i;
2716 unsigned int size = sizeof(*p) + nr_node_ids * sizeof(struct plist_node);
2717 2716
2718 p = kvzalloc(size, GFP_KERNEL); 2717 p = kvzalloc(struct_size(p, avail_lists, nr_node_ids), GFP_KERNEL);
2719 if (!p) 2718 if (!p)
2720 return ERR_PTR(-ENOMEM); 2719 return ERR_PTR(-ENOMEM);
2721 2720