mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-01-18 02:46:06 +00:00
net/ipa: ipa_resource: Fix wrong for loop range
The source group count was mistakenly assigned to both dst and src loops. Fix it to make IPA probe and work again. Fixes: 4fd704b3608a ("net: ipa: record number of groups in data") Acked-by: AngeloGioacchino Del Regno <angelogioacchino.delregno@somainline.org> Reviewed-by: Marijn Suijten <marijn.suijten@somainline.org> Signed-off-by: Konrad Dybcio <konrad.dybcio@somainline.org> Reviewed-by: Alex Elder <elder@linaro.org> Link: https://lore.kernel.org/r/20211111183724.593478-1-konrad.dybcio@somainline.org Signed-off-by: Jakub Kicinski <kuba@kernel.org>
This commit is contained in:
parent
0cda7d4bac
commit
27df68d579
@ -52,7 +52,7 @@ static bool ipa_resource_limits_valid(struct ipa *ipa,
|
||||
return false;
|
||||
}
|
||||
|
||||
group_count = data->rsrc_group_src_count;
|
||||
group_count = data->rsrc_group_dst_count;
|
||||
if (!group_count || group_count > IPA_RESOURCE_GROUP_MAX)
|
||||
return false;
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user