* [RFC][PATCH v2 14/31] timers: HID: Use del_timer_shutdown() before freeing timer [not found] <20221027150525.753064657@goodmis.org> @ 2022-10-27 15:05 ` Steven Rostedt [not found] ` <20221027150927.992061541@goodmis.org> 1 sibling, 0 replies; 3+ messages in thread From: Steven Rostedt @ 2022-10-27 15:05 UTC (permalink / raw) To: linux-kernel Cc: Linus Torvalds, Thomas Gleixner, Stephen Boyd, Guenter Roeck, David Rheinsberg, Jiri Kosina, Benjamin Tissoires, linux-input From: "Steven Rostedt (Google)" <rostedt@goodmis.org> Before a timer is freed, del_timer_shutdown() must be called. Link: https://lore.kernel.org/all/20220407161745.7d6754b3@gandalf.local.home/ Cc: David Rheinsberg <david.rheinsberg@gmail.com> Cc: Jiri Kosina <jikos@kernel.org> Cc: Benjamin Tissoires <benjamin.tissoires@redhat.com> Cc: linux-input@vger.kernel.org Signed-off-by: Steven Rostedt (Google) <rostedt@goodmis.org> --- drivers/hid/hid-wiimote-core.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/hid/hid-wiimote-core.c b/drivers/hid/hid-wiimote-core.c index 4399d6c6afef..d10fa38de297 100644 --- a/drivers/hid/hid-wiimote-core.c +++ b/drivers/hid/hid-wiimote-core.c @@ -1764,7 +1764,7 @@ static void wiimote_destroy(struct wiimote_data *wdata) spin_unlock_irqrestore(&wdata->state.lock, flags); cancel_work_sync(&wdata->init_worker); - del_timer_sync(&wdata->timer); + del_timer_shutdown(&wdata->timer); device_remove_file(&wdata->hdev->dev, &dev_attr_devtype); device_remove_file(&wdata->hdev->dev, &dev_attr_extension); -- 2.35.1 ^ permalink raw reply related [flat|nested] 3+ messages in thread
[parent not found: <20221027150927.992061541@goodmis.org>]
* Re: [RFC][PATCH v2 15/31] timers: Input: Use del_timer_shutdown() before freeing timer [not found] ` <20221027150927.992061541@goodmis.org> @ 2022-10-27 15:21 ` Steven Rostedt 2022-10-27 16:38 ` Dmitry Torokhov 0 siblings, 1 reply; 3+ messages in thread From: Steven Rostedt @ 2022-10-27 15:21 UTC (permalink / raw) To: linux-kernel Cc: Linus Torvalds, Thomas Gleixner, Stephen Boyd, Guenter Roeck, Dmitry Torokhov, Pali Rohár, James E.J. Bottomley, Helge Deller, Tony Lindgren, Arnd Bergmann, linux-input, linux-parisc [ quilt mail --send still can't handle unicode characters. Here's the patch again ] From: "Steven Rostedt (Google)" <rostedt@goodmis.org> Before a timer is freed, del_timer_shutdown() must be called. Link: https://lore.kernel.org/all/20220407161745.7d6754b3@gandalf.local.home/ Cc: Dmitry Torokhov <dmitry.torokhov@gmail.com> Cc: "Pali Rohár" <pali@kernel.org> Cc: "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com> Cc: Helge Deller <deller@gmx.de> Cc: Tony Lindgren <tony@atomide.com> Cc: Arnd Bergmann <arnd@arndb.de> Cc: linux-input@vger.kernel.org Cc: linux-parisc@vger.kernel.org Signed-off-by: Steven Rostedt (Google) <rostedt@goodmis.org> --- drivers/input/keyboard/locomokbd.c | 2 +- drivers/input/keyboard/omap-keypad.c | 2 +- drivers/input/mouse/alps.c | 2 +- drivers/input/serio/hil_mlc.c | 2 +- drivers/input/serio/hp_sdc.c | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/drivers/input/keyboard/locomokbd.c b/drivers/input/keyboard/locomokbd.c index dae053596572..aabd1f6a986a 100644 --- a/drivers/input/keyboard/locomokbd.c +++ b/drivers/input/keyboard/locomokbd.c @@ -310,7 +310,7 @@ static void locomokbd_remove(struct locomo_dev *dev) free_irq(dev->irq[0], locomokbd); - del_timer_sync(&locomokbd->timer); + del_timer_shutdown(&locomokbd->timer); input_unregister_device(locomokbd->input); locomo_set_drvdata(dev, NULL); diff --git a/drivers/input/keyboard/omap-keypad.c b/drivers/input/keyboard/omap-keypad.c index 57447d6c9007..39974158961d 100644 --- a/drivers/input/keyboard/omap-keypad.c +++ b/drivers/input/keyboard/omap-keypad.c @@ -296,7 +296,7 @@ static int omap_kp_remove(struct platform_device *pdev) omap_writew(1, OMAP1_MPUIO_BASE + OMAP_MPUIO_KBD_MASKIT); free_irq(omap_kp->irq, omap_kp); - del_timer_sync(&omap_kp->timer); + del_timer_shutdown(&omap_kp->timer); tasklet_kill(&kp_tasklet); /* unregister everything */ diff --git a/drivers/input/mouse/alps.c b/drivers/input/mouse/alps.c index 4a6b33bbe7ea..4d402e75aca8 100644 --- a/drivers/input/mouse/alps.c +++ b/drivers/input/mouse/alps.c @@ -2970,7 +2970,7 @@ static void alps_disconnect(struct psmouse *psmouse) struct alps_data *priv = psmouse->private; psmouse_reset(psmouse); - del_timer_sync(&priv->timer); + del_timer_shutdown(&priv->timer); if (priv->dev2) input_unregister_device(priv->dev2); if (!IS_ERR_OR_NULL(priv->dev3)) diff --git a/drivers/input/serio/hil_mlc.c b/drivers/input/serio/hil_mlc.c index d36e89d6fc54..33fc73da8e54 100644 --- a/drivers/input/serio/hil_mlc.c +++ b/drivers/input/serio/hil_mlc.c @@ -1017,7 +1017,7 @@ static int __init hil_mlc_init(void) static void __exit hil_mlc_exit(void) { - del_timer_sync(&hil_mlcs_kicker); + del_timer_shutdown(&hil_mlcs_kicker); tasklet_kill(&hil_mlcs_tasklet); } diff --git a/drivers/input/serio/hp_sdc.c b/drivers/input/serio/hp_sdc.c index 13eacf6ab431..49e5884df801 100644 --- a/drivers/input/serio/hp_sdc.c +++ b/drivers/input/serio/hp_sdc.c @@ -980,7 +980,7 @@ static void hp_sdc_exit(void) free_irq(hp_sdc.irq, &hp_sdc); write_unlock_irq(&hp_sdc.lock); - del_timer_sync(&hp_sdc.kicker); + del_timer_shutdown(&hp_sdc.kicker); tasklet_kill(&hp_sdc.task); -- 2.35.1 ^ permalink raw reply related [flat|nested] 3+ messages in thread
* Re: [RFC][PATCH v2 15/31] timers: Input: Use del_timer_shutdown() before freeing timer 2022-10-27 15:21 ` [RFC][PATCH v2 15/31] timers: Input: " Steven Rostedt @ 2022-10-27 16:38 ` Dmitry Torokhov 0 siblings, 0 replies; 3+ messages in thread From: Dmitry Torokhov @ 2022-10-27 16:38 UTC (permalink / raw) To: Steven Rostedt Cc: linux-kernel, Linus Torvalds, Thomas Gleixner, Stephen Boyd, Guenter Roeck, Pali Rohár, James E.J. Bottomley, Helge Deller, Tony Lindgren, Arnd Bergmann, linux-input, linux-parisc On Thu, Oct 27, 2022 at 11:21:17AM -0400, Steven Rostedt wrote: > [ > quilt mail --send still can't handle unicode characters. > Here's the patch again > ] > > From: "Steven Rostedt (Google)" <rostedt@goodmis.org> > > Before a timer is freed, del_timer_shutdown() must be called. > > Link: https://lore.kernel.org/all/20220407161745.7d6754b3@gandalf.local.home/ > > Cc: Dmitry Torokhov <dmitry.torokhov@gmail.com> > Cc: "Pali Rohár" <pali@kernel.org> > Cc: "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com> > Cc: Helge Deller <deller@gmx.de> > Cc: Tony Lindgren <tony@atomide.com> > Cc: Arnd Bergmann <arnd@arndb.de> > Cc: linux-input@vger.kernel.org > Cc: linux-parisc@vger.kernel.org > Signed-off-by: Steven Rostedt (Google) <rostedt@goodmis.org> Acked-by: Dmitry Torokhov <dmitry.torokhov@gmail.com> Please feel free to merge with the rest of the series. Thanks. -- Dmitry ^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2022-10-27 16:38 UTC | newest] Thread overview: 3+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- [not found] <20221027150525.753064657@goodmis.org> 2022-10-27 15:05 ` [RFC][PATCH v2 14/31] timers: HID: Use del_timer_shutdown() before freeing timer Steven Rostedt [not found] ` <20221027150927.992061541@goodmis.org> 2022-10-27 15:21 ` [RFC][PATCH v2 15/31] timers: Input: " Steven Rostedt 2022-10-27 16:38 ` Dmitry Torokhov
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox; as well as URLs for NNTP newsgroup(s).