1. 20 4月, 2014 5 次提交
  2. 28 1月, 2014 1 次提交
    • A
      Input: gtco - fix usb_dev leak · 1f906f83
      Alexey Khoroshilov 提交于
      There is usb_get_dev() in gtco_probe(), but there is no usb_put_dev()
      anywhere in the driver.
      
      As pointed out by Dmitry Torokhov:
      The lifetime of gtco structure is already directly tied to lifetime of
      usb_dev: when destroying usb_dev driver core will call remove() function
      of currently bound driver (in our case gtco) which will destroy gtco
      memory. Taking additional reference is not needed here.
      
      Found by Linux Driver Verification project (linuxtesting.org).
      Signed-off-by: NAlexey Khoroshilov <khoroshilov@ispras.ru>
      Signed-off-by: NDmitry Torokhov <dmitry.torokhov@gmail.com>
      1f906f83
  3. 21 1月, 2014 2 次提交
  4. 07 1月, 2014 1 次提交
  5. 16 12月, 2013 1 次提交
  6. 26 11月, 2013 3 次提交
  7. 23 10月, 2013 3 次提交
  8. 16 10月, 2013 1 次提交
  9. 21 9月, 2013 5 次提交
  10. 25 8月, 2013 2 次提交
  11. 13 8月, 2013 1 次提交
  12. 19 6月, 2013 1 次提交
  13. 05 6月, 2013 1 次提交
  14. 24 5月, 2013 1 次提交
  15. 06 5月, 2013 2 次提交
  16. 19 4月, 2013 2 次提交
  17. 16 4月, 2013 1 次提交
  18. 08 4月, 2013 1 次提交
  19. 10 3月, 2013 1 次提交
  20. 14 2月, 2013 1 次提交
  21. 24 1月, 2013 1 次提交
    • C
      Input: wacom - fix wacom_set_report retry logic · 9937c026
      Chris Bagwell 提交于
      Logic sets a value and then reads it back to make sure it worked
      and retries write on failures.  Since read and write share a buffer,
      it needs to be set back up before writing though.
      
      Issue is not seen a lot because 1) it doesn't need to retry for
      a lot of tablets and 2) a lot of failures that need a retry are
      from an -ETIMEDOUT and hopefully buffer is not touched in this case.
      
      At least one user has shown logs with buffer being modified during
      -ETIMEDOUT case with linux 3.7 kernel.
      Signed-off-by: NChris Bagwell <chris@cnpbagwell.com>
      Signed-off-by: NDmitry Torokhov <dmitry.torokhov@gmail.com>
      9937c026
  22. 06 1月, 2013 2 次提交
  23. 04 12月, 2012 1 次提交