[0/5] net/cxgbe: feature updates and bug fixes

Message ID cover.1530300158.git.rahul.lakkireddy@chelsio.com (mailing list archive)
Headers
Series net/cxgbe: feature updates and bug fixes |

Message

Rahul Lakkireddy June 29, 2018, 7:23 p.m. UTC
  Patch 1 adds link up and down operations for PF and VF.

Patch 2 enables 2-tuple based RSS hash on IPv4 fragment packets and
IPv6 packets with extension headers.

Patch 3 queries firmware for max queues that can be allocated.

Patch 4 fixes Rx channel map and ingress queue type needed for firmware
to manage internal mapping correctly.

Patch 5 fixes forgotten Tx byte counters for VF.

Thanks,
Rahul

Rahul Lakkireddy (5):
  net/cxgbe: add link up and down ops
  net/cxgbe: enable more RSS hash functions
  net/cxgbe: query firmware for max queues available
  net/cxgbe: fix Rx channel map and queue type
  net/cxgbevf: add missing Tx byte counters

 drivers/net/cxgbe/base/common.h         |  10 ++++
 drivers/net/cxgbe/base/t4_hw.c          |  40 +++++++++++++
 drivers/net/cxgbe/base/t4_regs.h        |   3 +
 drivers/net/cxgbe/base/t4fw_interface.h |  14 +++++
 drivers/net/cxgbe/base/t4vf_hw.c        |   6 ++
 drivers/net/cxgbe/cxgbe.h               |  21 +++++--
 drivers/net/cxgbe/cxgbe_compat.h        |   9 ---
 drivers/net/cxgbe/cxgbe_ethdev.c        |  80 ++++++++++++++++++++++---
 drivers/net/cxgbe/cxgbe_main.c          | 100 +++++++++++++++++++++++++-------
 drivers/net/cxgbe/cxgbe_pfvf.h          |   2 +
 drivers/net/cxgbe/cxgbevf_ethdev.c      |   3 +
 drivers/net/cxgbe/cxgbevf_main.c        |  20 +------
 drivers/net/cxgbe/sge.c                 |  10 +++-
 13 files changed, 256 insertions(+), 62 deletions(-)
  

Comments

Ferruh Yigit July 4, 2018, 8:02 p.m. UTC | #1
On 6/29/2018 8:23 PM, Rahul Lakkireddy wrote:
> Patch 1 adds link up and down operations for PF and VF.
> 
> Patch 2 enables 2-tuple based RSS hash on IPv4 fragment packets and
> IPv6 packets with extension headers.
> 
> Patch 3 queries firmware for max queues that can be allocated.
> 
> Patch 4 fixes Rx channel map and ingress queue type needed for firmware
> to manage internal mapping correctly.
> 
> Patch 5 fixes forgotten Tx byte counters for VF.
> 
> Thanks,
> Rahul
> 
> Rahul Lakkireddy (5):
>   net/cxgbe: add link up and down ops
>   net/cxgbe: enable more RSS hash functions
>   net/cxgbe: query firmware for max queues available
>   net/cxgbe: fix Rx channel map and queue type
>   net/cxgbevf: add missing Tx byte counters

Series applied to dpdk-next-net/master, thanks.