mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2026-09-22 09:34:56 +02:00
ASoC: SOF: ipc4-topology: Allow bytes controls without initial payload
commitd40a198e2bupstream. It is unexpected, but allowed to have no initial payload for a bytes control and the code is prepared to handle this case, but the size check missed this corner case. Update the check for minimal size to allow the initial size to be 0. Cc: stable@vger.kernel.org Fixes:a653820700("ASoC: SOF: ipc4-topology: Correct the allocation size for bytes controls") Signed-off-by: Peter Ujfalusi <peter.ujfalusi@linux.intel.com> Reviewed-by: Bard Liao <yung-chuan.liao@linux.intel.com> Reviewed-by: Liam Girdwood <liam.r.girdwood@intel.com> Reviewed-by: Seppo Ingalsuo <seppo.ingalsuo@linux.intel.com> Reviewed-by: Kai Vehmanen <kai.vehmanen@linux.intel.com> Link: https://patch.msgid.link/20260326075618.1603-1-peter.ujfalusi@linux.intel.com Signed-off-by: Mark Brown <broonie@kernel.org> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
a2842de685
commit
9e7f353710
@@ -2203,7 +2203,7 @@ static int sof_ipc4_control_load_bytes(struct snd_sof_dev *sdev, struct snd_sof_
|
||||
return -EINVAL;
|
||||
}
|
||||
|
||||
if (scontrol->priv_size < sizeof(struct sof_abi_hdr)) {
|
||||
if (scontrol->priv_size && scontrol->priv_size < sizeof(struct sof_abi_hdr)) {
|
||||
dev_err(sdev->dev,
|
||||
"bytes control %s initial data size %zu is insufficient.\n",
|
||||
scontrol->name, scontrol->priv_size);
|
||||
|
||||
Reference in New Issue
Block a user