From: Dmitry Torokhov <dmitry.torokhov@gmail.com>
To: Xiaotian Feng <xtfeng@gmail.com>
Cc: linux-kernel@vger.kernel.org,
Xiaotian Feng <dannyfeng@tencent.com>,
Tony Lindgren <tony@atomide.com>,
Sourav Poddar <sourav.poddar@ti.com>,
Josh <joshua.taylor0@gmail.com>,
Greg Kroah-Hartman <gregkh@linuxfoundation.org>,
linux-input@vger.kernel.org
Subject: Re: [PATCH 1/3] input: do not use tasklet_disable before tasklet_kill
Date: Sat, 24 Nov 2012 23:58:46 -0800 [thread overview]
Message-ID: <20121125075846.GA21091@core.coreip.homeip.net> (raw)
In-Reply-To: <1351670761-26749-1-git-send-email-xtfeng@gmail.com>
Hi Xiaotian,
On Wed, Oct 31, 2012 at 04:05:59PM +0800, Xiaotian Feng wrote:
> If tasklet_disable() is called before related tasklet handled,
> tasklet_kill will never be finished. tasklet_kill is enough.
>
Could you please elaborate on this? Needing to disable tasket before
killing it is quite often needed when dealing with self-rescheduling
tasklets and so tasklet_disable() followed by tasklet_kill() must work.
If it does not we need to take care of it in softirq code instead of
individual drivers.
> Signed-off-by: Xiaotian Feng <dannyfeng@tencent.com>
> Cc: Dmitry Torokhov <dmitry.torokhov@gmail.com>
> Cc: Tony Lindgren <tony@atomide.com>
> Cc: Sourav Poddar <sourav.poddar@ti.com>
> Cc: Josh <joshua.taylor0@gmail.com>
> Cc: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
> Cc: linux-input@vger.kernel.org
> ---
> drivers/input/keyboard/omap-keypad.c | 3 +--
> drivers/input/serio/hil_mlc.c | 1 -
> 2 files changed, 1 insertion(+), 3 deletions(-)
>
> diff --git a/drivers/input/keyboard/omap-keypad.c b/drivers/input/keyboard/omap-keypad.c
> index 4a5fcc8..6c52447 100644
> --- a/drivers/input/keyboard/omap-keypad.c
> +++ b/drivers/input/keyboard/omap-keypad.c
> @@ -362,12 +362,11 @@ static int __devexit omap_kp_remove(struct platform_device *pdev)
> struct omap_kp *omap_kp = platform_get_drvdata(pdev);
>
> /* disable keypad interrupt handling */
> - tasklet_disable(&kp_tasklet);
> + tasklet_kill(&kp_tasklet);
> omap_writew(1, OMAP1_MPUIO_BASE + OMAP_MPUIO_KBD_MASKIT);
> free_irq(omap_kp->irq, omap_kp);
>
> del_timer_sync(&omap_kp->timer);
> - tasklet_kill(&kp_tasklet);
Exactly like here. If we do not disable tasklet before disabling IRQ and
freeing timer we may get into scenario when timer schedules tasket and
tasklet schedules timer again after we canceled it.
>
> /* unregister everything */
> input_unregister_device(omap_kp->input);
> diff --git a/drivers/input/serio/hil_mlc.c b/drivers/input/serio/hil_mlc.c
> index bfd3865..7fc1700 100644
> --- a/drivers/input/serio/hil_mlc.c
> +++ b/drivers/input/serio/hil_mlc.c
> @@ -1011,7 +1011,6 @@ static void __exit hil_mlc_exit(void)
> {
> del_timer_sync(&hil_mlcs_kicker);
>
> - tasklet_disable(&hil_mlcs_tasklet);
> tasklet_kill(&hil_mlcs_tasklet);
This seems like safe change.
Thanks.
--
Dmitry
prev parent reply other threads:[~2012-11-25 7:58 UTC|newest]
Thread overview: 12+ messages / expand[flat|nested] mbox.gz Atom feed top
2012-10-31 8:05 [PATCH 1/3] input: do not use tasklet_disable before tasklet_kill Xiaotian Feng
2012-10-31 8:06 ` [PATCH 2/3] usb: gadget: fsl_qe_udc: " Xiaotian Feng
2012-10-31 8:06 ` Xiaotian Feng
2012-10-31 13:26 ` Felipe Balbi
2012-10-31 13:26 ` Felipe Balbi
2012-10-31 14:35 ` Li Yang
2012-10-31 14:35 ` Li Yang
2012-10-31 14:34 ` Felipe Balbi
2012-10-31 14:34 ` Felipe Balbi
2012-10-31 8:06 ` [PATCH 3/3] tipc: " Xiaotian Feng
2012-11-03 19:15 ` David Miller
2012-11-25 7:58 ` Dmitry Torokhov [this message]
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=20121125075846.GA21091@core.coreip.homeip.net \
--to=dmitry.torokhov@gmail.com \
--cc=dannyfeng@tencent.com \
--cc=gregkh@linuxfoundation.org \
--cc=joshua.taylor0@gmail.com \
--cc=linux-input@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=sourav.poddar@ti.com \
--cc=tony@atomide.com \
--cc=xtfeng@gmail.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 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.