1. 11 5月, 2016 5 次提交
  2. 10 5月, 2016 2 次提交
  3. 05 5月, 2016 1 次提交
    • E
      iwlwifi: mvm: don't override the rate with the AMSDU len · 5c08b0f5
      Emmanuel Grumbach 提交于
      The TSO code creates A-MSDUs from a single large send. Each
      A-MSDU is an skb and skb->len doesn't include the number of
      bytes which need to be added for the headers being added
      (subframe header, TCP header, IP header, SNAP, padding).
      
      To be able to set the right value in the Tx command, we
      put the number of bytes added by those headers in
      driver_data in iwl_mvm_tx_tso and use this value in
      iwl_mvm_set_tx_cmd.
      
      The problem by setting this value in driver_data is that
      it overrides the ieee80211_tx_info. The bug manifested
      itself when we send P2P related frames in CCK since the
      rate in ieee80211_tx_info is zero-ed. This of course is
      a violation of the P2P specification.
      
      To fix this, copy the original ieee80211_tx_info to the
      stack and pass it to the functions which need it.
      Assign the number of bytes added by the headers to the
      driver_data inside the skb itself.
      
      Fixes: a6d5e32f ("iwlwifi: mvm: send large SKBs to the transport")
      Signed-off-by: NEmmanuel Grumbach <emmanuel.grumbach@intel.com>
      5c08b0f5
  4. 12 4月, 2016 2 次提交
    • J
      cfg80211: remove enum ieee80211_band · 57fbcce3
      Johannes Berg 提交于
      This enum is already perfectly aliased to enum nl80211_band, and
      the only reason for it is that we get IEEE80211_NUM_BANDS out of
      it. There's no really good reason to not declare the number of
      bands in nl80211 though, so do that and remove the cfg80211 one.
      Signed-off-by: NJohannes Berg <johannes.berg@intel.com>
      57fbcce3
    • M
      iwlwifi: mvm: fix accessing Null pointer during fw dump collection · f742aaf3
      Matti Gottlieb 提交于
      The firwmare file can come with data that is relevant for paging. This
      data is availablet to the firmware upon request, but it stored in the
      host's memory. During the firmware init flow, the driver configures the
      firmware so that the firwmare knows where is the data.
      When paging is used, the variable paging_mem_size is the number of bytes
      that are available through paging. This variable is not zeror-ed if the
      driver fails to configure the paging in the firmware, but the memory is
      freed which is inconsistent.
      This inconsistency led to a NULL pointer dereference in the code that
      collects the debug data.
      
      Fix this by zero-ing the paging_mem_size variable and NULLify the
      relevant pointers, so that the code that collects the debug data will
      know that the paging data is not available.
      Signed-off-by: NMatti Gottlieb <matti.gottlieb@intel.com>
      Signed-off-by: NEmmanuel Grumbach <emmanuel.grumbach@intel.com>
      f742aaf3
  5. 06 4月, 2016 1 次提交
  6. 30 3月, 2016 23 次提交
  7. 21 3月, 2016 1 次提交
  8. 20 3月, 2016 3 次提交
  9. 10 3月, 2016 2 次提交