An error occurred fetching the project authors.
  1. 07 Oct, 2011 9 commits
  2. 27 Sep, 2011 1 commit
  3. 21 Sep, 2011 1 commit
  4. 11 Aug, 2011 4 commits
  5. 30 Jun, 2011 1 commit
    • Peter Hurley's avatar
      Bluetooth: Fix hidp disconnect deadlocks and lost wakeup · 7bb59df8
      Peter Hurley authored
      Partial revert of commit aabf6f89. When the hidp session thread
      was converted from kernel_thread to kthread, the atomic/wakeups
      were replaced with kthread_stop. kthread_stop has blocking semantics
      which are inappropriate for the hidp session kthread. In addition,
      the kthread signals itself to terminate in hidp_process_hid_control()
      - it cannot do this with kthread_stop().
      
      Lastly, a wakeup can be lost if the wakeup happens between checking
      for the loop exit condition and setting the current state to
      TASK_INTERRUPTIBLE. (Without appropriate synchronization mechanisms,
      the task state should not be changed between the condition test and
      the yield - via schedule() - as this creates a race between the
      wakeup and resetting the state back to interruptible.)
      Signed-off-by: default avatarPeter Hurley <peter@hurleysoftware.com>
      Signed-off-by: default avatarGustavo F. Padovan <padovan@profusion.mobi>
      7bb59df8
  6. 28 Apr, 2011 1 commit
  7. 05 Apr, 2011 1 commit
  8. 31 Mar, 2011 1 commit
  9. 22 Feb, 2011 1 commit
  10. 15 Feb, 2011 1 commit
  11. 11 Feb, 2011 3 commits
  12. 08 Feb, 2011 1 commit
  13. 01 Dec, 2010 1 commit
  14. 12 Oct, 2010 1 commit
  15. 20 Apr, 2010 1 commit
  16. 05 Feb, 2010 1 commit
  17. 03 Feb, 2010 1 commit
    • Jiri Kosina's avatar
      HID: make raw reports possible for both feature and output reports · d4bfa033
      Jiri Kosina authored
      In commit 2da31939 ("Bluetooth: Implement raw output support for HIDP
      layer"), support for Bluetooth hid_output_raw_report was added, but it
      pushes the data to the intr socket instead of the ctrl one. This has been
      fixed by 6bf8268f ("Bluetooth: Use the control channel for raw HID reports")
      
      Still, it is necessary to distinguish whether the report in question should be
      either FEATURE or OUTPUT. For this, we have to extend the generic HID API,
      so that hid_output_raw_report() callback provides means to specify this
      value so that it can be passed down to lower level hardware drivers (currently
      Bluetooth and USB).
      
      Based on original patch by Bastien Nocera <hadess@hadess.net>
      Acked-by: default avatarMarcel Holtmann <marcel@holtmann.org>
      Signed-off-by: default avatarJiri Kosina <jkosina@suse.cz>
      d4bfa033
  18. 30 Jan, 2010 1 commit
  19. 17 Dec, 2009 1 commit
  20. 03 Dec, 2009 1 commit
  21. 17 Sep, 2009 1 commit
  22. 22 Aug, 2009 3 commits
  23. 30 Nov, 2008 1 commit
  24. 14 Oct, 2008 2 commits