linux/drivers/uwb
Gustavo A. R. Silva 6041828fda uwb: use struct_size() in kzalloc()
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;
    void *entry[];
};

instance = kzalloc(sizeof(struct foo) + sizeof(void *) * count, GFP_KERNEL);

Instead of leaving these open-coded and prone to type mistakes, we can now
use the new struct_size() helper:

instance = kzalloc(struct_size(instance, entry, count), GFP_KERNEL);

This code was detected with the help of Coccinelle.

Signed-off-by: Gustavo A. R. Silva <gustavo@embeddedor.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
2019-01-18 09:58:04 +01:00
..
i1480 uwb: clean an indentation issue, remove extraneous tab 2018-11-07 13:22:06 +01:00
Kconfig uwb: Replace mac address parsing 2018-01-09 16:15:20 +01:00
Makefile
address.c uwb: Replace mac address parsing 2018-01-09 16:15:20 +01:00
allocator.c
beacon.c
driver.c
drp-avail.c
drp-ie.c uwb: use struct_size() in kzalloc() 2019-01-18 09:58:04 +01:00
drp.c
est.c treewide: kmalloc() -> kmalloc_array() 2018-06-12 16:19:22 -07:00
hwa-rc.c uwb: hwa-rc: fix memory leak at probe 2018-07-06 16:36:19 +02:00
ie-rcv.c
ie.c
lc-dev.c
lc-rc.c
neh.c
pal.c
radio.c
reset.c
rsv.c
scan.c
umc-bus.c
umc-dev.c
umc-drv.c
uwb-debug.c uwb: Re-use DEFINE_SHOW_ATTRIBUTE() macro 2018-03-09 09:31:26 -08:00
uwb-internal.h
uwbd.c
whc-rc.c
whci.c