1. 17 1月, 2017 12 次提交
  2. 16 1月, 2017 2 次提交
  3. 15 1月, 2017 2 次提交
    • D
      Merge tag 'mac80211-next-for-davem-2017-01-13' of... · bb60b8b3
      David S. Miller 提交于
      Merge tag 'mac80211-next-for-davem-2017-01-13' of git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next
      
      Johannes Berg says:
      
      ====================
      For 4.11, we seem to have more than in the past few releases:
       * socket owner support for connections, so when the wifi
         manager (e.g. wpa_supplicant) is killed, connections are
         torn down - wpa_supplicant is critical to managing certain
         operations, and can opt in to this where applicable
       * minstrel & minstrel_ht updates to be more efficient (time and space)
       * set wifi_acked/wifi_acked_valid for skb->destructor use in the
         kernel, which was already available to userspace
       * don't indicate new mesh peers that might be used if there's no
         room to add them
       * multicast-to-unicast support in mac80211, for better medium usage
         (since unicast frames can use *much* higher rates, by ~3 orders of
         magnitude)
       * add API to read channel (frequency) limitations from DT
       * add infrastructure to allow randomizing public action frames for
         MAC address privacy (still requires driver support)
       * many cleanups and small improvements/fixes across the board
      ====================
      Signed-off-by: NDavid S. Miller <davem@davemloft.net>
      bb60b8b3
    • S
      cxgb4: Remove redundant memset before memcpy · ca4b5eb8
      Shyam Saini 提交于
      The region set by the call to memset, immediately overwritten by
      the subsequent call to memcpy and thus makes the  memset redundant.
      
      Also remove the memset((&info, 0, sizeof(info)) on line 398 because
      info is memcpy()'ed to before being used in the loop and it isn't
      used outside of the loop.
      Signed-off-by: NShyam Saini <mayhs11saini@gmail.com>
      Reviewed-by: NTobias Klauser <tklauser@distanz.ch>
      Signed-off-by: NDavid S. Miller <davem@davemloft.net>
      ca4b5eb8
  4. 14 1月, 2017 23 次提交
  5. 13 1月, 2017 1 次提交
    • J
      cfg80211: Fix documentation for connect result · c88215d7
      Jouni Malinen 提交于
      The function documentation for cfg80211_connect_bss() and
      cfg80211_connect_result() was still claiming that they are used only for
      a success case while these functions can now be used to report both
      success and various failure cases. The actual use cases were already
      described in the connect() documentation.
      
      Update the function specific comments to note the failure cases and also
      describe how the special status == -1 case is used in
      cfg80211_connect_bss() to indicate a connection timeout based on the
      internal implementation in cfg80211_connect_timeout().
      Signed-off-by: NJouni Malinen <jouni@qca.qualcomm.com>
      [use tabs for indentation]
      Signed-off-by: NJohannes Berg <johannes.berg@intel.com>
      c88215d7