mbox series

[net-next,0/5] eth: fbnic: cleanup and add a few stats

Message ID 20241115015344.757567-1-kuba@kernel.org (mailing list archive)
Headers show
Series eth: fbnic: cleanup and add a few stats | expand

Message

Jakub Kicinski Nov. 15, 2024, 1:53 a.m. UTC
Cleanup trival problems with fbnic and add the PCIe and RPC (Rx parser)
stats.

All stats are read under rtnl_lock for now, so the code is pretty
trivial. We'll need to add more locking when we start gathering
drops used by .ndo_get_stats64.

Jakub Kicinski (3):
  eth: fbnic: add missing SPDX headers
  eth: fbnic: add missing header guards
  eth: fbnic: add basic debugfs structure

Sanman Pradhan (2):
  eth: fbnic: add PCIe hardware statistics
  eth: fbnic: add RPC hardware statistics

 .../device_drivers/ethernet/meta/fbnic.rst    |  43 ++++
 drivers/net/ethernet/meta/fbnic/Makefile      |   1 +
 drivers/net/ethernet/meta/fbnic/fbnic.h       |   6 +
 drivers/net/ethernet/meta/fbnic/fbnic_csr.h   |  47 +++++
 .../net/ethernet/meta/fbnic/fbnic_debugfs.c   |  68 ++++++
 .../net/ethernet/meta/fbnic/fbnic_ethtool.c   |  74 +++++++
 .../net/ethernet/meta/fbnic/fbnic_hw_stats.c  | 193 ++++++++++++++++++
 .../net/ethernet/meta/fbnic/fbnic_hw_stats.h  |  28 +++
 drivers/net/ethernet/meta/fbnic/fbnic_pci.c   |  16 +-
 9 files changed, 475 insertions(+), 1 deletion(-)
 create mode 100644 drivers/net/ethernet/meta/fbnic/fbnic_debugfs.c

Comments

patchwork-bot+netdevbpf@kernel.org Nov. 19, 2024, 3 a.m. UTC | #1
Hello:

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

On Thu, 14 Nov 2024 17:53:39 -0800 you wrote:
> Cleanup trival problems with fbnic and add the PCIe and RPC (Rx parser)
> stats.
> 
> All stats are read under rtnl_lock for now, so the code is pretty
> trivial. We'll need to add more locking when we start gathering
> drops used by .ndo_get_stats64.
> 
> [...]

Here is the summary with links:
  - [net-next,1/5] eth: fbnic: add missing SPDX headers
    https://git.kernel.org/netdev/net-next/c/e1a897ef4e9e
  - [net-next,2/5] eth: fbnic: add missing header guards
    https://git.kernel.org/netdev/net-next/c/2a0d6c1705c4
  - [net-next,3/5] eth: fbnic: add basic debugfs structure
    https://git.kernel.org/netdev/net-next/c/08606cb528be
  - [net-next,4/5] eth: fbnic: add PCIe hardware statistics
    https://git.kernel.org/netdev/net-next/c/25ba596d137d
  - [net-next,5/5] eth: fbnic: add RPC hardware statistics
    https://git.kernel.org/netdev/net-next/c/79da2aaa08ee

You are awesome, thank you!