Linux MultiMedia Card development
 help / color / mirror / Atom feed
* [PATCH] OMAP HSMMC: fix a racing case between kmmcd and omap_hsmmc_suspend
@ 2010-06-21 11:20 Ethan Du
  2010-06-21 12:27 ` Adrian Hunter
  2010-08-27 20:18 ` [PATCH RESEND] " Chris Ball
  0 siblings, 2 replies; 5+ messages in thread
From: Ethan Du @ 2010-06-21 11:20 UTC (permalink / raw)
  To: linux-mmc

If suspend called when kmmcd is doing host->ops->disable,
as kmmcd already increased host->en_dis_recurs to 1, the mmc_host_enable
in suspend function will return directly without increase the nesting_cnt,
which will cause the followed register access carried out to the disabled host.

mmc_suspend_host will enable host itself. No need to enable host before it.
Also works on kmmcd will get flushed in mmc_suspend_host, enable host after
it will be safe. So make the mmc_host_enable after it.

Signed-off-by: Ethan <ethan.too@gmail.com>
---
 drivers/mmc/host/omap_hsmmc.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/drivers/mmc/host/omap_hsmmc.c b/drivers/mmc/host/omap_hsmmc.c
index b032828..fc74263 100644
--- a/drivers/mmc/host/omap_hsmmc.c
+++ b/drivers/mmc/host/omap_hsmmc.c
@@ -2291,8 +2291,8 @@ static int omap_hsmmc_suspend(struct device *dev)
                        }
                }
                cancel_work_sync(&host->mmc_carddetect_work);
-               mmc_host_enable(host->mmc);
                ret = mmc_suspend_host(host->mmc);
