1. 23 11月, 2012 1 次提交
    • J
      mac80211: fix RX chains configuration · 76c5fa0f
      Johannes Berg 提交于
      If the driver doesn't support 40 MHz channels, then
      mac80211 erroneously sets number of RX chains to one
      although the number of chains is independent of the
      support for 40 MHz channels.
      
      Fix this by checking the 40 MHz support only for the
      code that sets the 40 MHz channel not the complete
      HT code block.
      
      This also means the HT20 channel type will always be
      set in the changed code block so there's no need to
      set it in case we override the AP due to invalid IEs
      in the probe response/beacon.
      
      The indentation is a bit quirky, but I'm rewriting
      this code for VHT support so this will change again
      very soon.
      Signed-off-by: NJohannes Berg <johannes.berg@intel.com>
      76c5fa0f
  2. 06 11月, 2012 1 次提交
  3. 05 11月, 2012 1 次提交
    • J
      mac80211: send deauth only with channel context · 86552017
      Johannes Berg 提交于
      When userspace asks to deauthenticate and we're just
      authenticated (or still authenticating) send a deauth
      frame instead of deleting the auth request.
      
      On the other hand, if we've just disassociated and
      therefore deleted all our state already, drop the
      deauth request because we no longer have a channel
      context to send it on.
      Signed-off-by: NJohannes Berg <johannes.berg@intel.com>
      86552017
  4. 30 10月, 2012 1 次提交
    • J
      mac80211: handle TX power per virtual interface · 1ea6f9c0
      Johannes Berg 提交于
      Even before channel contexts/multi-channel, having a
      single global TX power limit was already problematic,
      in particular if two managed interfaces connected to
      two APs with different power constraints. The channel
      context introduction completely broke this though and
      in fact I had disabled TX power configuration there
      for drivers using channel contexts.
      
      Change everything to track TX power per interface so
      that different user settings and different channel
      maxima are treated correctly. Also continue tracking
      the global TX power though for compatibility with
      applications that attempt to configure the wiphy's
      TX power globally.
      Signed-off-by: NJohannes Berg <johannes.berg@intel.com>
      1ea6f9c0
  5. 25 10月, 2012 1 次提交
  6. 18 10月, 2012 1 次提交
  7. 17 10月, 2012 8 次提交
  8. 15 10月, 2012 1 次提交
  9. 21 9月, 2012 1 次提交
  10. 14 9月, 2012 2 次提交
  11. 07 9月, 2012 1 次提交
  12. 06 9月, 2012 2 次提交
  13. 04 9月, 2012 1 次提交
  14. 20 8月, 2012 6 次提交
  15. 02 8月, 2012 2 次提交
  16. 31 7月, 2012 9 次提交
  17. 17 7月, 2012 1 次提交
    • E
      mac80211: go out of PS before sending disassoc · 88bc40e8
      Eliad Peller 提交于
      on disassoc, ieee80211_set_disassoc() goes out of PS
      before indicating BSS_CHANGED_ASSOC (not sure why this
      is needed, but some drivers might count on the current
      behavior).
      
      However, it does it after sending the disassoc
      frame, which results in null-data frame being sent
      (in order to go out of ps) after we were already sent
      the disassoc, which is invalid.
      
      Fix it by going out of ps before sending the disassoc.
      Signed-off-by: NEliad Peller <eliad@wizery.com>
      Signed-off-by: NJohannes Berg <johannes.berg@intel.com>
      88bc40e8