1. 09 11月, 2017 4 次提交
  2. 08 11月, 2017 1 次提交
  3. 05 11月, 2017 5 次提交
  4. 02 11月, 2017 1 次提交
  5. 21 10月, 2017 2 次提交
  6. 15 10月, 2017 1 次提交
  7. 12 10月, 2017 1 次提交
  8. 28 9月, 2017 2 次提交
    • G
      net/mlx5e: Fix calculated checksum offloads counters · 603e1f5b
      Gal Pressman 提交于
      Instead of calculating the offloads counters, count them explicitly.
      The calculations done for these counters would result in bugs in some
      cases, for example:
      When running TCP traffic over a VXLAN tunnel with TSO enabled the following
      counters would increase:
             tx_csum_partial: 1,333,284
             tx_csum_partial_inner: 29,286
             tx4_csum_partial_inner: 384
             tx7_csum_partial_inner: 8
             tx9_csum_partial_inner: 34
             tx10_csum_partial_inner: 26,807
             tx11_csum_partial_inner: 287
             tx12_csum_partial_inner: 27
             tx16_csum_partial_inner: 6
             tx25_csum_partial_inner: 1,733
      
      Seems like tx_csum_partial increased out of nowhere.
      The issue is in the following calculation in mlx5e_update_sw_counters:
      s->tx_csum_partial = s->tx_packets - tx_offload_none - s->tx_csum_partial_inner;
      
      While tx_packets increases by the number of GSO segments for each SKB,
      tx_csum_partial_inner will only increase by one, resulting in wrong
      tx_csum_partial counter.
      
      Fixes: bfe6d8d1 ("net/mlx5e: Reorganize ethtool statistics")
      Signed-off-by: NGal Pressman <galp@mellanox.com>
      Signed-off-by: NSaeed Mahameed <saeedm@mellanox.com>
      603e1f5b
    • G
      net/mlx5e: Print netdev features correctly in error message · b20eab15
      Gal Pressman 提交于
      Use the correct formatting for netdev features.
      
      Fixes: 0e405443 ("net/mlx5e: Improve set features ndo resiliency")
      Signed-off-by: NGal Pressman <galp@mellanox.com>
      Signed-off-by: NSaeed Mahameed <saeedm@mellanox.com>
      b20eab15
  9. 03 9月, 2017 12 次提交
  10. 31 8月, 2017 3 次提交
  11. 20 8月, 2017 2 次提交
  12. 19 8月, 2017 1 次提交
  13. 12 8月, 2017 1 次提交
  14. 09 8月, 2017 3 次提交
  15. 08 8月, 2017 1 次提交