mbox series

[v3,0/9] updates for hns3 PMD driver

Message ID 20191221103253.30746-1-huwei013@chinasoftinc.com (mailing list archive)
Headers
Series updates for hns3 PMD driver |

Message

Wei Hu (Xavier) Dec. 21, 2019, 10:32 a.m. UTC
  This series are updates for hns3 ethernet PMD driver.

Hao Chen (4):
  net/hns3: support Rx interrupt
  net/hns3: optimize RSS's default algorithm
  net/hns3: remove the redundant function call
  net/hns3: remove the unused macros

Hongbo Zheng (1):
  net/hns3: get link state change through mailbox

Huisong Li (1):
  net/hns3: modify custom macro

Wei Hu (Xavier) (3):
  net/hns3: modify the return value of enable msix
  net/hns3: remove the redundant variable initialization
  net/hns3: remove the unnecessary assignment

 doc/guides/nics/features/hns3.ini    |   1 +
 doc/guides/nics/features/hns3_vf.ini |   1 +
 drivers/net/hns3/hns3_cmd.h          |  28 +++++
 drivers/net/hns3/hns3_ethdev.c       | 181 ++++++++++++++++++++++++---
 drivers/net/hns3/hns3_ethdev.h       |   2 +-
 drivers/net/hns3/hns3_ethdev_vf.c    | 166 +++++++++++++++++++++---
 drivers/net/hns3/hns3_mbx.c          |  37 ++++++
 drivers/net/hns3/hns3_mbx.h          |  21 ++++
 drivers/net/hns3/hns3_regs.h         |   3 +
 drivers/net/hns3/hns3_rss.c          |  14 ++-
 drivers/net/hns3/hns3_rss.h          |  10 --
 drivers/net/hns3/hns3_rxtx.c         |  55 ++++++--
 drivers/net/hns3/hns3_rxtx.h         |   3 +
 13 files changed, 468 insertions(+), 54 deletions(-)
  

Comments

Ferruh Yigit Jan. 8, 2020, 6:18 p.m. UTC | #1
On 12/21/2019 10:32 AM, Wei Hu (Xavier) wrote:
> This series are updates for hns3 ethernet PMD driver.
> 
> Hao Chen (4):
>   net/hns3: support Rx interrupt
>   net/hns3: optimize RSS's default algorithm
>   net/hns3: remove the redundant function call
>   net/hns3: remove the unused macros
> 
> Hongbo Zheng (1):
>   net/hns3: get link state change through mailbox
> 
> Huisong Li (1):
>   net/hns3: modify custom macro
> 
> Wei Hu (Xavier) (3):
>   net/hns3: modify the return value of enable msix
>   net/hns3: remove the redundant variable initialization
>   net/hns3: remove the unnecessary assignment

Series applied to dpdk-next-net/master, thanks.
  
Wei Hu (Xavier) Jan. 9, 2020, 3:10 a.m. UTC | #2
Hi, Ferruh Yigit

On 2020/1/9 2:18, Ferruh Yigit wrote:
> On 12/21/2019 10:32 AM, Wei Hu (Xavier) wrote:
>> This series are updates for hns3 ethernet PMD driver.
>>
>> Hao Chen (4):
>>    net/hns3: support Rx interrupt
>>    net/hns3: optimize RSS's default algorithm
>>    net/hns3: remove the redundant function call
>>    net/hns3: remove the unused macros
>>
>> Hongbo Zheng (1):
>>    net/hns3: get link state change through mailbox
>>
>> Huisong Li (1):
>>    net/hns3: modify custom macro
>>
>> Wei Hu (Xavier) (3):
>>    net/hns3: modify the return value of enable msix
>>    net/hns3: remove the redundant variable initialization
>>    net/hns3: remove the unnecessary assignment
> Series applied to dpdk-next-net/master, thanks.

Thank you very much.

Xavier