1. 04 2月, 2020 1 次提交
  2. 27 1月, 2020 13 次提交
  3. 25 1月, 2020 1 次提交
  4. 23 1月, 2020 1 次提交
  5. 18 1月, 2020 3 次提交
  6. 17 1月, 2020 1 次提交
    • F
      net: systemport: Fixed queue mapping in internal ring map · 5a9ef194
      Florian Fainelli 提交于
      We would not be transmitting using the correct SYSTEMPORT transmit queue
      during ndo_select_queue() which looks up the internal TX ring map
      because while establishing the mapping we would be off by 4, so for
      instance, when we populate switch port mappings we would be doing:
      
      switch port 0, queue 0 -> ring index #0
      switch port 0, queue 1 -> ring index #1
      ...
      switch port 0, queue 3 -> ring index #3
      switch port 1, queue 0 -> ring index #8 (4 + 4 * 1)
      ...
      
      instead of using ring index #4. This would cause our ndo_select_queue()
      to use the fallback queue mechanism which would pick up an incorrect
      ring for that switch port. Fix this by using the correct switch queue
      number instead of SYSTEMPORT queue number.
      
      Fixes: 25c44070 ("net: systemport: Simplify queue mapping logic")
      Signed-off-by: NFlorian Fainelli <f.fainelli@gmail.com>
      Signed-off-by: NDavid S. Miller <davem@davemloft.net>
      5a9ef194
  7. 11 1月, 2020 1 次提交
  8. 09 1月, 2020 2 次提交
  9. 06 1月, 2020 2 次提交
  10. 27 12月, 2019 2 次提交
  11. 26 12月, 2019 1 次提交
  12. 20 12月, 2019 9 次提交
  13. 15 12月, 2019 2 次提交
  14. 14 12月, 2019 1 次提交