All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] rapidio/tsi721: use tasklet_kill in device remove/release process
@ 2012-10-31 10:52 Xiaotian Feng
  2012-11-05 16:11 ` Bounine, Alexandre
  0 siblings, 1 reply; 2+ messages in thread
From: Xiaotian Feng @ 2012-10-31 10:52 UTC (permalink / raw)
  To: linux-kernel; +Cc: Xiaotian Feng, Xiaotian Feng, Matt Porter, Alexandre Bounine

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: Matt Porter <mporter@kernel.crashing.org>
Cc: Alexandre Bounine <alexandre.bounine@idt.com>
Cc: Andrew Morton <akpm@linux-foundation.org> 
---
 drivers/rapidio/devices/tsi721_dma.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/rapidio/devices/tsi721_dma.c b/drivers/rapidio/devices/tsi721_dma.c
index 92e06a5..a098fbc 100644
--- a/drivers/rapidio/devices/tsi721_dma.c
+++ b/drivers/rapidio/devices/tsi721_dma.c
@@ -589,7 +589,7 @@ static void tsi721_free_chan_resources(struct dma_chan *dchan)
 	BUG_ON(!list_empty(&bdma_chan->active_list));
 	BUG_ON(!list_empty(&bdma_chan->queue));
 
-	tasklet_disable(&bdma_chan->tasklet);
+	tasklet_kill(&bdma_chan->tasklet);
 
 	spin_lock_bh(&bdma_chan->lock);
 	list_splice_init(&bdma_chan->free_list, &list);
-- 
1.7.9.5


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

* RE: [PATCH] rapidio/tsi721: use tasklet_kill in device remove/release process
  2012-10-31 10:52 [PATCH] rapidio/tsi721: use tasklet_kill in device remove/release process Xiaotian Feng
@ 2012-11-05 16:11 ` Bounine, Alexandre
  0 siblings, 0 replies; 2+ messages in thread
From: Bounine, Alexandre @ 2012-11-05 16:11 UTC (permalink / raw)
  To: Xiaotian Feng, linux-kernel@vger.kernel.org
  Cc: Xiaotian Feng, Matt Porter, Andrew Morton

On Wed, October 31, 2012 6:53 AM
Xiaotian Feng <xtfeng@gmail.com> wrote:
> 
> 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: Matt Porter <mporter@kernel.crashing.org>
> Cc: Alexandre Bounine <alexandre.bounine@idt.com>
> Cc: Andrew Morton <akpm@linux-foundation.org>
> ---
>  drivers/rapidio/devices/tsi721_dma.c |    2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/drivers/rapidio/devices/tsi721_dma.c
> b/drivers/rapidio/devices/tsi721_dma.c
> index 92e06a5..a098fbc 100644
> --- a/drivers/rapidio/devices/tsi721_dma.c
> +++ b/drivers/rapidio/devices/tsi721_dma.c
> @@ -589,7 +589,7 @@ static void tsi721_free_chan_resources(struct
> dma_chan *dchan)
>  	BUG_ON(!list_empty(&bdma_chan->active_list));
>  	BUG_ON(!list_empty(&bdma_chan->queue));
> 
> -	tasklet_disable(&bdma_chan->tasklet);
> +	tasklet_kill(&bdma_chan->tasklet);
> 
>  	spin_lock_bh(&bdma_chan->lock);
>  	list_splice_init(&bdma_chan->free_list, &list);
> --
> 1.7.9.5

I agree with reported issue.
Switching to tasklet_kill() also requires to disable interrupts first.
I will update that part and post a new patch.

    

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

end of thread, other threads:[~2012-11-05 16:13 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-10-31 10:52 [PATCH] rapidio/tsi721: use tasklet_kill in device remove/release process Xiaotian Feng
2012-11-05 16:11 ` Bounine, Alexandre

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.