Commit cb631a63 authored by Alex Elder's avatar Alex Elder Committed by Jakub Kicinski

net: ipa: use struct_size() for the interconnect array

In review for commit 8ee7ec48 ("net: ipa: embed interconnect
array in the power structure"), Jakub Kicinski suggested that a
follow-up patch use struct_size() when computing the size of the
IPA power structure, which ends with a flexible array member.

Do that.
Suggested-by: default avatarJakub Kicinski <kuba@kernel.org>
Signed-off-by: default avatarAlex Elder <elder@linaro.org>
Link: https://lore.kernel.org/r/20220311162423.872645-1-elder@linaro.orgSigned-off-by: default avatarJakub Kicinski <kuba@kernel.org>
parent 0b366069
...@@ -374,8 +374,8 @@ ipa_power_init(struct device *dev, const struct ipa_power_data *data) ...@@ -374,8 +374,8 @@ ipa_power_init(struct device *dev, const struct ipa_power_data *data)
goto err_clk_put; goto err_clk_put;
} }
size = data->interconnect_count * sizeof(power->interconnect[0]); size = struct_size(power, interconnect, data->interconnect_count);
power = kzalloc(sizeof(*power) + size, GFP_KERNEL); power = kzalloc(size, GFP_KERNEL);
if (!power) { if (!power) {
ret = -ENOMEM; ret = -ENOMEM;
goto err_clk_put; goto err_clk_put;
......
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