Patch "media: atomisp: Only set default_run_mode on first open of a stream/asd" has been added to the 6.1-stable tree

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



This is a note to let you know that I've just added the patch titled

    media: atomisp: Only set default_run_mode on first open of a stream/asd

to the 6.1-stable tree which can be found at:
    http://www.kernel.org/git/?p=linux/kernel/git/stable/stable-queue.git;a=summary

The filename of the patch is:
     media-atomisp-only-set-default_run_mode-on-first-ope.patch
and it can be found in the queue-6.1 subdirectory.

If you, or anyone else, feels it should not be added to the stable tree,
please let <stable@xxxxxxxxxxxxxxx> know about it.



commit 2bd0cd421bec9ea5cbd93c154f757e711b2c6680
Author: Hans de Goede <hdegoede@xxxxxxxxxx>
Date:   Wed Dec 28 23:11:47 2022 +0100

    media: atomisp: Only set default_run_mode on first open of a stream/asd
    
    [ Upstream commit 60ec70a71a9f9975a5d2dd4a7d97c20da0e41976 ]
    
    Calling v4l2_ctrl_s_ctrl(asd->run_mode, pipe->default_run_mode) when
    the stream is already active (through another /dev/video# node) causes
    the stream to stop.
    
    Move the call to set the default run-mode so that it is only done
    on the first open of one of the 4 /dev/video# nodes of one of
    the 2 streams (atomisp-sub-devices / asd-s).
    
    Fixes: 2c45e343c581 ("media: atomisp: set per-device's default mode")
    Reviewed-by: Andy Shevchenko <andy@xxxxxxxxxx>
    Signed-off-by: Hans de Goede <hdegoede@xxxxxxxxxx>
    Signed-off-by: Mauro Carvalho Chehab <mchehab@xxxxxxxxxx>
    Signed-off-by: Sasha Levin <sashal@xxxxxxxxxx>

diff --git a/drivers/staging/media/atomisp/pci/atomisp_fops.c b/drivers/staging/media/atomisp/pci/atomisp_fops.c
index 84a84e0cdeef7..5fa2e2596a818 100644
--- a/drivers/staging/media/atomisp/pci/atomisp_fops.c
+++ b/drivers/staging/media/atomisp/pci/atomisp_fops.c
@@ -741,13 +741,13 @@ static int atomisp_open(struct file *file)
 		goto done;
 
 	atomisp_subdev_init_struct(asd);
+	/* Ensure that a mode is set */
+	v4l2_ctrl_s_ctrl(asd->run_mode, pipe->default_run_mode);
 
 done:
 	pipe->users++;
 	mutex_unlock(&isp->mutex);
 
-	/* Ensure that a mode is set */
-	v4l2_ctrl_s_ctrl(asd->run_mode, pipe->default_run_mode);
 
 	return 0;
 



[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Index of Archives]     [Linux USB Devel]     [Linux Audio Users]     [Yosemite News]     [Linux Kernel]     [Linux SCSI]

  Powered by Linux