1. 11 7月, 2009 37 次提交
  2. 09 7月, 2009 3 次提交
    • L
      p54: tx refused but queue active · 47ab3840
      Larry Finger 提交于
      In the mainline kernel, p54usb will fail because the TX queue length can
      become < 0. This problem has been reported as Bugzilla #13725. The failure
      is expressed by the following message in the logs:
      
      WARNING: at net/mac80211/tx.c:1325 ieee80211_tx+0x23c/0x298 [mac80211]()
      Hardware name: HP Pavilion dv2700 Notebook PC
      tx refused but queue active
      
      This problem has been recently observed in the wireless-testing tree, where
      a full solution is being tested. That fix is too invasive for 2.6.31-rcX,
      but the simple change supplied here will prevent the failure.
      Signed-off-by: NLarry Finger <Larry.Finger@lwfinger.net>
      Signed-off-by: NJohn W. Linville <linville@tuxdriver.com>
      47ab3840
    • J
      Atheros Kconfig needs to be dependent on WLAN_80211 · 804ef71e
      Jay Sternberg 提交于
      Atheros top level menu needs a "depends WLAN_80211" to properly indent
      within menuconfig and xconfig interfaces.
      
      This is purely a visual issue but it effects all subsequent drivers.
      The issue is the top level menu does not include a dependency on
      WLAN_80211 so within the tree structure, Atheros is at the same level as
      WLAN_80211 but when WLAN_80211 collapsed, the menu disappears along with
      all subsequent drives, so it is really a subordinate.
      Signed-off-by: NJay Sternberg <jay.e.sternberg@intel.com>
      Signed-off-by: NJohn W. Linville <linville@tuxdriver.com>
      804ef71e
    • J
      mac80211_hwsim: avoid NULL access · 4ff17667
      Johannes Berg 提交于
      There's a race condition -- started can be set to true
      before channel is set due to the way mac80211 callbacks
      currently work (->start should probably pass the channel
      we would like to have initially). For now simply add a
      check to hwsim to avoid dereferencing the NULL channel
      pointer.
      Signed-off-by: NJohannes Berg <johannes@sipsolutions.net>
      Signed-off-by: NJohn W. Linville <linville@tuxdriver.com>
      4ff17667