Hi,
Very nice cleanup, glad to see this abstracted away from drivers!
Reviewed-by: Paul Kocialkowski <paulk@sys-base.io>
All the best,
Paul
On Sat 02 Aug 25, 11:23, Jacopo Mondi wrote:
> From: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
>
> To prepare for the introduction of video_device_state as second argument
> of the v4l2_ioctl_ops handler, access the v4l2_fh from
> file->private_data instead of using void *priv.
>
> The file->private_data is initialized to point to the v4l2_fh
> by the usage of v4l2_fh_init() in the v4l2_file_operations.open()
> handler.
>
> While at it remove the only left user of fh_to_ctx() and remove
> the macro completely.
>
> Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
> Signed-off-by: Jacopo Mondi <jacopo.mondi@ideasonboard.com>
> ---
> drivers/media/platform/verisilicon/hantro.h | 5 -----
> drivers/media/platform/verisilicon/hantro_v4l2.c | 22 +++++++++++-----------
> 2 files changed, 11 insertions(+), 16 deletions(-)
>
> diff --git a/drivers/media/platform/verisilicon/hantro.h b/drivers/media/platform/verisilicon/hantro.h
> index 0f10714f1953945472e11d8c8ad87f8ec009b39f..e0fdc4535b2d73c5260057b0a89aee67a4732dd2 100644
> --- a/drivers/media/platform/verisilicon/hantro.h
> +++ b/drivers/media/platform/verisilicon/hantro.h
> @@ -382,11 +382,6 @@ extern int hantro_debug;
> pr_err("%s:%d: " fmt, __func__, __LINE__, ##args)
>
> /* Structure access helpers. */
> -static __always_inline struct hantro_ctx *fh_to_ctx(struct v4l2_fh *fh)
> -{
> - return container_of(fh, struct hantro_ctx, fh);
> -}
> -
> static __always_inline struct hantro_ctx *file_to_ctx(struct file *filp)
> {
> return container_of(file_to_v4l2_fh(filp), struct hantro_ctx, fh);
> diff --git a/drivers/media/platform/verisilicon/hantro_v4l2.c b/drivers/media/platform/verisilicon/hantro_v4l2.c
> index 7c3515cf7d64a090adfb8d8aff368f9a617f8c8a..6bcd892e7bb49c654aae5841664d68c1692064bd 100644
> --- a/drivers/media/platform/verisilicon/hantro_v4l2.c
> +++ b/drivers/media/platform/verisilicon/hantro_v4l2.c
> @@ -185,7 +185,7 @@ static int vidioc_querycap(struct file *file, void *priv,
> static int vidioc_enum_framesizes(struct file *file, void *priv,
> struct v4l2_frmsizeenum *fsize)
> {
> - struct hantro_ctx *ctx = fh_to_ctx(priv);
> + struct hantro_ctx *ctx = file_to_ctx(file);
> const struct hantro_fmt *fmt;
>
> fmt = hantro_find_format(ctx, fsize->pixel_format);
> @@ -217,7 +217,7 @@ static int vidioc_enum_fmt(struct file *file, void *priv,
> struct v4l2_fmtdesc *f, bool capture)
>
> {
> - struct hantro_ctx *ctx = fh_to_ctx(priv);
> + struct hantro_ctx *ctx = file_to_ctx(file);
> const struct hantro_fmt *fmt, *formats;
> unsigned int num_fmts, i, j = 0;
> bool skip_mode_none, enum_all_formats;
> @@ -297,7 +297,7 @@ static int vidioc_g_fmt_out_mplane(struct file *file, void *priv,
> struct v4l2_format *f)
> {
> struct v4l2_pix_format_mplane *pix_mp = &f->fmt.pix_mp;
> - struct hantro_ctx *ctx = fh_to_ctx(priv);
> + struct hantro_ctx *ctx = file_to_ctx(file);
>
> vpu_debug(4, "f->type = %d\n", f->type);
>
> @@ -310,7 +310,7 @@ static int vidioc_g_fmt_cap_mplane(struct file *file, void *priv,
> struct v4l2_format *f)
> {
> struct v4l2_pix_format_mplane *pix_mp = &f->fmt.pix_mp;
> - struct hantro_ctx *ctx = fh_to_ctx(priv);
> + struct hantro_ctx *ctx = file_to_ctx(file);
>
> vpu_debug(4, "f->type = %d\n", f->type);
>
> @@ -398,13 +398,13 @@ static int hantro_try_fmt(const struct hantro_ctx *ctx,
> static int vidioc_try_fmt_cap_mplane(struct file *file, void *priv,
> struct v4l2_format *f)
> {
> - return hantro_try_fmt(fh_to_ctx(priv), &f->fmt.pix_mp, f->type);
> + return hantro_try_fmt(file_to_ctx(file), &f->fmt.pix_mp, f->type);
> }
>
> static int vidioc_try_fmt_out_mplane(struct file *file, void *priv,
> struct v4l2_format *f)
> {
> - return hantro_try_fmt(fh_to_ctx(priv), &f->fmt.pix_mp, f->type);
> + return hantro_try_fmt(file_to_ctx(file), &f->fmt.pix_mp, f->type);
> }
>
> static void
> @@ -648,19 +648,19 @@ static int hantro_set_fmt_cap(struct hantro_ctx *ctx,
> static int
> vidioc_s_fmt_out_mplane(struct file *file, void *priv, struct v4l2_format *f)
> {
> - return hantro_set_fmt_out(fh_to_ctx(priv), &f->fmt.pix_mp, HANTRO_AUTO_POSTPROC);
> + return hantro_set_fmt_out(file_to_ctx(file), &f->fmt.pix_mp, HANTRO_AUTO_POSTPROC);
> }
>
> static int
> vidioc_s_fmt_cap_mplane(struct file *file, void *priv, struct v4l2_format *f)
> {
> - return hantro_set_fmt_cap(fh_to_ctx(priv), &f->fmt.pix_mp);
> + return hantro_set_fmt_cap(file_to_ctx(file), &f->fmt.pix_mp);
> }
>
> static int vidioc_g_selection(struct file *file, void *priv,
> struct v4l2_selection *sel)
> {
> - struct hantro_ctx *ctx = fh_to_ctx(priv);
> + struct hantro_ctx *ctx = file_to_ctx(file);
>
> /* Crop only supported on source. */
> if (!ctx->is_encoder ||
> @@ -691,7 +691,7 @@ static int vidioc_g_selection(struct file *file, void *priv,
> static int vidioc_s_selection(struct file *file, void *priv,
> struct v4l2_selection *sel)
> {
> - struct hantro_ctx *ctx = fh_to_ctx(priv);
> + struct hantro_ctx *ctx = file_to_ctx(file);
> struct v4l2_rect *rect = &sel->r;
> struct vb2_queue *vq;
>
> @@ -738,7 +738,7 @@ static const struct v4l2_event hantro_eos_event = {
> static int vidioc_encoder_cmd(struct file *file, void *priv,
> struct v4l2_encoder_cmd *ec)
> {
> - struct hantro_ctx *ctx = fh_to_ctx(priv);
> + struct hantro_ctx *ctx = file_to_ctx(file);
> int ret;
>
> ret = v4l2_m2m_ioctl_try_encoder_cmd(file, priv, ec);
>
> --
> 2.49.0
>
--
Paul Kocialkowski,
Independent contractor - sys-base - https://www.sys-base.io/
Free software developer - https://www.paulk.fr/
Expert in multimedia, graphics and embedded hardware support with Linux.