+               mmc_host_enable(host->mmc);
                if (ret == 0) {
                        omap_hsmmc_disable_irq(host);
                        OMAP_HSMMC_WRITE(host->base, HCTL,
--
1.5.6.5

^ permalink raw reply related	[flat|nested] 5+ messages in thread

* Re: [PATCH] OMAP HSMMC: fix a racing case between kmmcd and  omap_hsmmc_suspend
  2010-06-21 11:20 [PATCH] OMAP HSMMC: fix a racing case between kmmcd and omap_hsmmc_suspend Ethan Du
@ 2010-06-21 12:27 ` Adrian Hunter
  2010-07-06 18:10   ` Adrian Hunter
  2010-08-27 20:18 ` [PATCH RESEND] " Chris Ball
  1 sibling, 1 reply; 5+ messages in thread
From: Adrian Hunter @ 2010-06-21 12:27 UTC (permalink / raw)
  To: Ethan Du; +Cc: linux-mmc, Madhusudhan Chikkature, Andrew Morton

Ethan Du wrote:
> If suspend called when kmmcd is doing host->ops->disable,
> as kmmcd already increased host->en_dis_recurs to 1, the mmc_host_enable
> in suspend function will return directly without increase the nesting_cnt,
> which will cause the followed register access carried out to the disabled host.
> 
> mmc_suspend_host will enable host itself. No need to enable host before it.
> Also works on kmmcd will get flushed in mmc_suspend_host, enable host after
> it will be safe. So make the mmc_host_enable after it.
> 
> Signed-off-by: Ethan <ethan.too@gmail.com>

Looks good to me

Acked-by: Adrian Hunter <adrian.hunter@nokia.com>

> ---
>  drivers/mmc/host/omap_hsmmc.c |    2 +-
>  1 files changed, 1 insertions(+), 1 deletions(-)
> 
> diff --git a/drivers/mmc/host/omap_hsmmc.c b/drivers/mmc/host/omap_hsmmc.c
> index b032828..fc74263 100644
> --- a/drivers/mmc/host/omap_hsmmc.c
> +++ b/drivers/mmc/host/omap_hsmmc.c
> @@ -2291,8 +2291,8 @@ static int omap_hsmmc_suspend(struct device *dev)
>                         }
>                 }
>                 cancel_work_sync(&host->mmc_carddetect_work);
> -               mmc_host_enable(host->mmc);
>                 ret = mmc_suspend_host(host->mmc);
> +               mmc_host_enable(host->mmc);
>                 if (ret == 0) {
>                         omap_hsmmc_disable_irq(host);
>                         OMAP_HSMMC_WRITE(host->base, HCTL,
> --
> 1.5.6.5
> --
> To unsubscribe from this list: send the line "unsubscribe linux-mmc" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at  http://vger.kernel.org/majordomo-info.html
> 


^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [PATCH] OMAP HSMMC: fix a racing case between kmmcd and  omap_hsmmc_suspend
  2010-06-21 12:27 ` Adrian Hunter
@ 2010-07-06 18:10   ` Adrian Hunter
  2010-07-06 18:58     ` Madhusudhan
  0 siblings, 1 reply; 5+ messages in thread
From: Adrian Hunter @ 2010-07-06 18:10 UTC (permalink / raw)
  To: Madhusudhan Chikkature
  Cc: Hunter Adrian (Nokia-D/Helsinki), Ethan Du, linux-mmc,
	Andrew Morton

Hunter Adrian (Nokia-D/Helsinki) wrote:
> Ethan Du wrote:
>> If suspend called when kmmcd is doing host->ops->disable,
>> as kmmcd already increased host->en_dis_recurs to 1, the mmc_host_enable
>> in suspend function will return directly without increase the nesting_cnt,
>> which will cause the followed register access carried out to the disabled host.
>>
>> mmc_suspend_host will enable host itself. No need to enable host before it.
>> Also works on kmmcd will get flushed in mmc_suspend_host, enable host after
>> it will be safe. So make the mmc_host_enable after it.
>>
>> Signed-off-by: Ethan <ethan.too@gmail.com>
> 
> Looks good to me
> 
> Acked-by: Adrian Hunter <adrian.hunter@nokia.com>
> 

Ping?

Ethan asked me what is happening to this.

Is is OK Madhu?

Andrew can you take it?

>> ---
>>  drivers/mmc/host/omap_hsmmc.c |    2 +-
>>  1 files changed, 1 insertions(+), 1 deletions(-)
>>
>> diff --git a/drivers/mmc/host/omap_hsmmc.c b/drivers/mmc/host/omap_hsmmc.c
>> index b032828..fc74263 100644
>> --- a/drivers/mmc/host/omap_hsmmc.c
>> +++ b/drivers/mmc/host/omap_hsmmc.c
>> @@ -2291,8 +2291,8 @@ static int omap_hsmmc_suspend(struct device *dev)
>>                         }
>>                 }
>>                 cancel_work_sync(&host->mmc_carddetect_work);
>> -               mmc_host_enable(host->mmc);
>>                 ret = mmc_suspend_host(host->mmc);
>> +               mmc_host_enable(host->mmc);
>>                 if (ret == 0) {
>>                         omap_hsmmc_disable_irq(host);
>>                         OMAP_HSMMC_WRITE(host->base, HCTL,
>> --
>> 1.5.6.5
>> --
>> To unsubscribe from this list: send the line "unsubscribe linux-mmc" in
>> the body of a message to majordomo@vger.kernel.org
>> More majordomo info at  http://vger.kernel.org/majordomo-info.html
>>
> 
> --
> To unsubscribe from this list: send the line "unsubscribe linux-mmc" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at  http://vger.kernel.org/majordomo-info.html
> 


^ permalink raw reply	[flat|nested] 5+ messages in thread

* RE: [PATCH] OMAP HSMMC: fix a racing case between kmmcd and  omap_hsmmc_suspend
  2010-07-06 18:10   ` Adrian Hunter
@ 2010-07-06 18:58     ` Madhusudhan
  0 siblings, 0 replies; 5+ messages in thread
From: Madhusudhan @ 2010-07-06 18:58 UTC (permalink / raw)
  To: 'Adrian Hunter'
  Cc: 'Ethan Du', 'linux-mmc', 'Andrew Morton'



> -----Original Message-----
> From: Adrian Hunter [mailto:adrian.hunter@nokia.com]
> Sent: Tuesday, July 06, 2010 1:11 PM
> To: Madhusudhan Chikkature
> Cc: Hunter Adrian (Nokia-D/Helsinki); Ethan Du; linux-mmc; Andrew Morton
> Subject: Re: [PATCH] OMAP HSMMC: fix a racing case between kmmcd and
> omap_hsmmc_suspend
> 
> Hunter Adrian (Nokia-D/Helsinki) wrote:
> > Ethan Du wrote:
> >> If suspend called when kmmcd is doing host->ops->disable,
> >> as kmmcd already increased host->en_dis_recurs to 1, the
> mmc_host_enable
> >> in suspend function will return directly without increase the
> nesting_cnt,
> >> which will cause the followed register access carried out to the
> disabled host.
> >>
> >> mmc_suspend_host will enable host itself. No need to enable host before
> it.
> >> Also works on kmmcd will get flushed in mmc_suspend_host, enable host
> after
> >> it will be safe. So make the mmc_host_enable after it.
> >>
> >> Signed-off-by: Ethan <ethan.too@gmail.com>
> >
> > Looks good to me
> >
> > Acked-by: Adrian Hunter <adrian.hunter@nokia.com>
> >
> 
> Ping?
> 
> Ethan asked me what is happening to this.
> 
> Is is OK Madhu?
> 
> Andrew can you take it?
> 
Sorry, I missed to look at this patch. It looks good.

Acked-by: Madhusudhan Chikkature <madhu.cr@ti.com>

> >> ---
> >>  drivers/mmc/host/omap_hsmmc.c |    2 +-
> >>  1 files changed, 1 insertions(+), 1 deletions(-)
> >>
> >> diff --git a/drivers/mmc/host/omap_hsmmc.c
> b/drivers/mmc/host/omap_hsmmc.c
> >> index b032828..fc74263 100644
> >> --- a/drivers/mmc/host/omap_hsmmc.c
> >> +++ b/drivers/mmc/host/omap_hsmmc.c
> >> @@ -2291,8 +2291,8 @@ static int omap_hsmmc_suspend(struct device *dev)
> >>                         }
> >>                 }
> >>                 cancel_work_sync(&host->mmc_carddetect_work);
> >> -               mmc_host_enable(host->mmc);
> >>                 ret = mmc_suspend_host(host->mmc);
> >> +               mmc_host_enable(host->mmc);
> >>                 if (ret == 0) {
> >>                         omap_hsmmc_disable_irq(host);
> >>                         OMAP_HSMMC_WRITE(host->base, HCTL,
> >> --
> >> 1.5.6.5
> >> --
> >> To unsubscribe from this list: send the line "unsubscribe linux-mmc" in
> >> the body of a message to majordomo@vger.kernel.org
> >> More majordomo info at  http://vger.kernel.org/majordomo-info.html
> >>
> >
> > --
> > To unsubscribe from this list: send the line "unsubscribe linux-mmc" in
> > the body of a message to majordomo@vger.kernel.org
> > More majordomo info at  http://vger.kernel.org/majordomo-info.html
> >



^ permalink raw reply	[flat|nested] 5+ messages in thread

* [PATCH RESEND] OMAP HSMMC: fix a racing case between kmmcd and omap_hsmmc_suspend
  2010-06-21 11:20 [PATCH] OMAP HSMMC: fix a racing case between kmmcd and omap_hsmmc_suspend Ethan Du
  2010-06-21 12:27 ` Adrian Hunter
@ 2010-08-27 20:18 ` Chris Ball
  1 sibling, 0 replies; 5+ messages in thread
From: Chris Ball @ 2010-08-27 20:18 UTC (permalink / raw)
  To: Ethan Du; +Cc: akpm, Adrian Hunter, Madhusudhan Chikkature, linux-mmc

Hi,

This doesn't seem to have been merged -- Andrew, could you take it?

From: Ethan Du <ethan.too@gmail.com>
Date: Mon, 21 Jun 2010 19:20:41 +0800

If suspend called when kmmcd is doing host->ops->disable,
as kmmcd already increased host->en_dis_recurs to 1, the mmc_host_enable
in suspend function will return directly without increase the nesting_cnt,
which will cause the followed register access carried out to the disabled host.

mmc_suspend_host will enable host itself. No need to enable host before it.
Also works on kmmcd will get flushed in mmc_suspend_host, enable host after
it will be safe. So make the mmc_host_enable after it.

Signed-off-by: Ethan <ethan.too@gmail.com>
Acked-by: Adrian Hunter <adrian.hunter@nokia.com>
Acked-by: Madhusudhan Chikkature <madhu.cr@ti.com>
[cjb: rebase against current Linus]
---
 drivers/mmc/host/omap_hsmmc.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)


diff --git a/drivers/mmc/host/omap_hsmmc.c b/drivers/mmc/host/omap_hsmmc.c
index ba623d6..1f7d01a 100644
--- a/drivers/mmc/host/omap_hsmmc.c
+++ b/drivers/mmc/host/omap_hsmmc.c
@@ -2323,8 +2323,8 @@ static int omap_hsmmc_suspend(struct device *dev)
 			}
 		}
 		cancel_work_sync(&host->mmc_carddetect_work);
-		mmc_host_enable(host->mmc);
 		ret = mmc_suspend_host(host->mmc);
+		mmc_host_enable(host->mmc);
 		if (ret == 0) {
 			omap_hsmmc_disable_irq(host);
 			OMAP_HSMMC_WRITE(host->base, HCTL,
--
1.7.0.1

-- 
Chris Ball   <cjb@laptop.org>   <http://printf.net/>
One Laptop Per Child

^ permalink raw reply related	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2010-08-27 20:18 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-06-21 11:20 [PATCH] OMAP HSMMC: fix a racing case between kmmcd and omap_hsmmc_suspend Ethan Du
2010-06-21 12:27 ` Adrian Hunter
2010-07-06 18:10   ` Adrian Hunter
2010-07-06 18:58     ` Madhusudhan
2010-08-27 20:18 ` [PATCH RESEND] " Chris Ball

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox