“4fb16b51a570a4321bc9a345c40fb48b4c15a2b1”上不存在“README.md”
提交 d5c83156 编写于 作者: C Changcheng Deng 提交者: Alex Deucher

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-arraysReported-by: NZeal Robot <zealci@zte.com.cn>
Signed-off-by: NChangcheng Deng <deng.changcheng@zte.com.cn>
Acked-by: NChristian König <christian.koenig@amd.com>
Reviewed-by: NFelix Kuehling <Felix.Kuehling@amd.com>
Signed-off-by: NFelix Kuehling <Felix.Kuehling@amd.com>
Signed-off-by: NAlex Deucher <alexander.deucher@amd.com>
上级 17ce8a69
...@@ -1084,7 +1084,7 @@ struct kfd_criu_svm_range_priv_data { ...@@ -1084,7 +1084,7 @@ struct kfd_criu_svm_range_priv_data {
uint64_t start_addr; uint64_t start_addr;
uint64_t size; uint64_t size;
/* Variable length array of attributes */ /* Variable length array of attributes */
struct kfd_ioctl_svm_attribute attrs[0]; struct kfd_ioctl_svm_attribute attrs[];
}; };
struct kfd_criu_queue_priv_data { struct kfd_criu_queue_priv_data {
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册
反馈
建议
客服 返回
顶部