Re: [PATCH 54/65] media: hantro: Access v4l2_fh from file->private_data
Paul Kocialkowski <[email protected]> Mon, 4 Aug 2025 23:59:25 +0200
| Newsgroups | gmane.linux.ports.tegra,gmane.linux.drivers.video-input-infrastructure,gmane.linux.kernel,gmane.linux.documentation,gmane.linux.ports.arm.kernel,gmane.linux.ports.arm.mediatek,gmane.linux.kernel.renesas-soc,gmane.linux.ports.arm.msm,gmane.linux.kernel.samsung-soc,gmane.linux.usb.general,gmane.linux.ports.arm.rockchip,gmane.comp.video.mjpeg.user |
|---|---|
| Message-ID | <aJEtPd_-IzQZVBfl@shepard> |
--/6X2y1A/1uo421sv Content-Type: text/plain; charset=utf-8 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable Hi, Very nice cleanup, glad to see this abstracted away from drivers! Reviewed-by: Paul Kocialkowski <[email protected]> All the best, Paul On Sat 02 Aug 25, 11:23, Jacopo Mondi wrote: > From: Laurent Pinchart <laurent.pinchart-ryLnwIuWjnjg/[email protected]> >=20 > 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. >=20 > 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. >=20 > While at it remove the only left user of fh_to_ctx() and remove > the macro completely. >=20 > Signed-off-by: Laurent Pinchart <laurent.pinchart-ryLnwIuWjnjg/[email protected]> > Signed-off-by: Jacopo Mondi <jacopo.mondi-ryLnwIuWjnjg/[email protected]> > --- > drivers/media/platform/verisilicon/hantro.h | 5 ----- > drivers/media/platform/verisilicon/hantro_v4l2.c | 22 +++++++++++-------= ---- > 2 files changed, 11 insertions(+), 16 deletions(-) >=20 > diff --git a/drivers/media/platform/verisilicon/hantro.h b/drivers/media/= platform/verisilicon/hantro.h > index 0f10714f1953945472e11d8c8ad87f8ec009b39f..e0fdc4535b2d73c5260057b0a= 89aee67a4732dd2 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) > =20 > /* 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/m= edia/platform/verisilicon/hantro_v4l2.c > index 7c3515cf7d64a090adfb8d8aff368f9a617f8c8a..6bcd892e7bb49c654aae58416= 64d68c1692064bd 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 *p= riv, > static int vidioc_enum_framesizes(struct file *file, void *priv, > struct v4l2_frmsizeenum *fsize) > { > - struct hantro_ctx *ctx =3D fh_to_ctx(priv); > + struct hantro_ctx *ctx =3D file_to_ctx(file); > const struct hantro_fmt *fmt; > =20 > fmt =3D hantro_find_format(ctx, fsize->pixel_format); > @@ -217,7 +217,7 @@ static int vidioc_enum_fmt(struct file *file, void *p= riv, > struct v4l2_fmtdesc *f, bool capture) > =20 > { > - struct hantro_ctx *ctx =3D fh_to_ctx(priv); > + struct hantro_ctx *ctx =3D file_to_ctx(file); > const struct hantro_fmt *fmt, *formats; > unsigned int num_fmts, i, j =3D 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 =3D &f->fmt.pix_mp; > - struct hantro_ctx *ctx =3D fh_to_ctx(priv); > + struct hantro_ctx *ctx =3D file_to_ctx(file); > =20 > vpu_debug(4, "f->type =3D %d\n", f->type); > =20 > @@ -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 =3D &f->fmt.pix_mp; > - struct hantro_ctx *ctx =3D fh_to_ctx(priv); > + struct hantro_ctx *ctx =3D file_to_ctx(file); > =20 > vpu_debug(4, "f->type =3D %d\n", f->type); > =20 > @@ -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); > } > =20 > 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); > } > =20 > static void > @@ -648,19 +648,19 @@ static int hantro_set_fmt_cap(struct hantro_ctx *ct= x, > static int > vidioc_s_fmt_out_mplane(struct file *file, void *priv, struct v4l2_forma= t *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_AUT= O_POSTPROC); > } > =20 > static int > vidioc_s_fmt_cap_mplane(struct file *file, void *priv, struct v4l2_forma= t *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); > } > =20 > static int vidioc_g_selection(struct file *file, void *priv, > struct v4l2_selection *sel) > { > - struct hantro_ctx *ctx =3D fh_to_ctx(priv); > + struct hantro_ctx *ctx =3D file_to_ctx(file); > =20 > /* 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 =3D fh_to_ctx(priv); > + struct hantro_ctx *ctx =3D file_to_ctx(file); > struct v4l2_rect *rect =3D &sel->r; > struct vb2_queue *vq; > =20 > @@ -738,7 +738,7 @@ static const struct v4l2_event hantro_eos_event =3D { > static int vidioc_encoder_cmd(struct file *file, void *priv, > struct v4l2_encoder_cmd *ec) > { > - struct hantro_ctx *ctx =3D fh_to_ctx(priv); > + struct hantro_ctx *ctx =3D file_to_ctx(file); > int ret; > =20 > ret =3D v4l2_m2m_ioctl_try_encoder_cmd(file, priv, ec); >=20 > --=20 > 2.49.0 >=20 --=20 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. --/6X2y1A/1uo421sv Content-Type: application/pgp-signature; name=signature.asc -----BEGIN PGP SIGNATURE----- iQIzBAEBCgAdFiEEAbcMXZQMtj1fphLChP3B6o/ulQwFAmiRLT0ACgkQhP3B6o/u lQzrNQ//exzkeWe4akWNjtSBn1Bl653EfO7v/aMS3Y3CCAKwErQrOulake7C7uWp FWmge5iMC9U/bJjnJn6lW9WfRnVUXmp5akqOeWHMSQNTJOKjpKKu2vbmpqvYuw8/ EZ2UXBGtg72QjRVuzMJ+SE6pK4JPFM8d4TgJxzk49W5ABja+ipgEbdccHOOiSC6+ uFVnPmJI1kOcxLhh4CLeJsq2rbT56LiAWFj/BcsoRnz0+2o3/E8FL3f2KG5T4/Hj 6hZjsZySX3X+bwDVFBhMXv1d/ecgXPjUrdhj2kM+v50DMAu1jbz9aNM1kFzxA01q 9uh4AeSC65gQ8YnjC8mUo9BH/9JWzvf8SsGLTqLfDxkaHZcs5dIfqvNkmTs+sAM9 syJ2hplhAYUk20Pn/AAda2drxoqYYnUjt6R+UOaVcaJMLIr2z8CS60rWr2+Uwhpd njA1mv/Zih/rq8uNN8l+j4DAQabNh8g/LPeroTO0/eF5WsPTvZM/BKtKrJgoy3Rv E+C0EwaEiCNxZH9vUSmqw/DkWRX2CBe6NoDzUGwjWGJeSAjSCgbklwdyUuhKaJq0 MTDz/VZ2xLIMFm8RRFfYBjKohUK+RXA2OHHst4bQGq0rvjqtJo9yd3UzIFz+ww+L VpD0vh+lndjqAQHcpftyzMcgB6AVADDZydaRUFdLGm9OHaeZA5k= =4/Uq -----END PGP SIGNATURE----- --/6X2y1A/1uo421sv--