From: Changcheng Deng Date: Tue, 15 Feb 2022 09:11:42 +0000 (+0000) Subject: drm/amdkfd: Replace zero-length array with flexible-array member X-Git-Tag: howlett/maple/20220722_2~936^2~16^2~41 X-Git-Url: https://www.infradead.org/git/?a=commitdiff_plain;h=d5c831566d34924f62082f8b675d35c078f9b45c;p=users%2Fjedix%2Flinux-maple.git drm/amdkfd: Replace zero-length array with flexible-array member There is a regular need in the kernel to provide a way to declare having a dynamically sized set of trailing elements in a structure. Kernel code should always use "flexible array members" for these cases. The older style of one-element or zero-length arrays should no longer be used. Reference: https://www.kernel.org/doc/html/latest/process/deprecated.html#zero-length-and-one-element-arrays Reported-by: Zeal Robot Signed-off-by: Changcheng Deng Acked-by: Christian König Reviewed-by: Felix Kuehling Signed-off-by: Felix Kuehling Signed-off-by: Alex Deucher --- diff --git a/drivers/gpu/drm/amd/amdkfd/kfd_priv.h b/drivers/gpu/drm/amd/amdkfd/kfd_priv.h index 3e44c045d4aa..783d53a3dd9e 100644 --- a/drivers/gpu/drm/amd/amdkfd/kfd_priv.h +++ b/drivers/gpu/drm/amd/amdkfd/kfd_priv.h @@ -1084,7 +1084,7 @@ struct kfd_criu_svm_range_priv_data { uint64_t start_addr; uint64_t size; /* Variable length array of attributes */ - struct kfd_ioctl_svm_attribute attrs[0]; + struct kfd_ioctl_svm_attribute attrs[]; }; struct kfd_criu_queue_priv_data {