lists.openwall.net   lists  /  announce  owl-users  owl-dev  john-users  john-dev  passwdqc-users  yescrypt  popa3d-users  /  oss-security  kernel-hardening  musl  sabotage  tlsify  passwords  /  crypt-dev  xvendor  /  Bugtraq  Full-Disclosure  linux-kernel  linux-netdev  linux-ext4  linux-hardening  linux-cve-announce  PHC 
Open Source and information security mailing list archives
 
Hash Suite: Windows password security audit tool. GUI, reports in PDF.
[<prev] [next>] [<thread-prev] [day] [month] [year] [list]
Message-Id: <A4FB01EA-0BF0-41C1-9596-03D0EDA00E4C@net-swift.com>
Date: Sun, 23 Mar 2025 08:00:29 +0800
From: "mengyuanlou@...-swift.com" <mengyuanlou@...-swift.com>
To: netdev@...r.kernel.org
Cc: kuba@...nel.org,
 horms@...nel.org,
 jiawenwu@...stnetic.com,
 duanqiangwen@...-swift.com
Subject: Re: [PATCH net-next v9 0/6] add sriov support for wangxun NICs

Hi

> 2025年3月19日 15:33,Mengyuan Lou <mengyuanlou@...-swift.com> 写道:
> 
> Add sriov_configure for ngbe and txgbe drivers.
> Reallocate queue and irq resources when sriov is enabled.
> Add wx_msg_task in interrupts handler, which is used to process the
> configuration sent by vfs.
> Add ping_vf for wx_pf to tell vfs about pf link change.
> Do not add uAPIs for in these patches, since the legacy APIs ndo_set_vf_*
> callbacks are considered frozen. And new apis are being replanned.
> 
> v9:
> - Using FIELD_{GET,PREP} macros makes the code more readable.
> - Add support for the new mac_type aml in the configuration flow.
> v8: https://lore.kernel.org/netdev/20250309154252.79234-1-mengyuanlou@net-swift.com/
> - Request a separate processing function when ngbe num_vfs is equal to 7.
> - Add the comment explains why pf needs to reuse interrupt 0 when the ngbe
> num_vfs equals 7.
> - Remove some useless api version checks because vf will not send commands
> higher than its own api version.
> - Fix some code syntax and logic errors.
> v7: https://lore.kernel.org/netdev/20250206103750.36064-1-mengyuanlou@net-swift.com/
> - Use pci_sriov_set_totalvfs instead of checking the limit manually.
> v6: https://lore.kernel.org/netdev/20250110102705.21846-1-mengyuanlou@net-swift.com/
> - Remove devlink allocation and PF/VF devlink port creation in these patches.
> v5: https://lore.kernel.org/netdev/598334BC407FB6F6+20240804124841.71177-1-mengyuanlou@net-swift.com/
> - Add devlink allocation which will be used to add uAPI.
> - Remove unused EXPORT_SYMBOL.
> - Unify some functions return styles in patch 1/4.
> - Make the code line less than 80 columns.
> v4: https://lore.kernel.org/netdev/3601E5DE87D2BC4F+20240604155850.51983-1-mengyuanlou@net-swift.com/
> - Move wx_ping_vf to patch 6.
> - Modify return section format in Kernel docs.
> v3: https://lore.kernel.org/netdev/587FAB7876D85676+20240415110225.75132-1-mengyuanlou@net-swift.com/
> - Do not accept any new implementations of the old SR-IOV API.
> - So remove ndo_vf_xxx in these patches. Switch mode ops will be added
> - in vf driver which will be submitted later.
> v2: https://lore.kernel.org/netdev/EF19E603F7CCA7B9+20240403092714.3027-1-mengyuanlou@net-swift.com/
> - Fix some used uninitialised.
> - Use poll + yield with delay instead of busy poll of 10 times in mbx_lock obtain.
> - Split msg_task and flow into separate patches.
> v1: https://lore.kernel.org/netdev/DA3033FE3CCBBB84+20240307095755.7130-1-mengyuanlou@net-swift.com/
> 
> Mengyuan Lou (6):
>  net: libwx: Add mailbox api for wangxun pf drivers
>  net: libwx: Add sriov api for wangxun nics
>  net: libwx: Redesign flow when sriov is enabled
>  net: libwx: Add msg task func
>  net: ngbe: add sriov function support
>  net: txgbe: add sriov function support
> 
> drivers/net/ethernet/wangxun/libwx/Makefile   |   2 +-
> drivers/net/ethernet/wangxun/libwx/wx_hw.c    | 302 +++++-
> drivers/net/ethernet/wangxun/libwx/wx_hw.h    |   4 +
> drivers/net/ethernet/wangxun/libwx/wx_lib.c   | 128 ++-
> drivers/net/ethernet/wangxun/libwx/wx_mbx.c   | 176 ++++
> drivers/net/ethernet/wangxun/libwx/wx_mbx.h   |  77 ++
> drivers/net/ethernet/wangxun/libwx/wx_sriov.c | 909 ++++++++++++++++++
> drivers/net/ethernet/wangxun/libwx/wx_sriov.h |  18 +
> drivers/net/ethernet/wangxun/libwx/wx_type.h  |  93 +-
> drivers/net/ethernet/wangxun/ngbe/ngbe_main.c |  93 +-
> drivers/net/ethernet/wangxun/ngbe/ngbe_mdio.c |   5 +
> drivers/net/ethernet/wangxun/ngbe/ngbe_type.h |   3 +
> .../net/ethernet/wangxun/txgbe/txgbe_irq.c    |  21 +-
> .../net/ethernet/wangxun/txgbe/txgbe_main.c   |  27 +
> .../net/ethernet/wangxun/txgbe/txgbe_phy.c    |   6 +
> .../net/ethernet/wangxun/txgbe/txgbe_type.h   |   7 +-
> 16 files changed, 1837 insertions(+), 34 deletions(-)
> create mode 100644 drivers/net/ethernet/wangxun/libwx/wx_mbx.c
> create mode 100644 drivers/net/ethernet/wangxun/libwx/wx_mbx.h
> create mode 100644 drivers/net/ethernet/wangxun/libwx/wx_sriov.c
> create mode 100644 drivers/net/ethernet/wangxun/libwx/wx_sriov.h
> 
> -- 
> 2.48.1
> 


Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