Commit 978134c4 authored by Dmitry Torokhov's avatar Dmitry Torokhov

Input: fix open count when closing inhibited device

Because the kernel increments device's open count in input_open_device()
even if device is inhibited, the counter should always be decremented in
input_close_device() to keep it balanced.

Fixes: a1816164 ("Input: Add "inhibited" property")
Reviewed-by: default avatarPeter Hutterer <peter.hutterer@who-t.net>
Link: https://lore.kernel.org/r/ZFFz0xAdPNSL3PT7@google.com
Cc: stable@vger.kernel.org
Signed-off-by: default avatarDmitry Torokhov <dmitry.torokhov@gmail.com>
parent 529de2f1
...@@ -703,7 +703,7 @@ void input_close_device(struct input_handle *handle) ...@@ -703,7 +703,7 @@ void input_close_device(struct input_handle *handle)
__input_release_device(handle); __input_release_device(handle);
if (!dev->inhibited && !--dev->users) { if (!--dev->users && !dev->inhibited) {
if (dev->poller) if (dev->poller)
input_dev_poller_stop(dev->poller); input_dev_poller_stop(dev->poller);
if (dev->close) if (dev->close)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment