diff options
author | Dmitry Torokhov <dmitry.torokhov@gmail.com> | 2010-01-05 20:56:02 -0500 |
---|---|---|
committer | Dmitry Torokhov <dmitry.torokhov@gmail.com> | 2010-01-06 03:16:14 -0500 |
commit | 0ef7a26af1278f7ec0b718148e88f01ba1953835 (patch) | |
tree | d62caa3387e9ed30051e764feacc96a15172e626 /drivers/input | |
parent | 59b015133cd0034f5904a76969d73476380aac46 (diff) |
Input: atkbd - fix canceling event_work in disconnect
We need to first unregister input device and only then cancel event work
since events can arrive (and cause event work to get scheduled again)
until input_unregister_device() returns.
Signed-off-by: Dmitry Torokhov <dtor@mail.ru>
Diffstat (limited to 'drivers/input')
-rw-r--r-- | drivers/input/keyboard/atkbd.c | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/drivers/input/keyboard/atkbd.c b/drivers/input/keyboard/atkbd.c index 1cf32a7814d0..7b4056292eaf 100644 --- a/drivers/input/keyboard/atkbd.c +++ b/drivers/input/keyboard/atkbd.c | |||
@@ -855,10 +855,16 @@ static void atkbd_disconnect(struct serio *serio) | |||
855 | 855 | ||
856 | atkbd_disable(atkbd); | 856 | atkbd_disable(atkbd); |
857 | 857 | ||
858 | /* make sure we don't have a command in flight */ | 858 | input_unregister_device(atkbd->dev); |
859 | |||
860 | /* | ||
861 | * Make sure we don't have a command in flight. | ||
862 | * Note that since atkbd->enabled is false event work will keep | ||
863 | * rescheduling itself until it gets canceled and will not try | ||
864 | * accessing freed input device or serio port. | ||
865 | */ | ||
859 | cancel_delayed_work_sync(&atkbd->event_work); | 866 | cancel_delayed_work_sync(&atkbd->event_work); |
860 | 867 | ||
861 | input_unregister_device(atkbd->dev); | ||
862 | serio_close(serio); | 868 | serio_close(serio); |
863 | serio_set_drvdata(serio, NULL); | 869 | serio_set_drvdata(serio, NULL); |
864 | kfree(atkbd); | 870 | kfree(atkbd); |