1. 29 1月, 2015 10 次提交
  2. 24 1月, 2015 1 次提交
  3. 16 1月, 2015 1 次提交
    • J
      cfg80211: change bandwidth reporting to explicit field · b51f3bee
      Johannes Berg 提交于
      For some reason, we made the bandwidth separate flags, which
      is rather confusing - a single rate cannot have different
      bandwidths at the same time.
      
      Change this to no longer be flags but use a separate field
      for the bandwidth ('bw') instead.
      
      While at it, add support for 5 and 10 MHz rates - these are
      reported as regular legacy rates with their real bitrate,
      but tagged as 5/10 now to make it easier to distinguish them.
      
      In the nl80211 API, the flags are preserved, but the code
      now can also clearly only set a single one of the flags.
      Signed-off-by: NJohannes Berg <johannes.berg@intel.com>
      b51f3bee
  4. 08 1月, 2015 2 次提交
    • J
      cfg80211: remove enum station_info_flags · 319090bf
      Johannes Berg 提交于
      This is really just duplicating the list of information that's
      already available in the nl80211 attribute, so remove the list.
      Two small changes are needed:
       * remove STATION_INFO_ASSOC_REQ_IES complete, but the length
         (assoc_req_ies_len) can be used instead
       * add NL80211_STA_INFO_RX_DROP_MISC which exists internally
         but not in nl80211 yet
      
      This gets rid of the duplicate maintenance of the two lists.
      Signed-off-by: NJohannes Berg <johannes.berg@intel.com>
      319090bf
    • J
      cfg80211: remove "channel" from survey names · 4ed20beb
      Johannes Berg 提交于
      All of the survey data is (currently) per channel anyway,
      so having the word "channel" in the name does nothing. In
      the next patch I'll introduce global data to the survey,
      where the word "channel" is actually confusing.
      Signed-off-by: NJohannes Berg <johannes.berg@intel.com>
      4ed20beb
  5. 07 1月, 2015 3 次提交
  6. 06 12月, 2014 2 次提交
  7. 26 11月, 2014 2 次提交
  8. 18 11月, 2014 1 次提交
    • A
      mwifiex: add auto TDLS support · 9927baa3
      Avinash Patil 提交于
      This patch adds auto TDLS support to mwifiex.
      
      Auto TDLS functionality works as follows:
      1. Whenever userspace application has triggered TDLS connection with
      any peer, driver would store this peer mac address details in its database.
      2. After this driver whenever driver receives packet on direct link,
      it would store rssi and timestamp in peer information.
      3. Whenever a packet is to be transmitted to non-AP peer in station mode,
      driver would check if TDLS link can be established by looking at peer RSSI
      information. Driver would initiate TDLS setup in such cases.
      4. Periodic timer is used for updating peer information.
      5. Auto TDLS peer list & timer are cleared during disconnection or driver unload.
      Signed-off-by: NAvinash Patil <patila@marvell.com>
      Signed-off-by: NCathy Luo <cluo@marvell.com>
      Signed-off-by: NJohn W. Linville <linville@tuxdriver.com>
      9927baa3
  9. 01 11月, 2014 2 次提交
  10. 20 10月, 2014 1 次提交
  11. 16 9月, 2014 3 次提交
  12. 26 8月, 2014 2 次提交
  13. 19 7月, 2014 1 次提交
  14. 16 7月, 2014 1 次提交
    • T
      net: set name_assign_type in alloc_netdev() · c835a677
      Tom Gundersen 提交于
      Extend alloc_netdev{,_mq{,s}}() to take name_assign_type as argument, and convert
      all users to pass NET_NAME_UNKNOWN.
      
      Coccinelle patch:
      
      @@
      expression sizeof_priv, name, setup, txqs, rxqs, count;
      @@
      
      (
      -alloc_netdev_mqs(sizeof_priv, name, setup, txqs, rxqs)
      +alloc_netdev_mqs(sizeof_priv, name, NET_NAME_UNKNOWN, setup, txqs, rxqs)
      |
      -alloc_netdev_mq(sizeof_priv, name, setup, count)
      +alloc_netdev_mq(sizeof_priv, name, NET_NAME_UNKNOWN, setup, count)
      |
      -alloc_netdev(sizeof_priv, name, setup)
      +alloc_netdev(sizeof_priv, name, NET_NAME_UNKNOWN, setup)
      )
      
      v9: move comments here from the wrong commit
      Signed-off-by: NTom Gundersen <teg@jklm.no>
      Reviewed-by: NDavid Herrmann <dh.herrmann@gmail.com>
      Signed-off-by: NDavid S. Miller <davem@davemloft.net>
      c835a677
  15. 04 7月, 2014 1 次提交
  16. 26 6月, 2014 3 次提交
  17. 23 6月, 2014 1 次提交
  18. 21 6月, 2014 1 次提交
  19. 20 6月, 2014 2 次提交