All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] media: imx-pxp: Initialize the spinlock prior to using it
@ 2021-10-07 13:56 Fabio Estevam
  2021-10-08 12:22 ` Philipp Zabel
  0 siblings, 1 reply; 2+ messages in thread
From: Fabio Estevam @ 2021-10-07 13:56 UTC (permalink / raw)
  To: p.zabel; +Cc: hverkuil-cisco, linux-media, Fabio Estevam

After devm_request_threaded_irq() is called there is a chance that an
interrupt may occur before the spinlock is initialized, which will trigger
a kernel oops.

To prevent that, move the initialization of the spinlock prior to
requesting the interrupts.

Fixes: 51abcf7fdb70 ("media: imx-pxp: add i.MX Pixel Pipeline driver")
Signed-off-by: Fabio Estevam <festevam@denx.de>
---
 drivers/media/platform/imx-pxp.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/drivers/media/platform/imx-pxp.c b/drivers/media/platform/imx-pxp.c
index acfc77f9d58f..7d1768ec7fcd 100644
--- a/drivers/media/platform/imx-pxp.c
+++ b/drivers/media/platform/imx-pxp.c
@@ -1693,6 +1693,8 @@ static int pxp_probe(struct platform_device *pdev)
 	if (irq < 0)
 		return irq;
 
+	spin_lock_init(&dev->irqlock);
+
 	ret = devm_request_threaded_irq(&pdev->dev, irq, NULL, pxp_irq_handler,
 			IRQF_ONESHOT, dev_name(&pdev->dev), dev);
 	if (ret < 0) {
@@ -1710,8 +1712,6 @@ static int pxp_probe(struct platform_device *pdev)
 		goto err_clk;
 	}
 
-	spin_lock_init(&dev->irqlock);
-
 	ret = v4l2_device_register(&pdev->dev, &dev->v4l2_dev);
 	if (ret)
 		goto err_clk;
-- 
2.25.1


^ permalink raw reply related	[flat|nested] 2+ messages in thread

* Re: [PATCH] media: imx-pxp: Initialize the spinlock prior to using it
  2021-10-07 13:56 [PATCH] media: imx-pxp: Initialize the spinlock prior to using it Fabio Estevam
@ 2021-10-08 12:22 ` Philipp Zabel
  0 siblings, 0 replies; 2+ messages in thread
From: Philipp Zabel @ 2021-10-08 12:22 UTC (permalink / raw)
  To: Fabio Estevam; +Cc: hverkuil-cisco, linux-media

Hi Fabio,

On Thu, 2021-10-07 at 10:56 -0300, Fabio Estevam wrote:
> After devm_request_threaded_irq() is called there is a chance that an
> interrupt may occur before the spinlock is initialized, which will trigger
> a kernel oops.
>
> To prevent that, move the initialization of the spinlock prior to
> requesting the interrupts.
> 
> Fixes: 51abcf7fdb70 ("media: imx-pxp: add i.MX Pixel Pipeline driver")
> Signed-off-by: Fabio Estevam <festevam@denx.de>
> ---
>  drivers/media/platform/imx-pxp.c | 4 ++--
>  1 file changed, 2 insertions(+), 2 deletions(-)
> 
> diff --git a/drivers/media/platform/imx-pxp.c b/drivers/media/platform/imx-pxp.c
> index acfc77f9d58f..7d1768ec7fcd 100644
> --- a/drivers/media/platform/imx-pxp.c
> +++ b/drivers/media/platform/imx-pxp.c
> @@ -1693,6 +1693,8 @@ static int pxp_probe(struct platform_device *pdev)
>  	if (irq < 0)
>  		return irq;
>  
> +	spin_lock_init(&dev->irqlock);
> +
>  	ret = devm_request_threaded_irq(&pdev->dev, irq, NULL, pxp_irq_handler,
>  			IRQF_ONESHOT, dev_name(&pdev->dev), dev);
>  	if (ret < 0) {
> @@ -1710,8 +1712,6 @@ static int pxp_probe(struct platform_device *pdev)
>  		goto err_clk;
>  	}
>  
> -	spin_lock_init(&dev->irqlock);
> -
>  	ret = v4l2_device_register(&pdev->dev, &dev->v4l2_dev);
>  	if (ret)
>  		goto err_clk;

Reviewed-by: Philipp Zabel <p.zabel@pengutronix.de>

regards
Philipp

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2021-10-08 12:22 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-10-07 13:56 [PATCH] media: imx-pxp: Initialize the spinlock prior to using it Fabio Estevam
2021-10-08 12:22 ` Philipp Zabel

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.