]> git.baikalelectronics.ru Git - kernel.git/commit
HID: hiddev: fix mess in hiddev_open()
authorDmitry Torokhov <dmitry.torokhov@gmail.com>
Tue, 17 Dec 2019 22:50:21 +0000 (14:50 -0800)
committerBenjamin Tissoires <benjamin.tissoires@redhat.com>
Wed, 18 Dec 2019 14:18:38 +0000 (15:18 +0100)
commit3c3f4f9c931e78dc747d7110ab6b7974bb1c2b05
tree44e0eaa825fa0e9ba30d65dd7e8d89dbdeead076
parente785d6a7a826102638f0cc8cceb542421c18bcc8
HID: hiddev: fix mess in hiddev_open()

The open method of hiddev handler fails to bring the device out of
autosuspend state as was promised in 9b58e93a776a, as it actually has 2
blocks that try to start the transport (call hid_hw_open()) with both
being guarded by the "open" counter, so the 2nd block is never executed as
the first block increments the counter so it is never at 0 when we check
it for the second block.

Additionally hiddev_open() was leaving counter incremented on errors,
causing the device to never be reopened properly if there was ever an
error.

Let's fix all of this by factoring out code that creates client structure
and powers up the device into a separate function that is being called
from usbhid_open() with the "existancelock" being held.

Fixes: 9b58e93a776a ("HID: autosuspend support for USB HID")
Signed-off-by: Dmitry Torokhov <dmitry.torokhov@gmail.com>
Signed-off-by: Benjamin Tissoires <benjamin.tissoires@redhat.com>
drivers/hid/usbhid/hiddev.c