From: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
To: Javier Martinez Canillas <javier@osg.samsung.com>
Cc: linux-kernel@vger.kernel.org,
Mauro Carvalho Chehab <mchehab@osg.samsung.com>,
linux-media@vger.kernel.org, Shuah Khan <shuahkh@osg.samsung.com>
Subject: Re: [PATCH 1/2] [media] media: don't try to empty links list in media_entity_cleanup()
Date: Mon, 23 Nov 2015 17:42:57 +0200 [thread overview]
Message-ID: <4525565.mVzskEzFVD@avalon> (raw)
In-Reply-To: <1440602719-12500-2-git-send-email-javier@osg.samsung.com>
Hello Javier,
(Resending as I've replied by mistake to the version of the patch you had sent
to the media workshop list only)
Thank you for the patch.
On Monday 12 October 2015 13:44:11 Mauro Carvalho Chehab wrote:
> From: Javier Martinez Canillas <javier@osg.samsung.com>
>
> The media_entity_cleanup() function only cleans up the entity links list
> but this operation is already made in media_device_unregister_entity().
>
> In most cases this should be harmless (besides having duplicated code)
> since the links list would be empty so the iteration would not happen
> but the links list is initialized in media_device_register_entity() so
> if a driver fails to register an entity with a media device and clean up
> the entity in the error path, a NULL deference pointer error will happen.
>
> So don't try to empty the links list in media_entity_cleanup() since
> is either done already or haven't been initialized yet.
Does this mean that it's an invalid usage of the API to create links before
registering entities ? If so it should be clearly documented somewhere, such
as in the kerneldoc of the media_create_pad_link() function.
And yes, that means that all exported API functions need kerneldoc. Sorry for
being a killjoy
On a related note, we need to solve the userspace API race caused by
registering the MC devnode before all entities and links are created an
registered. It's not a new issue so I won't call for fixing it as part of this
patch series, but we'll need to fix that with the dynamic graph update
implementation at the latest. It will likely require reworking the
initialization and registration sequences.
> Signed-off-by: Javier Martinez Canillas <javier@osg.samsung.com>
> ---
> drivers/media/media-entity.c | 7 -------
> 1 file changed, 7 deletions(-)
>
> diff --git a/drivers/media/media-entity.c b/drivers/media/media-entity.c
> index 2c984fb7d497..eaeda2589ce5 100644
> --- a/drivers/media/media-entity.c
> +++ b/drivers/media/media-entity.c
> @@ -268,13 +268,6 @@ EXPORT_SYMBOL_GPL(media_entity_init);
> void
> media_entity_cleanup(struct media_entity *entity)
> {
> - struct media_link *link, *tmp;
> -
> - list_for_each_entry_safe(link, tmp, &entity->links, list) {
> - media_gobj_remove(&link->graph_obj);
> - list_del(&link->list);
> - kfree(link);
> - }
> }
> EXPORT_SYMBOL_GPL(media_entity_cleanup);
As media_entity_cleanup is now empty I'd turn it into a static inline. We need
to keep the function in case cleanup ends up being needed later, but there's
no reason not to optimize the call away for now.
--
Regards,
Laurent Pinchart
next prev parent reply other threads:[~2015-11-23 15:42 UTC|newest]
Thread overview: 6+ messages / expand[flat|nested] mbox.gz Atom feed top
2015-08-26 15:25 [PATCH 0/2] Patches to test MC next gen patches in OMAP3 ISP Javier Martinez Canillas
2015-08-26 15:25 ` [PATCH 1/2] [media] media: don't try to empty links list in media_entity_cleanup() Javier Martinez Canillas
2015-11-23 15:42 ` Laurent Pinchart [this message]
2015-08-26 15:25 ` [PATCH 2/2] [media] omap3isp: separate links creation from entities init Javier Martinez Canillas
2015-08-26 20:43 ` Mauro Carvalho Chehab
2015-08-27 7:59 ` Javier Martinez Canillas
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=4525565.mVzskEzFVD@avalon \
--to=laurent.pinchart@ideasonboard.com \
--cc=javier@osg.samsung.com \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-media@vger.kernel.org \
--cc=mchehab@osg.samsung.com \
--cc=shuahkh@osg.samsung.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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox