1. 26 2月, 2015 9 次提交
  2. 25 2月, 2015 2 次提交
  3. 24 2月, 2015 3 次提交
  4. 23 2月, 2015 5 次提交
    • M
      Bluetooth: btusb: Fix issue with CSR based Intel Wireless controllers · 407550fe
      Marcel Holtmann 提交于
      Older Wireless controllers from Intel used CSR chips to provide support
      for Bluetooth.
      
      The commit d0ac9eb7 (Bluetooth: btusb: Ignore unknown Intel devices
      with generic descriptor) disabled these older controllers. To enable
      them again, put them into the blacklist and mark them clearly as CSR
      based controllers.
      
      T:  Bus=02 Lev=02 Prnt=02 Port=05 Cnt=01 Dev#=  3 Spd=12   MxCh= 0
      D:  Ver= 2.00 Cls=e0(wlcon) Sub=01 Prot=01 MxPS=64 #Cfgs=  1
      P:  Vendor=8087 ProdID=07da Rev=78.69
      C:* #Ifs= 2 Cfg#= 1 Atr=e0 MxPwr=  0mA
      I:* If#= 0 Alt= 0 #EPs= 3 Cls=e0(wlcon) Sub=01 Prot=01 Driver=btusb
      E:  Ad=81(I) Atr=03(Int.) MxPS=  16 Ivl=1ms
      E:  Ad=02(O) Atr=02(Bulk) MxPS=  64 Ivl=0ms
      E:  Ad=82(I) Atr=02(Bulk) MxPS=  64 Ivl=0ms
      I:* If#= 1 Alt= 0 #EPs= 2 Cls=e0(wlcon) Sub=01 Prot=01 Driver=btusb
      E:  Ad=03(O) Atr=01(Isoc) MxPS=   0 Ivl=1ms
      E:  Ad=83(I) Atr=01(Isoc) MxPS=   0 Ivl=1ms
      I:  If#= 1 Alt= 1 #EPs= 2 Cls=e0(wlcon) Sub=01 Prot=01 Driver=btusb
      E:  Ad=03(O) Atr=01(Isoc) MxPS=   9 Ivl=1ms
      E:  Ad=83(I) Atr=01(Isoc) MxPS=   9 Ivl=1ms
      I:  If#= 1 Alt= 2 #EPs= 2 Cls=e0(wlcon) Sub=01 Prot=01 Driver=btusb
      E:  Ad=03(O) Atr=01(Isoc) MxPS=  17 Ivl=1ms
      E:  Ad=83(I) Atr=01(Isoc) MxPS=  17 Ivl=1ms
      I:  If#= 1 Alt= 3 #EPs= 2 Cls=e0(wlcon) Sub=01 Prot=01 Driver=btusb
      E:  Ad=03(O) Atr=01(Isoc) MxPS=  25 Ivl=1ms
      E:  Ad=83(I) Atr=01(Isoc) MxPS=  25 Ivl=1ms
      I:  If#= 1 Alt= 4 #EPs= 2 Cls=e0(wlcon) Sub=01 Prot=01 Driver=btusb
      E:  Ad=03(O) Atr=01(Isoc) MxPS=  33 Ivl=1ms
      E:  Ad=83(I) Atr=01(Isoc) MxPS=  33 Ivl=1ms
      I:  If#= 1 Alt= 5 #EPs= 2 Cls=e0(wlcon) Sub=01 Prot=01 Driver=btusb
      E:  Ad=03(O) Atr=01(Isoc) MxPS=  49 Ivl=1ms
      E:  Ad=83(I) Atr=01(Isoc) MxPS=  49 Ivl=1ms
      Reported-by: NKenneth R. Crudup <kenny@panix.com>
      Signed-off-by: NMarcel Holtmann <marcel@holtmann.org>
      Signed-off-by: NJohan Hedberg <johan.hedberg@intel.com>
      407550fe
    • D
      r8169: Revert BQL and xmit_more support. · 87cda7cb
      David S. Miller 提交于
      There are certain regressions which are pointing to
      these two commits which we are having a hard time
      resolving.  So revert them for now.
      
      Specifically this reverts:
      
      	commit 0bec3b70
      	Author: Florian Westphal <fw@strlen.de>
      	Date:   Wed Jan 7 10:49:49 2015 +0100
      
      	    r8169: add support for xmit_more
      
      and
      
      	commit 1e918876
      	Author: Florian Westphal <fw@strlen.de>
      	Date:   Wed Oct 1 13:38:03 2014 +0200
      
      	    r8169: add support for Byte Queue Limits
      
      There were some attempts by Eric Dumazet to address some obvious
      problems in the TX flow, to see if they would fix the problems,
      but none of them seem to help for the regression reporters.
      Signed-off-by: NDavid S. Miller <davem@davemloft.net>
      87cda7cb
    • F
      wan: cosa: replace current->state by set_current_state() · 2c45015a
      Fabian Frederick 提交于
      Use helper functions to access current->state.
      Direct assignments are prone to races and therefore buggy.
      
      current->state = TASK_RUNNING is replaced by __set_current_state()
      
      Thanks to Peter Zijlstra for the exact definition of the problem.
      Suggested-By: NPeter Zijlstra <peterz@infradead.org>
      Signed-off-by: NFabian Frederick <fabf@skynet.be>
      Acked-By: NJan "Yenya" Kasprzak <kas@fi.muni.cz>
      Signed-off-by: NDavid S. Miller <davem@davemloft.net>
      2c45015a
    • F
      hso: replace current->state by __set_current_state() · 50462ce0
      Fabian Frederick 提交于
      Use helper functions to access current->state.
      Direct assignments are prone to races and therefore buggy.
      
      Thanks to Peter Zijlstra for the exact definition of the problem.
      Suggested-By: NPeter Zijlstra <peterz@infradead.org>
      Signed-off-by: NFabian Frederick <fabf@skynet.be>
      Signed-off-by: NDavid S. Miller <davem@davemloft.net>
      50462ce0
    • F
      mISDN: replace current->state by set_current_state() · 45cee4f5
      Fabian Frederick 提交于
      Use helper function to access current->state.
      Direct assignments are prone to races and therefore buggy.
      
      Thanks to Peter Zijlstra for the exact definition of the problem.
      Signed-off-by: NFabian Frederick <fabf@skynet.be>
      Signed-off-by: NDavid S. Miller <davem@davemloft.net>
      45cee4f5
  5. 21 2月, 2015 8 次提交
  6. 20 2月, 2015 1 次提交
  7. 18 2月, 2015 12 次提交