From: Hans de Goede <hdegoede@redhat.com>
To: Ricardo Ribalda <ribalda@chromium.org>,
Laurent Pinchart <laurent.pinchart@ideasonboard.com>,
Mauro Carvalho Chehab <mchehab@kernel.org>,
Guennadi Liakhovetski <guennadi.liakhovetski@intel.com>
Cc: linux-media@vger.kernel.org, linux-kernel@vger.kernel.org,
Mauro Carvalho Chehab <mchehab+samsung@kernel.org>
Subject: Re: [PATCH v4 4/5] media: uvcvideo: Make power management granular
Date: Mon, 3 Mar 2025 15:37:28 +0100 [thread overview]
Message-ID: <f9246e9e-3905-4bb2-9799-90677f9521de@redhat.com> (raw)
In-Reply-To: <20250226-uvc-granpower-ng-v4-4-3ec9be906048@chromium.org>
Hi,
On 26-Feb-25 15:23, Ricardo Ribalda wrote:
> Now that every ioctl takes care of their power management we can remove
> the "global" power management.
>
> Despite its size, this is a relatively big change. We hope that there
> are no size effects of it. If there are some specific devices that
> miss-behave, we can add a small quirk for them.
>
> This patch introduces a behavioral change for the uvc "trigger" button.
> It will not work unless the camera is streaming. We consider that this
> the most common (if not the only) usecase and therefore we do not consider
> it a regression.
You may want to expand this part of the commit message a bit and make it
clear that before the "trigger" button would work as long as an open has
/dev/video# open and now it only works when the camera is actually
streaming.
I agree that in practice this is not an issue since apps only open
the /dev/video# node for a longer period at a time (vs short open
for query/probe) when they actually want to stream.
Otherwise the patch looks good to me:
Reviewed-by: Hans de Goede <hdegoede@redhat.com>
Regards,
Hans
>
> Signed-off-by: Ricardo Ribalda <ribalda@chromium.org>
> ---
> drivers/media/usb/uvc/uvc_v4l2.c | 8 --------
> 1 file changed, 8 deletions(-)
>
> diff --git a/drivers/media/usb/uvc/uvc_v4l2.c b/drivers/media/usb/uvc/uvc_v4l2.c
> index 1c9ac72be58a..6af93e00b304 100644
> --- a/drivers/media/usb/uvc/uvc_v4l2.c
> +++ b/drivers/media/usb/uvc/uvc_v4l2.c
> @@ -652,7 +652,6 @@ static int uvc_v4l2_open(struct file *file)
> {
> struct uvc_streaming *stream;
> struct uvc_fh *handle;
> - int ret = 0;
>
> stream = video_drvdata(file);
> uvc_dbg(stream->dev, CALLS, "%s\n", __func__);
> @@ -662,12 +661,6 @@ static int uvc_v4l2_open(struct file *file)
> if (!handle)
> return -ENOMEM;
>
> - ret = uvc_pm_get(stream->dev);
> - if (ret) {
> - kfree(handle);
> - return ret;
> - }
> -
> v4l2_fh_init(&handle->vfh, &stream->vdev);
> v4l2_fh_add(&handle->vfh);
> handle->chain = stream->chain;
> @@ -701,7 +694,6 @@ static int uvc_v4l2_release(struct file *file)
> kfree(handle);
> file->private_data = NULL;
>
> - uvc_pm_put(stream->dev);
> return 0;
> }
>
>
next prev parent reply other threads:[~2025-03-03 14:37 UTC|newest]
Thread overview: 11+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-02-26 14:23 [PATCH v4 0/5] media: uvcvideo: Implement Granular Power Saving Ricardo Ribalda
2025-02-26 14:23 ` [PATCH v4 1/5] media: uvcvideo: Keep streaming state in the file handle Ricardo Ribalda
2025-03-03 14:07 ` Hans de Goede
2025-02-26 14:23 ` [PATCH v4 2/5] media: uvcvideo: Create uvc_pm_(get|put) functions Ricardo Ribalda
2025-03-03 14:26 ` Hans de Goede
2025-02-26 14:23 ` [PATCH v4 3/5] media: uvcvideo: Increase/decrease the PM counter per IOCTL Ricardo Ribalda
2025-03-03 14:34 ` Hans de Goede
2025-02-26 14:23 ` [PATCH v4 4/5] media: uvcvideo: Make power management granular Ricardo Ribalda
2025-03-03 14:37 ` Hans de Goede [this message]
2025-02-26 14:23 ` [PATCH v4 5/5] media: uvcvideo: Do not turn on the camera for some ioctls Ricardo Ribalda
2025-03-03 14:42 ` Hans de Goede
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=f9246e9e-3905-4bb2-9799-90677f9521de@redhat.com \
--to=hdegoede@redhat.com \
--cc=guennadi.liakhovetski@intel.com \
--cc=laurent.pinchart@ideasonboard.com \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-media@vger.kernel.org \
--cc=mchehab+samsung@kernel.org \
--cc=mchehab@kernel.org \
--cc=ribalda@chromium.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
all inboxes | Powered by JetHome®