Explorar o código

mmc: delayed_work was never cancelled

The delayed work item mmc_host.detect is now cancelled before flushing
the work queue. This takes care of cases when delayed_work was scheduled
for mmc_host.detect, but not yet placed in the work queue.

Signed-off-by: Jorg Schummer <ext-jorg.2.schummer@nokia.com>
Signed-off-by: Pierre Ossman <drzeus@drzeus.cx>
Jorg Schummer %!s(int64=16) %!d(string=hai) anos
pai
achega
7de427d088
Modificáronse 1 ficheiros con 2 adicións e 0 borrados
  1. 2 0
      drivers/mmc/core/core.c

+ 2 - 0
drivers/mmc/core/core.c

@@ -815,6 +815,7 @@ void mmc_stop_host(struct mmc_host *host)
 	spin_unlock_irqrestore(&host->lock, flags);
 	spin_unlock_irqrestore(&host->lock, flags);
 #endif
 #endif
 
 
+	cancel_delayed_work(&host->detect);
 	mmc_flush_scheduled_work();
 	mmc_flush_scheduled_work();
 
 
 	mmc_bus_get(host);
 	mmc_bus_get(host);
@@ -842,6 +843,7 @@ void mmc_stop_host(struct mmc_host *host)
  */
  */
 int mmc_suspend_host(struct mmc_host *host, pm_message_t state)
 int mmc_suspend_host(struct mmc_host *host, pm_message_t state)
 {
 {
+	cancel_delayed_work(&host->detect);
 	mmc_flush_scheduled_work();
 	mmc_flush_scheduled_work();
 
 
 	mmc_bus_get(host);
 	mmc_bus_get(host);