aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/dma-buf/dma-resv.c
diff options
context:
space:
mode:
authorChristian König <christian.koenig@amd.com>2020-10-08 10:03:22 +0200
committerChristian König <christian.koenig@amd.com>2020-10-08 15:39:36 +0200
commit82e1b93ad8b95a1667708164220ed137d6f3adfb (patch)
tree9d3787c0cb87287ac1b2b3a283cfdc4ab624c290 /drivers/dma-buf/dma-resv.c
parentdrm/panfrost: Fix job timeout handling (diff)
downloadlinux-dev-82e1b93ad8b95a1667708164220ed137d6f3adfb.tar.xz
linux-dev-82e1b93ad8b95a1667708164220ed137d6f3adfb.zip
dma-buf: use struct_size macro
Instead of manually calculating the structure size. Signed-off-by: Christian König <christian.koenig@amd.com> Reviewed-by: Gustavo A. R. Silva <gustavoars@kernel.org> Reviewed-by: Daniel Vetter <daniel.vetter@ffwll.ch> Link: https://patchwork.freedesktop.org/patch/394252/
Diffstat (limited to 'drivers/dma-buf/dma-resv.c')
-rw-r--r--drivers/dma-buf/dma-resv.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/dma-buf/dma-resv.c b/drivers/dma-buf/dma-resv.c
index 1c8f2581cb09..bb5a42b10c29 100644
--- a/drivers/dma-buf/dma-resv.c
+++ b/drivers/dma-buf/dma-resv.c
@@ -63,7 +63,7 @@ static struct dma_resv_list *dma_resv_list_alloc(unsigned int shared_max)
{
struct dma_resv_list *list;
- list = kmalloc(offsetof(typeof(*list), shared[shared_max]), GFP_KERNEL);
+ list = kmalloc(struct_size(list, shared, shared_max), GFP_KERNEL);
if (!list)
return NULL;