From: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
To: Shuah Khan <shuahkh@osg.samsung.com>
Cc: sakari.ailus@linux.intel.com, mchehab@kernel.org,
linux-media@vger.kernel.org, linux-kernel@vger.kernel.org
Subject: Re: [PATCH 1/2] media: omap3isp fix media_entity_cleanup() after media device unregister
Date: Fri, 16 Dec 2016 00:32:01 +0200 [thread overview]
Message-ID: <8332445.l6HF2EFQsf@avalon> (raw)
In-Reply-To: <adae92a88cf8f25e022fdf46b8be7cb23e07465b.1481829722.git.shuahkh@osg.samsung.com>
Hello Shuah,
Thank you for the patch.
On Thursday 15 Dec 2016 12:40:07 Shuah Khan wrote:
> During unbind isp_remove() media_entity_cleanup() after it unregisters the
I assume you meant "During unbind isp_remove() calls media_entity_cleanup()"
> media_device. Cleanup routine calls media_entity_cleanup() accessing subdev
> entities that have been removed. This will cause problems during unbind.
What problems ? media_entity_cleanup() is a no-op. And regardless of that, you
shouldn't remove the function call (unless the function is considered
deprecated, in which case it should be removed completely, and that should be
discussed beforehand) but move it to the appropriate place.
> Signed-off-by: Shuah Khan <shuahkh@osg.samsung.com>
> ---
> drivers/media/platform/omap3isp/ispccdc.c | 1 -
> drivers/media/platform/omap3isp/ispccp2.c | 1 -
> drivers/media/platform/omap3isp/ispcsi2.c | 1 -
> drivers/media/platform/omap3isp/isppreview.c | 1 -
> drivers/media/platform/omap3isp/ispresizer.c | 1 -
> drivers/media/platform/omap3isp/ispstat.c | 1 -
> drivers/media/platform/omap3isp/ispvideo.c | 1 -
> 7 files changed, 7 deletions(-)
>
> diff --git a/drivers/media/platform/omap3isp/ispccdc.c
> b/drivers/media/platform/omap3isp/ispccdc.c index 882310e..6d27e48 100644
> --- a/drivers/media/platform/omap3isp/ispccdc.c
> +++ b/drivers/media/platform/omap3isp/ispccdc.c
> @@ -2726,7 +2726,6 @@ void omap3isp_ccdc_cleanup(struct isp_device *isp)
> struct isp_ccdc_device *ccdc = &isp->isp_ccdc;
>
> omap3isp_video_cleanup(&ccdc->video_out);
> - media_entity_cleanup(&ccdc->subdev.entity);
>
> /* Free LSC requests. As the CCDC is stopped there's no active
request,
> * so only the pending request and the free queue need to be handled.
> diff --git a/drivers/media/platform/omap3isp/ispccp2.c
> b/drivers/media/platform/omap3isp/ispccp2.c index ca09523..4c1e7f0 100644
> --- a/drivers/media/platform/omap3isp/ispccp2.c
> +++ b/drivers/media/platform/omap3isp/ispccp2.c
> @@ -1162,5 +1162,4 @@ void omap3isp_ccp2_cleanup(struct isp_device *isp)
> struct isp_ccp2_device *ccp2 = &isp->isp_ccp2;
>
> omap3isp_video_cleanup(&ccp2->video_in);
> - media_entity_cleanup(&ccp2->subdev.entity);
> }
> diff --git a/drivers/media/platform/omap3isp/ispcsi2.c
> b/drivers/media/platform/omap3isp/ispcsi2.c index f75a1be..840756e 100644
> --- a/drivers/media/platform/omap3isp/ispcsi2.c
> +++ b/drivers/media/platform/omap3isp/ispcsi2.c
> @@ -1318,5 +1318,4 @@ void omap3isp_csi2_cleanup(struct isp_device *isp)
> struct isp_csi2_device *csi2a = &isp->isp_csi2a;
>
> omap3isp_video_cleanup(&csi2a->video_out);
> - media_entity_cleanup(&csi2a->subdev.entity);
> }
> diff --git a/drivers/media/platform/omap3isp/isppreview.c
> b/drivers/media/platform/omap3isp/isppreview.c index ac30a0f..a179dac
> 100644
> --- a/drivers/media/platform/omap3isp/isppreview.c
> +++ b/drivers/media/platform/omap3isp/isppreview.c
> @@ -2348,5 +2348,4 @@ void omap3isp_preview_cleanup(struct isp_device *isp)
> v4l2_ctrl_handler_free(&prev->ctrls);
> omap3isp_video_cleanup(&prev->video_in);
> omap3isp_video_cleanup(&prev->video_out);
> - media_entity_cleanup(&prev->subdev.entity);
> }
> diff --git a/drivers/media/platform/omap3isp/ispresizer.c
> b/drivers/media/platform/omap3isp/ispresizer.c index 0b6a875..d22a54a
> 100644
> --- a/drivers/media/platform/omap3isp/ispresizer.c
> +++ b/drivers/media/platform/omap3isp/ispresizer.c
> @@ -1791,5 +1791,4 @@ void omap3isp_resizer_cleanup(struct isp_device *isp)
>
> omap3isp_video_cleanup(&res->video_in);
> omap3isp_video_cleanup(&res->video_out);
> - media_entity_cleanup(&res->subdev.entity);
> }
> diff --git a/drivers/media/platform/omap3isp/ispstat.c
> b/drivers/media/platform/omap3isp/ispstat.c index 1b9217d..47b8e43 100644
> --- a/drivers/media/platform/omap3isp/ispstat.c
> +++ b/drivers/media/platform/omap3isp/ispstat.c
> @@ -1055,7 +1055,6 @@ int omap3isp_stat_init(struct ispstat *stat, const
> char *name,
>
> void omap3isp_stat_cleanup(struct ispstat *stat)
> {
> - media_entity_cleanup(&stat->subdev.entity);
> mutex_destroy(&stat->ioctl_lock);
> isp_stat_bufs_free(stat);
> kfree(stat->buf);
> diff --git a/drivers/media/platform/omap3isp/ispvideo.c
> b/drivers/media/platform/omap3isp/ispvideo.c index 7354469..6914035 100644
> --- a/drivers/media/platform/omap3isp/ispvideo.c
> +++ b/drivers/media/platform/omap3isp/ispvideo.c
> @@ -1470,7 +1470,6 @@ int omap3isp_video_init(struct isp_video *video, const
> char *name)
>
> void omap3isp_video_cleanup(struct isp_video *video)
> {
> - media_entity_cleanup(&video->video.entity);
> mutex_destroy(&video->queue_lock);
> mutex_destroy(&video->stream_lock);
> mutex_destroy(&video->mutex);
--
Regards,
Laurent Pinchart
next prev parent reply other threads:[~2016-12-15 22:31 UTC|newest]
Thread overview: 12+ messages / expand[flat|nested] mbox.gz Atom feed top
2016-12-15 19:40 [PATCH 0/2] omap3 devm usage removal Shuah Khan
2016-12-15 19:40 ` [PATCH 1/2] media: omap3isp fix media_entity_cleanup() after media device unregister Shuah Khan
2016-12-15 22:32 ` Laurent Pinchart [this message]
2016-12-15 22:53 ` Shuah Khan
2016-12-15 19:40 ` [PATCH 2/2] media: omap3isp change to devm for resources Shuah Khan
2016-12-15 22:33 ` Laurent Pinchart
2016-12-15 22:51 ` Shuah Khan
2016-12-15 23:06 ` Laurent Pinchart
2016-12-16 8:17 ` kbuild test robot
2016-12-16 11:39 ` Hans Verkuil
2016-12-16 12:19 ` Laurent Pinchart
2016-12-16 12:34 ` Hans Verkuil
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=8332445.l6HF2EFQsf@avalon \
--to=laurent.pinchart@ideasonboard.com \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-media@vger.kernel.org \
--cc=mchehab@kernel.org \
--cc=sakari.ailus@linux.intel.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