Commit 01081be1 authored by José Expósito's avatar José Expósito Committed by Jakub Kicinski

net: prestera: replace zero-length array with flexible-array member

One-element and zero-length arrays are deprecated and should be
replaced with flexible-array members:
https://www.kernel.org/doc/html/latest/process/deprecated.html#zero-length-and-one-element-arrays

Replace zero-length array with flexible-array member and make use
of the struct_size() helper.

Link: https://github.com/KSPP/linux/issues/78Signed-off-by: default avatarJosé Expósito <jose.exposito89@gmail.com>
Reviewed-by: default avatarVolodymyr Mytnyk <vmytnyk@marvell.com>
Tested-by: default avatarVolodymyr Mytnyk <vmytnyk@marvell.com>
Reviewed-by: default avatarGustavo A. R. Silva <gustavoars@kernel.org>
Link: https://lore.kernel.org/r/20211204171349.22776-1-jose.exposito89@gmail.comSigned-off-by: default avatarJakub Kicinski <kuba@kernel.org>
parent 5382911f
...@@ -443,7 +443,7 @@ struct prestera_msg_counter_resp { ...@@ -443,7 +443,7 @@ struct prestera_msg_counter_resp {
__le32 offset; __le32 offset;
__le32 num_counters; __le32 num_counters;
__le32 done; __le32 done;
struct prestera_msg_counter_stats stats[0]; struct prestera_msg_counter_stats stats[];
}; };
struct prestera_msg_span_req { struct prestera_msg_span_req {
...@@ -1900,7 +1900,7 @@ int prestera_hw_counters_get(struct prestera_switch *sw, u32 idx, ...@@ -1900,7 +1900,7 @@ int prestera_hw_counters_get(struct prestera_switch *sw, u32 idx,
.block_id = __cpu_to_le32(idx), .block_id = __cpu_to_le32(idx),
.num_counters = __cpu_to_le32(*len), .num_counters = __cpu_to_le32(*len),
}; };
size_t size = sizeof(*resp) + sizeof(*resp->stats) * (*len); size_t size = struct_size(resp, stats, *len);
int err, i; int err, i;
resp = kmalloc(size, GFP_KERNEL); resp = kmalloc(size, GFP_KERNEL);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment