From: Dan Williams Date: Tue, 15 Dec 2020 03:04:43 +0000 (-0800) Subject: device-dax/kmem: use struct_size() X-Git-Tag: v5.15~2223^2~175 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=7d18dd75a8afc072aabc77f2a9c3df94cdc53f33;p=platform%2Fkernel%2Flinux-starfive.git device-dax/kmem: use struct_size() Linus notes the kernel has had a nice helper for the 'size of struct with variable array member at the end' operation for a couple years now, use it. Link: http://lore.kernel.org/r/CAHk-=wgNTLbvAD8mNTvh+GQyapNWeX20PXhU_+frqEvVq4298w@mail.gmail.com Link: https://lkml.kernel.org/r/160288261564.3242821.6055291930923876456.stgit@dwillia2-desk3.amr.corp.intel.com Signed-off-by: Dan Williams Reported-by: Linus Torvalds Signed-off-by: Andrew Morton Signed-off-by: Linus Torvalds --- diff --git a/drivers/dax/kmem.c b/drivers/dax/kmem.c index b4368c5..403ec42 100644 --- a/drivers/dax/kmem.c +++ b/drivers/dax/kmem.c @@ -61,7 +61,7 @@ static int dev_dax_kmem_probe(struct dev_dax *dev_dax) return -EINVAL; } - data = kzalloc(sizeof(*data) + sizeof(struct resource *) * dev_dax->nr_range, GFP_KERNEL); + data = kzalloc(struct_size(data, res, dev_dax->nr_range), GFP_KERNEL); if (!data) return -ENOMEM;