* [PATCH v2] ASoC: SDCA: bug fix while parsing mipi-sdca-control-cn-list
@ 2025-11-10 15:26 Niranjan H Y
2025-11-10 16:17 ` Charles Keepax
` (2 more replies)
0 siblings, 3 replies; 4+ messages in thread
From: Niranjan H Y @ 2025-11-10 15:26 UTC (permalink / raw)
To: alsa-devel
Cc: broonie, ckeepax, mstrozek, yung-chuan.liao, linux-sound,
lgirdwood, perex, tiwai, cezary.rojewski, peter.ujfalusi,
ranjani.sridharan, kai.vehmanen, pierre-louis.bossart, navada,
shenghao-ding, v-hampiholi, baojun.xu, dan.carpenter,
Niranjan H Y
"struct sdca_control" declares "values" field as integer array.
But the memory allocated to it is of char array. This causes
crash for sdca_parse_function API. This patch addresses the
issue by allocating correct data size.
Signed-off-by: Niranjan H Y <niranjan.hy@ti.com>
---
v2:
- use kcalloc instead of kzalloc
---
sound/soc/sdca/sdca_functions.c | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/sound/soc/sdca/sdca_functions.c b/sound/soc/sdca/sdca_functions.c
index b2e3fab9b..49b98fe2d 100644
--- a/sound/soc/sdca/sdca_functions.c
+++ b/sound/soc/sdca/sdca_functions.c
@@ -950,7 +950,8 @@ static int find_sdca_entity_control(struct device *dev, struct sdca_entity *enti
return ret;
}
- control->values = devm_kzalloc(dev, hweight64(control->cn_list), GFP_KERNEL);
+ control->values = devm_kcalloc(dev, hweight64(control->cn_list),
+ sizeof(int), GFP_KERNEL);
if (!control->values)
return -ENOMEM;
--
2.25.1
^ permalink raw reply related [flat|nested] 4+ messages in thread* Re: [PATCH v2] ASoC: SDCA: bug fix while parsing mipi-sdca-control-cn-list
2025-11-10 15:26 [PATCH v2] ASoC: SDCA: bug fix while parsing mipi-sdca-control-cn-list Niranjan H Y
@ 2025-11-10 16:17 ` Charles Keepax
2025-11-10 23:39 ` Mark Brown
2025-11-17 14:42 ` Dan Carpenter
2 siblings, 0 replies; 4+ messages in thread
From: Charles Keepax @ 2025-11-10 16:17 UTC (permalink / raw)
To: Niranjan H Y
Cc: alsa-devel, broonie, mstrozek, yung-chuan.liao, linux-sound,
lgirdwood, perex, tiwai, cezary.rojewski, peter.ujfalusi,
ranjani.sridharan, kai.vehmanen, pierre-louis.bossart, navada,
shenghao-ding, v-hampiholi, baojun.xu, dan.carpenter
On Mon, Nov 10, 2025 at 08:56:46PM +0530, Niranjan H Y wrote:
> "struct sdca_control" declares "values" field as integer array.
> But the memory allocated to it is of char array. This causes
> crash for sdca_parse_function API. This patch addresses the
> issue by allocating correct data size.
>
> Signed-off-by: Niranjan H Y <niranjan.hy@ti.com>
> ---
Reviewed-by: Charles Keepax <ckeepax@opensource.cirrus.com>
Thanks,
Charles
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH v2] ASoC: SDCA: bug fix while parsing mipi-sdca-control-cn-list
2025-11-10 15:26 [PATCH v2] ASoC: SDCA: bug fix while parsing mipi-sdca-control-cn-list Niranjan H Y
2025-11-10 16:17 ` Charles Keepax
@ 2025-11-10 23:39 ` Mark Brown
2025-11-17 14:42 ` Dan Carpenter
2 siblings, 0 replies; 4+ messages in thread
From: Mark Brown @ 2025-11-10 23:39 UTC (permalink / raw)
To: alsa-devel, Niranjan H Y
Cc: ckeepax, mstrozek, yung-chuan.liao, linux-sound, lgirdwood, perex,
tiwai, cezary.rojewski, peter.ujfalusi, ranjani.sridharan,
kai.vehmanen, pierre-louis.bossart, navada, shenghao-ding,
v-hampiholi, baojun.xu, dan.carpenter
On Mon, 10 Nov 2025 20:56:46 +0530, Niranjan H Y wrote:
> "struct sdca_control" declares "values" field as integer array.
> But the memory allocated to it is of char array. This causes
> crash for sdca_parse_function API. This patch addresses the
> issue by allocating correct data size.
>
>
Applied to
https://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git for-next
Thanks!
[1/1] ASoC: SDCA: bug fix while parsing mipi-sdca-control-cn-list
commit: eb2d6774cc0d9d6ab8f924825695a85c14b2e0c2
All being well this means that it will be integrated into the linux-next
tree (usually sometime in the next 24 hours) and sent to Linus during
the next merge window (or sooner if it is a bug fix), however if
problems are discovered then the patch may be dropped or reverted.
You may get further e-mails resulting from automated or manual testing
and review of the tree, please engage with people reporting problems and
send followup patches addressing any issues that are reported if needed.
If any updates are required or you are submitting further changes they
should be sent as incremental updates against current git, existing
patches will not be replaced.
Please add any relevant lists and maintainers to the CCs when replying
to this mail.
Thanks,
Mark
^ permalink raw reply [flat|nested] 4+ messages in thread* Re: [PATCH v2] ASoC: SDCA: bug fix while parsing mipi-sdca-control-cn-list
2025-11-10 15:26 [PATCH v2] ASoC: SDCA: bug fix while parsing mipi-sdca-control-cn-list Niranjan H Y
2025-11-10 16:17 ` Charles Keepax
2025-11-10 23:39 ` Mark Brown
@ 2025-11-17 14:42 ` Dan Carpenter
2 siblings, 0 replies; 4+ messages in thread
From: Dan Carpenter @ 2025-11-17 14:42 UTC (permalink / raw)
To: Niranjan H Y
Cc: alsa-devel, broonie, ckeepax, mstrozek, yung-chuan.liao,
linux-sound, lgirdwood, perex, tiwai, cezary.rojewski,
peter.ujfalusi, ranjani.sridharan, kai.vehmanen,
pierre-louis.bossart, navada, shenghao-ding, v-hampiholi,
baojun.xu
On Mon, Nov 10, 2025 at 08:56:46PM +0530, Niranjan H Y wrote:
> "struct sdca_control" declares "values" field as integer array.
> But the memory allocated to it is of char array. This causes
> crash for sdca_parse_function API. This patch addresses the
> issue by allocating correct data size.
>
> Signed-off-by: Niranjan H Y <niranjan.hy@ti.com>
> ---
Looks good.
Fixes: 50a479527ef0 ("ASoC: SDCA: Add support for -cn- value properties")
regards,
dan carpenter
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2025-11-20 16:51 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-11-10 15:26 [PATCH v2] ASoC: SDCA: bug fix while parsing mipi-sdca-control-cn-list Niranjan H Y
2025-11-10 16:17 ` Charles Keepax
2025-11-10 23:39 ` Mark Brown
2025-11-17 14:42 ` Dan Carpenter
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).