All of lore.kernel.org
 help / color / mirror / Atom feed
From: Xiaotian Feng <xtfeng@gmail.com>
To: linux-kernel@vger.kernel.org
Cc: Xiaotian Feng <xtfeng@gmail.com>,
	Xiaotian Feng <dannyfeng@tencent.com>,
	Ben Dooks <ben-linux@fluff.org>, Chris Ball <cjb@laptop.org>,
	linux-arm-kernel@lists.infradead.org, linux-mmc@vger.kernel.org
Subject: [PATCH] mmc: s3cmci: use tasklet_kill in device remove/release process
Date: Wed, 31 Oct 2012 18:48:45 +0800	[thread overview]
Message-ID: <1351680525-27253-1-git-send-email-xtfeng@gmail.com> (raw)

Some driver uses tasklet_disable in device remove/release process,
tasklet_disable will inc tasklet->count and return. If the tasklet
is not handled yet under some softirq pressure, the tasklet will be
placed on the tasklet_vec, never have a chance to be excuted. This might
lead to a heavy loaded ksoftirqd, wakeup with pending_softirq, but
tasklet is disabled. tasklet_kill should be used in this case.

Signed-off-by: Xiaotian Feng <dannyfeng@tencent.com>
Cc: Ben Dooks <ben-linux@fluff.org>
Cc: Chris Ball <cjb@laptop.org>
Cc: linux-arm-kernel@lists.infradead.org
Cc: linux-mmc@vger.kernel.org
---
 drivers/mmc/host/s3cmci.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/mmc/host/s3cmci.c b/drivers/mmc/host/s3cmci.c
index 4638dda..d70d0cc 100644
--- a/drivers/mmc/host/s3cmci.c
+++ b/drivers/mmc/host/s3cmci.c
@@ -1830,7 +1830,7 @@ static int __devexit s3cmci_remove(struct platform_device *pdev)
 
 	clk_put(host->clk);
 
-	tasklet_disable(&host->pio_tasklet);
+	tasklet_kill(&host->pio_tasklet);
 
 	if (s3cmci_host_usedma(host))
 		s3c2410_dma_free(host->dma, &s3cmci_dma_client);
-- 
1.7.9.5


WARNING: multiple messages have this Message-ID (diff)
From: xtfeng@gmail.com (Xiaotian Feng)
To: linux-arm-kernel@lists.infradead.org
Subject: [PATCH] mmc: s3cmci: use tasklet_kill in device remove/release process
Date: Wed, 31 Oct 2012 18:48:45 +0800	[thread overview]
Message-ID: <1351680525-27253-1-git-send-email-xtfeng@gmail.com> (raw)

Some driver uses tasklet_disable in device remove/release process,
tasklet_disable will inc tasklet->count and return. If the tasklet
is not handled yet under some softirq pressure, the tasklet will be
placed on the tasklet_vec, never have a chance to be excuted. This might
lead to a heavy loaded ksoftirqd, wakeup with pending_softirq, but
tasklet is disabled. tasklet_kill should be used in this case.

Signed-off-by: Xiaotian Feng <dannyfeng@tencent.com>
Cc: Ben Dooks <ben-linux@fluff.org>
Cc: Chris Ball <cjb@laptop.org>
Cc: linux-arm-kernel at lists.infradead.org
Cc: linux-mmc at vger.kernel.org
---
 drivers/mmc/host/s3cmci.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/mmc/host/s3cmci.c b/drivers/mmc/host/s3cmci.c
index 4638dda..d70d0cc 100644
--- a/drivers/mmc/host/s3cmci.c
+++ b/drivers/mmc/host/s3cmci.c
@@ -1830,7 +1830,7 @@ static int __devexit s3cmci_remove(struct platform_device *pdev)
 
 	clk_put(host->clk);
 
-	tasklet_disable(&host->pio_tasklet);
+	tasklet_kill(&host->pio_tasklet);
 
 	if (s3cmci_host_usedma(host))
 		s3c2410_dma_free(host->dma, &s3cmci_dma_client);
-- 
1.7.9.5

             reply	other threads:[~2012-10-31 10:48 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2012-10-31 10:48 Xiaotian Feng [this message]
2012-10-31 10:48 ` [PATCH] mmc: s3cmci: use tasklet_kill in device remove/release process Xiaotian Feng

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=1351680525-27253-1-git-send-email-xtfeng@gmail.com \
    --to=xtfeng@gmail.com \
    --cc=ben-linux@fluff.org \
    --cc=cjb@laptop.org \
    --cc=dannyfeng@tencent.com \
    --cc=linux-arm-kernel@lists.infradead.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-mmc@vger.kernel.org \
    /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.