1. 22 3月, 2019 1 次提交
  2. 04 2月, 2019 1 次提交
  3. 29 1月, 2019 2 次提交
  4. 26 1月, 2019 2 次提交
  5. 20 12月, 2018 1 次提交
  6. 14 12月, 2018 1 次提交
  7. 11 11月, 2018 1 次提交
  8. 08 10月, 2018 2 次提交
  9. 06 10月, 2018 1 次提交
  10. 28 9月, 2018 2 次提交
  11. 31 8月, 2018 3 次提交
  12. 02 8月, 2018 2 次提交
  13. 26 7月, 2018 3 次提交
  14. 20 4月, 2018 6 次提交
  15. 16 2月, 2018 1 次提交
  16. 05 1月, 2018 1 次提交
  17. 18 10月, 2017 1 次提交
  18. 06 10月, 2017 1 次提交
  19. 18 8月, 2017 1 次提交
  20. 10 8月, 2017 2 次提交
  21. 01 8月, 2017 2 次提交
  22. 23 6月, 2017 3 次提交
    • J
      iwlwifi: fix TX tracing for non-linear SKBs · 8790fce4
      Johannes Berg 提交于
      When sending non-linear SKBs that should be included in the regular
      TX tracing completely (and not be pushed into the tx_data tracing),
      the (tracing) code didn't correctly take the fact that they were
      non-linear into account and added only the skb head portion.
      
      This probably never really triggered, since those frames we want
      traced fully are most likely linear anyway, but the code gets easier
      to understand and we lose an argument to the tracing function, so
      overall fixing this is better.
      
      Fixes: 206eea78 ("iwlwifi: pcie: support frag SKBs")
      Signed-off-by: NJohannes Berg <johannes.berg@intel.com>
      Signed-off-by: NLuca Coelho <luciano.coelho@intel.com>
      8790fce4
    • J
      iwlwifi: simplify data tracepoint · 78c1acf3
      Johannes Berg 提交于
      There's no need to calculate the data_len outside of the tracepoint,
      since it's always skb->len - hdr_len, which are both available inside.
      Simplify the callers and move the calculation in.
      Signed-off-by: NJohannes Berg <johannes.berg@intel.com>
      Signed-off-by: NLuca Coelho <luciano.coelho@intel.com>
      78c1acf3
    • J
      iwlwifi: pcie: don't report RF-kill enabled while shutting down · 326477e4
      Johannes Berg 提交于
      When toggling the RF-kill pin quickly in succession, the driver can
      get rather confused because it might be in the process of shutting
      down, expecting all commands to go through quickly due to rfkill,
      but the transport already thinks the device is accessible again,
      even though it previously shut it down. This leads to bugs, and I
      even observed a kernel panic.
      
      Avoid this by making the PCIe code only report that the radio is
      enabled again after the higher layers actually decided to shut it
      off.
      
      This also pulls out this common RF-kill checking code into a common
      function called by both transport generations and also moves it to
      the direct method - in the internal helper we don't really care
      about the RF-kill status anymore since we won't report it up until
      the stop anyway.
      Signed-off-by: NJohannes Berg <johannes.berg@intel.com>
      Signed-off-by: NLuca Coelho <luciano.coelho@intel.com>
      326477e4