mbox series

[RESEND,net-next,v7,0/8] Wangxun netdev features support

Message ID 20230530022632.17938-1-mengyuanlou@net-swift.com (mailing list archive)
Headers show
Series Wangxun netdev features support | expand

Message

Mengyuan Lou May 30, 2023, 2:26 a.m. UTC
Implement tx_csum and rx_csum to support hardware checksum offload.
Implement ndo_vlan_rx_add_vid and ndo_vlan_rx_kill_vid.
Implement ndo_set_features.
Enable macros in netdev features which wangxun can support.

changes v7:
- Remove fragmented packets parsing.
- Jakub Kicinski:
https://lore.kernel.org/netdev/20230523210454.12963d67@kernel.org/
changes v6:
- Fix some code spelling errors.
changes v5:
- Add ndo_set_features support.
- Move wx_decode_ptype() and wx_ptype_lookup to C file.
- Remove wx_fwd_adapter.
changes v4:
- Yunsheng Lin:
https://lore.kernel.org/netdev/c4b9765d-7213-2718-5de3-5e8231753b95@huawei.com/
changes v3:
- Yunsheng Lin: Tidy up logic for wx_encode_tx_desc_ptype.
changes v2:
- Andrew Lunn:
Add ETH_P_CNM Congestion Notification Message to if_ether.h.
Remove lro support.
- Yunsheng Lin:
https://lore.kernel.org/netdev/eb75ae23-8c19-bbc5-e99a-9b853511affa@huawei.com/

Mengyuan Lou (8):
  net: wangxun: libwx add tx offload functions
  net: wangxun: libwx add rx offload functions
  net: wangxun: Implement vlan add and kill functions
  net: libwx: Implement xx_set_features ops
  net: ngbe: Add netdev features support
  net: ngbe: Implement vlan add and remove ops
  net: txgbe: Add netdev features support
  net: txgbe: Implement vlan add and remove ops

 drivers/net/ethernet/wangxun/libwx/wx_hw.c    | 272 ++++++-
 drivers/net/ethernet/wangxun/libwx/wx_hw.h    |   3 +
 drivers/net/ethernet/wangxun/libwx/wx_lib.c   | 734 +++++++++++++++++-
 drivers/net/ethernet/wangxun/libwx/wx_lib.h   |   1 +
 drivers/net/ethernet/wangxun/libwx/wx_type.h  | 214 ++++-
 drivers/net/ethernet/wangxun/ngbe/ngbe_main.c |  20 +-
 drivers/net/ethernet/wangxun/ngbe/ngbe_type.h |   1 +
 .../net/ethernet/wangxun/txgbe/txgbe_main.c   |  25 +-
 .../net/ethernet/wangxun/txgbe/txgbe_type.h   |   1 +
 9 files changed, 1250 insertions(+), 21 deletions(-)

Comments

patchwork-bot+netdevbpf@kernel.org June 1, 2023, 6:30 a.m. UTC | #1
Hello:

This series was applied to netdev/net-next.git (main)
by Jakub Kicinski <kuba@kernel.org>:

On Tue, 30 May 2023 10:26:24 +0800 you wrote:
> Implement tx_csum and rx_csum to support hardware checksum offload.
> Implement ndo_vlan_rx_add_vid and ndo_vlan_rx_kill_vid.
> Implement ndo_set_features.
> Enable macros in netdev features which wangxun can support.
> 
> changes v7:
> - Remove fragmented packets parsing.
> - Jakub Kicinski:
> https://lore.kernel.org/netdev/20230523210454.12963d67@kernel.org/
> changes v6:
> - Fix some code spelling errors.
> changes v5:
> - Add ndo_set_features support.
> - Move wx_decode_ptype() and wx_ptype_lookup to C file.
> - Remove wx_fwd_adapter.
> changes v4:
> - Yunsheng Lin:
> https://lore.kernel.org/netdev/c4b9765d-7213-2718-5de3-5e8231753b95@huawei.com/
> changes v3:
> - Yunsheng Lin: Tidy up logic for wx_encode_tx_desc_ptype.
> changes v2:
> - Andrew Lunn:
> Add ETH_P_CNM Congestion Notification Message to if_ether.h.
> Remove lro support.
> - Yunsheng Lin:
> https://lore.kernel.org/netdev/eb75ae23-8c19-bbc5-e99a-9b853511affa@huawei.com/
> 
> [...]

Here is the summary with links:
  - [RESEND,net-next,v7,1/8] net: wangxun: libwx add tx offload functions
    https://git.kernel.org/netdev/net-next/c/3403960cdf86
  - [RESEND,net-next,v7,2/8] net: wangxun: libwx add rx offload functions
    https://git.kernel.org/netdev/net-next/c/ef4f3c19f912
  - [RESEND,net-next,v7,3/8] net: wangxun: Implement vlan add and kill functions
    https://git.kernel.org/netdev/net-next/c/f3b03c655f67
  - [RESEND,net-next,v7,4/8] net: libwx: Implement xx_set_features ops
    https://git.kernel.org/netdev/net-next/c/6dbedcffcf54
  - [RESEND,net-next,v7,5/8] net: ngbe: Add netdev features support
    https://git.kernel.org/netdev/net-next/c/50a908a0bd8b
  - [RESEND,net-next,v7,6/8] net: ngbe: Implement vlan add and remove ops
    https://git.kernel.org/netdev/net-next/c/361bf4f47cee
  - [RESEND,net-next,v7,7/8] net: txgbe: Add netdev features support
    https://git.kernel.org/netdev/net-next/c/6670f1ece2c8
  - [RESEND,net-next,v7,8/8] net: txgbe: Implement vlan add and remove ops
    https://git.kernel.org/netdev/net-next/c/7df4af51deb3

You are awesome, thank you!