Re: [PATCH] block: bio: use struct_size() in kmalloc()
From: Jens Axboe <axboe@kernel.dk>
Date: 2019-05-17 21:17:11
Also in:
lkml
From: Jens Axboe <axboe@kernel.dk>
Date: 2019-05-17 21:17:11
Also in:
lkml
On 5/17/19 3:12 AM, xiaolinkui wrote:
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[];
};
instance = kmalloc(sizeof(struct foo) + count * sizeof(struct boo), GFP_KERNEL);
Instead of leaving these open-coded and prone to type mistakes, we can
now use the new struct_size() helper:
instance = kmalloc(struct_size(instance, entry, count), GFP_KERNEL);Applied, thanks. -- Jens Axboe