From: Sylwester Nawrocki <s.nawrocki@samsung.com>
To: Philipp Zabel <p.zabel@pengutronix.de>
Cc: Mauro Carvalho Chehab <mchehab@osg.samsung.com>,
Pawel Osciak <pawel@osciak.com>,
Marek Szyprowski <m.szyprowski@samsung.com>,
Kyungmin Park <kyungmin.park@samsung.com>,
Steven Rostedt <rostedt@goodmis.org>,
Hans Verkuil <hans.verkuil@cisco.com>,
kamil@wypas.org, linux-media@vger.kernel.org,
kernel@pengutronix.de
Subject: Re: [PATCH 1/2] [media] v4l2-mem2mem: set the queue owner field just as vb2_ioctl_reqbufs does
Date: Thu, 25 Jun 2015 15:11:09 +0200 [thread overview]
Message-ID: <558BFDED.1090006@samsung.com> (raw)
In-Reply-To: <1435226487-24863-1-git-send-email-p.zabel@pengutronix.de>
Hello Philipp,
On 25/06/15 12:01, Philipp Zabel wrote:
> Signed-off-by: Philipp Zabel <p.zabel@pengutronix.de>
> ---
> drivers/media/v4l2-core/v4l2-mem2mem.c | 9 ++++++++-
> 1 file changed, 8 insertions(+), 1 deletion(-)
>
> diff --git a/drivers/media/v4l2-core/v4l2-mem2mem.c b/drivers/media/v4l2-core/v4l2-mem2mem.c
> index dc853e5..511caaa 100644
> --- a/drivers/media/v4l2-core/v4l2-mem2mem.c
> +++ b/drivers/media/v4l2-core/v4l2-mem2mem.c
> @@ -357,9 +357,16 @@ int v4l2_m2m_reqbufs(struct file *file, struct v4l2_m2m_ctx *m2m_ctx,
> struct v4l2_requestbuffers *reqbufs)
> {
> struct vb2_queue *vq;
> + int ret;
>
> vq = v4l2_m2m_get_vq(m2m_ctx, reqbufs->type);
> - return vb2_reqbufs(vq, reqbufs);
> + ret = vb2_reqbufs(vq, reqbufs);
> + /* If count == 0, then the owner has released all buffers and he
> + is no longer owner of the queue. Otherwise we have a new owner. */
> + if (ret == 0)
> + vq->owner = reqbufs->count ? file->private_data : NULL;
> +
> + return ret;
> }
How about modifying v4l2_m2m_ioctl_reqbufs() instead ?
Moreover, does it really makes sense when a new m2m device context
is being created during each video device open()?
Regards,
Sylwester
next prev parent reply other threads:[~2015-06-25 13:11 UTC|newest]
Thread overview: 11+ messages / expand[flat|nested] mbox.gz Atom feed top
2015-06-25 10:01 [PATCH 1/2] [media] v4l2-mem2mem: set the queue owner field just as vb2_ioctl_reqbufs does Philipp Zabel
2015-06-25 10:01 ` [PATCH 2/2] [media] videobuf2: add trace events Philipp Zabel
2015-06-25 13:07 ` Steven Rostedt
2015-06-25 16:33 ` Philipp Zabel
2015-06-25 13:11 ` Sylwester Nawrocki [this message]
2015-06-25 15:12 ` [PATCH 1/2] [media] v4l2-mem2mem: set the queue owner field just as vb2_ioctl_reqbufs does Philipp Zabel
2015-06-26 8:28 ` Sylwester Nawrocki
2015-06-26 9:02 ` Philipp Zabel
2015-06-26 9:35 ` Sylwester Nawrocki
2015-06-25 14:10 ` Kamil Debski
2015-06-25 16:34 ` Philipp Zabel
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=558BFDED.1090006@samsung.com \
--to=s.nawrocki@samsung.com \
--cc=hans.verkuil@cisco.com \
--cc=kamil@wypas.org \
--cc=kernel@pengutronix.de \
--cc=kyungmin.park@samsung.com \
--cc=linux-media@vger.kernel.org \
--cc=m.szyprowski@samsung.com \
--cc=mchehab@osg.samsung.com \
--cc=p.zabel@pengutronix.de \
--cc=pawel@osciak.com \
--cc=rostedt@goodmis.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