mirror of
https://git.proxmox.com/git/mirror_ubuntu-kernels.git
synced 2025-12-24 07:28:47 +00:00
Make use of the struct_size() helper instead of an open-coded version in order to avoid any potential type mistakes, in particular in the context in which this code is being used. So, replace the following form: sizeof(*kind) + sizeof(*kind->data) * mmu->kind_nr; with: struct_size(kind, data, mmu->kind_nr) This code was detected with the help of Coccinelle. Signed-off-by: Gustavo A. R. Silva <gustavo@embeddedor.com> Signed-off-by: Ben Skeggs <bskeggs@redhat.com> |
||
|---|---|---|
| .. | ||
| client.c | ||
| device.c | ||
| disp.c | ||
| driver.c | ||
| fifo.c | ||
| Kbuild | ||
| mem.c | ||
| mmu.c | ||
| notify.c | ||
| object.c | ||
| user.c | ||
| userc361.c | ||
| vmm.c | ||