All of lore.kernel.org
 help / color / mirror / Atom feed
From: Tomi Valkeinen <tomi.valkeinen@ideasonboard.com>
To: Hans Verkuil <hverkuil-cisco@xs4all.nl>,
	linux-media@vger.kernel.org, sakari.ailus@linux.intel.com,
	Jacopo Mondi <jacopo+renesas@jmondi.org>,
	Laurent Pinchart <laurent.pinchart@ideasonboard.com>,
	niklas.soderlund+renesas@ragnatech.se
Cc: Mauro Carvalho Chehab <mchehab@kernel.org>,
	Pratyush Yadav <p.yadav@ti.com>
Subject: Re: [PATCH v9 04/36] media: subdev: add subdev state locking
Date: Thu, 4 Nov 2021 13:11:19 +0200	[thread overview]
Message-ID: <49077a07-1188-0ef3-d131-acbe04d7a2c6@ideasonboard.com> (raw)
In-Reply-To: <5d5bb6b3-cb89-5d20-59cf-e5ce9cfec6b1@xs4all.nl>

On 12/10/2021 17:36, Hans Verkuil wrote:
> On 05/10/2021 10:57, Tomi Valkeinen wrote:
>> The V4L2 subdevs have managed without centralized locking for the state
>> (previously pad_config), as the TRY state is supposedly safe (although I
>> believe two TRY ioctls for the same fd would race), and the ACTIVE
>> state, and its locking, is managed by the drivers internally.
>>
>> We now have ACTIVE state in a centralized position, and need locking.
>> Strictly speaking the locking is only needed for new drivers that use
>> the new state, as the current drivers continue behaving as they used to.
>>
>> Add a mutex to the struct v4l2_subdev_state, along with a few helper
>> functions for locking/unlocking.
>>
>> Signed-off-by: Tomi Valkeinen <tomi.valkeinen@ideasonboard.com>
>> ---
>>   drivers/media/platform/rcar-vin/rcar-v4l2.c |  3 +-
>>   drivers/media/platform/vsp1/vsp1_entity.c   |  4 +-
>>   drivers/media/v4l2-core/v4l2-subdev.c       | 38 +++++++++++++---
>>   drivers/staging/media/tegra-video/vi.c      |  4 +-
>>   include/media/v4l2-subdev.h                 | 49 ++++++++++++++++++++-
>>   5 files changed, 88 insertions(+), 10 deletions(-)
>>
>> diff --git a/drivers/media/platform/rcar-vin/rcar-v4l2.c b/drivers/media/platform/rcar-vin/rcar-v4l2.c
>> index ba1d16ab1651..e6bd94d63e4f 100644
>> --- a/drivers/media/platform/rcar-vin/rcar-v4l2.c
>> +++ b/drivers/media/platform/rcar-vin/rcar-v4l2.c
>> @@ -244,6 +244,7 @@ static int rvin_try_format(struct rvin_dev *vin, u32 which,
>>   {
>>   	struct v4l2_subdev *sd = vin_to_source(vin);
>>   	struct v4l2_subdev_state *sd_state;
>> +	static struct lock_class_key key;
>>   	struct v4l2_subdev_format format = {
>>   		.which = which,
>>   		.pad = vin->parallel.source_pad,
>> @@ -252,7 +253,7 @@ static int rvin_try_format(struct rvin_dev *vin, u32 which,
>>   	u32 width, height;
>>   	int ret;
>>   
>> -	sd_state = __v4l2_subdev_state_alloc(sd);
>> +	sd_state = __v4l2_subdev_state_alloc(sd, "rvin:state->lock", &key);
>>   	if (IS_ERR(sd_state))
>>   		return PTR_ERR(sd_state);
>>   
>> diff --git a/drivers/media/platform/vsp1/vsp1_entity.c b/drivers/media/platform/vsp1/vsp1_entity.c
>> index 869cadc1468d..e607c3ae2520 100644
>> --- a/drivers/media/platform/vsp1/vsp1_entity.c
>> +++ b/drivers/media/platform/vsp1/vsp1_entity.c
>> @@ -613,6 +613,7 @@ int vsp1_entity_init(struct vsp1_device *vsp1, struct vsp1_entity *entity,
>>   		     const char *name, unsigned int num_pads,
>>   		     const struct v4l2_subdev_ops *ops, u32 function)
>>   {
>> +	static struct lock_class_key key;
>>   	struct v4l2_subdev *subdev;
>>   	unsigned int i;
>>   	int ret;
>> @@ -675,7 +676,8 @@ int vsp1_entity_init(struct vsp1_device *vsp1, struct vsp1_entity *entity,
>>   	 * Allocate the pad configuration to store formats and selection
>>   	 * rectangles.
>>   	 */
>> -	entity->config = __v4l2_subdev_state_alloc(&entity->subdev);
>> +	entity->config = __v4l2_subdev_state_alloc(&entity->subdev,
>> +						   "vsp1:config->lock", &key);
>>   	if (IS_ERR(entity->config)) {
>>   		media_entity_cleanup(&entity->subdev.entity);
>>   		return PTR_ERR(entity->config);
>> diff --git a/drivers/media/v4l2-core/v4l2-subdev.c b/drivers/media/v4l2-core/v4l2-subdev.c
>> index aa757cc28879..52309a299b03 100644
>> --- a/drivers/media/v4l2-core/v4l2-subdev.c
>> +++ b/drivers/media/v4l2-core/v4l2-subdev.c
>> @@ -27,8 +27,9 @@
>>   static int subdev_fh_init(struct v4l2_subdev_fh *fh, struct v4l2_subdev *sd)
>>   {
>>   	struct v4l2_subdev_state *state;
>> +	static struct lock_class_key key;
>>   
>> -	state = __v4l2_subdev_state_alloc(sd);
>> +	state = __v4l2_subdev_state_alloc(sd, "fh->state->lock", &key);
>>   	if (IS_ERR(state))
>>   		return PTR_ERR(state);
>>   
>> @@ -923,7 +924,9 @@ int v4l2_subdev_link_validate(struct media_link *link)
>>   }
>>   EXPORT_SYMBOL_GPL(v4l2_subdev_link_validate);
>>   
>> -struct v4l2_subdev_state *__v4l2_subdev_state_alloc(struct v4l2_subdev *sd)
>> +struct v4l2_subdev_state *
>> +__v4l2_subdev_state_alloc(struct v4l2_subdev *sd, const char *lock_name,
>> +			  struct lock_class_key *lock_key)
>>   {
>>   	struct v4l2_subdev_state *state;
>>   	int ret;
>> @@ -932,6 +935,8 @@ struct v4l2_subdev_state *__v4l2_subdev_state_alloc(struct v4l2_subdev *sd)
>>   	if (!state)
>>   		return ERR_PTR(-ENOMEM);
>>   
>> +	__mutex_init(&state->lock, lock_name, lock_key);
>> +
>>   	if (sd->entity.num_pads) {
>>   		state->pads = kvmalloc_array(sd->entity.num_pads,
>>   					     sizeof(*state->pads),
>> @@ -963,6 +968,8 @@ void __v4l2_subdev_state_free(struct v4l2_subdev_state *state)
>>   	if (!state)
>>   		return;
>>   
>> +	mutex_destroy(&state->lock);
>> +
>>   	kvfree(state->pads);
>>   	kfree(state);
>>   }
>> @@ -997,11 +1004,12 @@ void v4l2_subdev_notify_event(struct v4l2_subdev *sd,
>>   }
>>   EXPORT_SYMBOL_GPL(v4l2_subdev_notify_event);
>>   
>> -int v4l2_subdev_init_finalize(struct v4l2_subdev *sd)
>> +int __v4l2_subdev_init_finalize(struct v4l2_subdev *sd, const char *name,
>> +				struct lock_class_key *key)
>>   {
>>   	struct v4l2_subdev_state *state;
>>   
>> -	state = __v4l2_subdev_state_alloc(sd);
>> +	state = __v4l2_subdev_state_alloc(sd, name, key);
>>   	if (IS_ERR(state))
>>   		return PTR_ERR(state);
>>   
>> @@ -1009,7 +1017,7 @@ int v4l2_subdev_init_finalize(struct v4l2_subdev *sd)
>>   
>>   	return 0;
>>   }
>> -EXPORT_SYMBOL_GPL(v4l2_subdev_init_finalize);
>> +EXPORT_SYMBOL_GPL(__v4l2_subdev_init_finalize);
>>   
>>   void v4l2_subdev_cleanup(struct v4l2_subdev *sd)
>>   {
>> @@ -1017,3 +1025,23 @@ void v4l2_subdev_cleanup(struct v4l2_subdev *sd)
>>   	sd->state = NULL;
>>   }
>>   EXPORT_SYMBOL_GPL(v4l2_subdev_cleanup);
>> +
>> +struct v4l2_subdev_state *v4l2_subdev_lock_active_state(struct v4l2_subdev *sd)
>> +{
>> +	mutex_lock(&sd->state->lock);
>> +
>> +	return sd->state;
>> +}
>> +EXPORT_SYMBOL_GPL(v4l2_subdev_lock_active_state);
> 
> Why would this function just lock the active state, but...
> 
>> +
>> +void v4l2_subdev_lock_state(struct v4l2_subdev_state *state)
>> +{
>> +	mutex_lock(&state->lock);
> 
> ...this function makes no mention of 'active'.
> 
> The naming is just weird.

The first function locks the active state of the subdev, the second is 
used to lock a state, whether it's active or try.

> Part of the problem is that sd->state doesn't mention in the field name
> that this is the active state. I think the field name and the function
> name should match. So it is either lock_state and state->lock, or it
> is lock_active_state and act_state->lock.

I can rename the field to active_state.

  Tomi

  reply	other threads:[~2021-11-04 11:11 UTC|newest]

Thread overview: 94+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-10-05  8:57 [PATCH v9 00/36] v4l: subdev internal routing and streams Tomi Valkeinen
2021-10-05  8:57 ` [PATCH v9 01/36] media: subdev: rename subdev-state alloc & free Tomi Valkeinen
2021-10-12 13:46   ` Hans Verkuil
2021-10-05  8:57 ` [PATCH v9 02/36] media: subdev: add active state to struct v4l2_subdev Tomi Valkeinen
2021-10-12 14:32   ` Hans Verkuil
2021-11-04 10:59     ` Tomi Valkeinen
2021-10-05  8:57 ` [PATCH v9 03/36] media: subdev: pass also the active state to subdevs from ioctls Tomi Valkeinen
2021-10-12 13:53   ` Hans Verkuil
2021-10-05  8:57 ` [PATCH v9 04/36] media: subdev: add subdev state locking Tomi Valkeinen
2021-10-12 14:36   ` Hans Verkuil
2021-11-04 11:11     ` Tomi Valkeinen [this message]
2021-10-05  8:57 ` [PATCH v9 05/36] media: subdev: Add v4l2_subdev_validate_and_lock_state() Tomi Valkeinen
2021-10-12 14:16   ` Hans Verkuil
2021-11-04 11:15     ` Tomi Valkeinen
2021-10-05  8:57 ` [PATCH v9 06/36] media: Documentation: add documentation about subdev state Tomi Valkeinen
2021-10-12 14:36   ` Hans Verkuil
2021-10-05  8:57 ` [PATCH v9 07/36] media: entity: Use pad as a starting point for graph walk Tomi Valkeinen
2021-10-12 14:46   ` Hans Verkuil
2021-10-05  8:57 ` [PATCH v9 08/36] media: entity: Use pads instead of entities in the media graph walk stack Tomi Valkeinen
2021-10-05  8:57 ` [PATCH v9 09/36] media: entity: Walk the graph based on pads Tomi Valkeinen
2021-10-05  8:57 ` [PATCH v9 10/36] media: mc: Start walk from a specific pad in use count calculation Tomi Valkeinen
2021-10-05  8:57 ` [PATCH v9 11/36] media: entity: Add iterator helper for entity pads Tomi Valkeinen
2021-10-05  8:57 ` [PATCH v9 12/36] media: entity: Move the pipeline from entity to pads Tomi Valkeinen
2021-10-05  8:57 ` [PATCH v9 13/36] media: entity: Use pad as the starting point for a pipeline Tomi Valkeinen
2021-10-05  8:57 ` [PATCH v9 14/36] media: entity: Add has_route entity operation Tomi Valkeinen
2021-10-05  8:57 ` [PATCH v9 15/36] media: entity: Add media_entity_has_route() function Tomi Valkeinen
2021-10-05  8:57 ` [PATCH v9 16/36] media: entity: Use routing information during graph traversal Tomi Valkeinen
2021-10-05  8:57 ` [PATCH v9 17/36] media: entity: Skip link validation for pads to which there is no route Tomi Valkeinen
2021-10-05  8:57 ` [PATCH v9 18/36] media: entity: Add an iterator helper for connected pads Tomi Valkeinen
2021-10-05  8:57 ` [PATCH v9 19/36] media: entity: Add only connected pads to the pipeline Tomi Valkeinen
2021-10-05  8:57 ` [PATCH v9 20/36] media: entity: Add debug information in graph walk route check Tomi Valkeinen
2021-10-05  8:57 ` [PATCH v9 21/36] media: Add bus type to frame descriptors Tomi Valkeinen
2021-10-05  8:57 ` [PATCH v9 22/36] media: Add CSI-2 bus configuration " Tomi Valkeinen
2021-10-05  8:57 ` [PATCH v9 23/36] media: Add stream to frame descriptor Tomi Valkeinen
2021-10-05  8:57 ` [PATCH v9 24/36] media: subdev: increase V4L2_FRAME_DESC_ENTRY_MAX to 8 Tomi Valkeinen
2021-10-12 14:44   ` Hans Verkuil
2021-10-05  8:57 ` [PATCH v9 25/36] media: add V4L2_SUBDEV_FL_MULTIPLEXED Tomi Valkeinen
2021-10-12 14:48   ` Hans Verkuil
2021-11-04 12:06     ` Tomi Valkeinen
2021-10-12 14:55   ` Hans Verkuil
2021-11-04 12:40     ` Tomi Valkeinen
2021-10-05  8:57 ` [PATCH v9 26/36] media: Documentation: Add GS_ROUTING documentation Tomi Valkeinen
2021-10-12 14:56   ` Hans Verkuil
2021-10-05  8:57 ` [PATCH v9 27/36] media: subdev: Add [GS]_ROUTING subdev ioctls and operations Tomi Valkeinen
2021-10-06  6:47   ` Tomi Valkeinen
2021-10-10  7:36   ` Laurent Pinchart
2021-10-11  7:57     ` Tomi Valkeinen
2021-10-12 15:04   ` Hans Verkuil
2021-10-15 12:13   ` Jacopo Mondi
2021-10-15 12:36     ` Tomi Valkeinen
2021-10-15 14:05       ` Jacopo Mondi
2021-10-15 15:17         ` Tomi Valkeinen
2021-10-15 15:28           ` Jacopo Mondi
2021-10-15 16:10             ` Tomi Valkeinen
2021-10-15 16:47               ` Jacopo Mondi
2021-10-15 16:55                 ` Tomi Valkeinen
2021-10-15 17:51                   ` Jacopo Mondi
2021-11-18 10:54   ` Tomi Valkeinen
2021-10-05  8:57 ` [PATCH v9 28/36] media: subdev: add v4l2_subdev_has_route() Tomi Valkeinen
2021-10-12 15:05   ` Hans Verkuil
2021-10-05  8:57 ` [PATCH v9 29/36] media: subdev: add v4l2_subdev_set_routing helper() Tomi Valkeinen
2021-10-10 10:21   ` Laurent Pinchart
2021-10-11  8:13     ` Tomi Valkeinen
2021-10-11 21:06       ` Laurent Pinchart
2021-10-12  5:09         ` Tomi Valkeinen
2021-10-12 15:07   ` Hans Verkuil
2021-10-05  8:57 ` [PATCH v9 30/36] media: Documentation: add multiplexed streams documentation Tomi Valkeinen
2021-10-12 15:34   ` Hans Verkuil
2021-11-04 13:27     ` Tomi Valkeinen
2021-10-05  8:57 ` [PATCH v9 31/36] media: subdev: add stream based configuration Tomi Valkeinen
2021-10-13  7:17   ` Hans Verkuil
2021-11-30 11:40     ` Tomi Valkeinen
2021-10-05  8:57 ` [PATCH v9 32/36] media: subdev: use streams in v4l2_subdev_link_validate() Tomi Valkeinen
2021-10-13  7:27   ` Hans Verkuil
2021-10-05  8:57 ` [PATCH v9 33/36] media: subdev: add "opposite" stream helper funcs Tomi Valkeinen
2021-10-10 14:15   ` Laurent Pinchart
2021-10-10 14:18     ` Laurent Pinchart
2021-10-11  8:21     ` Tomi Valkeinen
2021-10-11 15:01       ` Laurent Pinchart
2021-10-13  7:30   ` Hans Verkuil
2021-10-05  8:57 ` [PATCH v9 34/36] media: subdev: add v4l2_subdev_get_fmt() helper function Tomi Valkeinen
2021-10-13  7:32   ` Hans Verkuil
2021-10-05  8:57 ` [PATCH v9 35/36] media: subdev: add v4l2_subdev_set_routing_with_fmt() helper Tomi Valkeinen
2021-10-13  7:32   ` Hans Verkuil
2021-10-05  8:57 ` [PATCH v9 36/36] media: subdev: add v4l2_routing_simple_verify() helper Tomi Valkeinen
2021-10-10  1:23   ` Laurent Pinchart
2021-10-11  7:25     ` Tomi Valkeinen
2021-10-11 21:08       ` Laurent Pinchart
2021-10-13  7:34   ` Hans Verkuil
2021-10-05  9:08 ` [PATCH v9 00/36] v4l: subdev internal routing and streams Tomi Valkeinen
2021-10-11 15:29 ` Hans Verkuil
2021-10-26 11:54   ` Tomi Valkeinen
2021-10-26 12:32     ` Jacopo Mondi
2021-10-26 12:40       ` Tomi Valkeinen

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=49077a07-1188-0ef3-d131-acbe04d7a2c6@ideasonboard.com \
    --to=tomi.valkeinen@ideasonboard.com \
    --cc=hverkuil-cisco@xs4all.nl \
    --cc=jacopo+renesas@jmondi.org \
    --cc=laurent.pinchart@ideasonboard.com \
    --cc=linux-media@vger.kernel.org \
    --cc=mchehab@kernel.org \
    --cc=niklas.soderlund+renesas@ragnatech.se \
    --cc=p.yadav@ti.com \
    --cc=sakari.ailus@linux.intel.com \
    /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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.