mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-16 08:44:21 +08:00
ASoC: qcom: q6dsp: Fix an off-by-one in q6adm_alloc_copp()
[ Upstream commit673f58f62c
] find_first_zero_bit() returns MAX_COPPS_PER_PORT at max here. So 'idx' should be tested with ">=" or the test can't match. Fixes:7b20b2be51
("ASoC: qdsp6: q6adm: Add q6adm driver") Signed-off-by: Christophe JAILLET <christophe.jaillet@wanadoo.fr> Link: https://lore.kernel.org/r/0fca3271649736053eb9649d87e1ca01b056be40.1658394124.git.christophe.jaillet@wanadoo.fr Signed-off-by: Mark Brown <broonie@kernel.org> Signed-off-by: Sasha Levin <sashal@kernel.org>
This commit is contained in:
parent
2e1b17ec04
commit
509a5cb390
@ -217,7 +217,7 @@ static struct q6copp *q6adm_alloc_copp(struct q6adm *adm, int port_idx)
|
||||
idx = find_first_zero_bit(&adm->copp_bitmap[port_idx],
|
||||
MAX_COPPS_PER_PORT);
|
||||
|
||||
if (idx > MAX_COPPS_PER_PORT)
|
||||
if (idx >= MAX_COPPS_PER_PORT)
|
||||
return ERR_PTR(-EBUSY);
|
||||
|
||||
c = kzalloc(sizeof(*c), GFP_ATOMIC);
|
||||
|
Loading…
Reference in New Issue
Block a user