[PATCH] firmware: cs_dsp: Move lockdep asserts to avoid potential null pointer
Charles Keepax
ckeepax at opensource.cirrus.com
Tue Nov 30 11:28:42 CET 2021
Move the lockdep asserts until after the ctl pointer has been checked
for NULL, to avoid potentially NULL pointer dereferences.
Fixes: fb2f364fb5b9 ("firmware: cs_dsp: Add lockdep asserts to interface functions")
Reported-by: kernel test robot <lkp at intel.com>
Reported-by: Dan Carpenter <dan.carpenter at oracle.com>
Signed-off-by: Charles Keepax <ckeepax at opensource.cirrus.com>
---
drivers/firmware/cirrus/cs_dsp.c | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/drivers/firmware/cirrus/cs_dsp.c b/drivers/firmware/cirrus/cs_dsp.c
index 3814cbba0a544..5af8171d6cedf 100644
--- a/drivers/firmware/cirrus/cs_dsp.c
+++ b/drivers/firmware/cirrus/cs_dsp.c
@@ -759,11 +759,11 @@ int cs_dsp_coeff_write_ctrl(struct cs_dsp_coeff_ctl *ctl,
{
int ret = 0;
- lockdep_assert_held(&ctl->dsp->pwr_lock);
-
if (!ctl)
return -ENOENT;
+ lockdep_assert_held(&ctl->dsp->pwr_lock);
+
if (len + off * sizeof(u32) > ctl->len)
return -EINVAL;
@@ -827,11 +827,11 @@ int cs_dsp_coeff_read_ctrl(struct cs_dsp_coeff_ctl *ctl,
{
int ret = 0;
- lockdep_assert_held(&ctl->dsp->pwr_lock);
-
if (!ctl)
return -ENOENT;
+ lockdep_assert_held(&ctl->dsp->pwr_lock);
+
if (len + off * sizeof(u32) > ctl->len)
return -EINVAL;
--
2.11.0
More information about the Alsa-devel
mailing list