mbox series

[net-next,v2,00/10] sfc: Add extra states for VDPA

Message ID 165642465886.31669.17429834766693417246.stgit@palantir17.mph.net (mailing list archive)
Headers show
Series sfc: Add extra states for VDPA | expand

Message

Martin Habets June 28, 2022, 1:58 p.m. UTC
For EF100 VDPA support we need to enhance the sfc driver's load and
unload functionality so that it can probe and then unregister its
network device, so that VDPA can use services such as MCDI to initialise
VDPA resources.

v2:
- Fix checkpatch errors.
- Correct signoffs.
---

Jonathan Cooper (10):
      sfc: Split STATE_READY in to STATE_NET_DOWN and STATE_NET_UP.
      sfc: Add a PROBED state for EF100 VDPA use.
      sfc: Remove netdev init from efx_init_struct
      sfc: Change BUG_ON to WARN_ON and recovery code.
      sfc: Encapsulate access to netdev_priv()
      sfc: Separate efx_nic memory from net_device memory
      sfc: Move EF100 efx_nic_type structs to the end of the file
      sfc: Unsplit literal string.
      sfc: replace function name in string with __func__
      sfc: Separate netdev probe/remove from PCI probe/remove


 drivers/net/ethernet/sfc/ef10.c           |    4 
 drivers/net/ethernet/sfc/ef100.c          |   69 ++---
 drivers/net/ethernet/sfc/ef100_ethtool.c  |    2 
 drivers/net/ethernet/sfc/ef100_netdev.c   |  130 ++++++++-
 drivers/net/ethernet/sfc/ef100_netdev.h   |    4 
 drivers/net/ethernet/sfc/ef100_nic.c      |  422 +++++++++++++----------------
 drivers/net/ethernet/sfc/ef100_nic.h      |   10 +
 drivers/net/ethernet/sfc/efx.c            |   73 +++--
 drivers/net/ethernet/sfc/efx_common.c     |   77 ++---
 drivers/net/ethernet/sfc/efx_common.h     |   16 -
 drivers/net/ethernet/sfc/ethtool.c        |   22 +-
 drivers/net/ethernet/sfc/ethtool_common.c |   50 ++-
 drivers/net/ethernet/sfc/mcdi.c           |   15 -
 drivers/net/ethernet/sfc/mcdi_port.c      |    4 
 drivers/net/ethernet/sfc/net_driver.h     |   69 ++++-
 drivers/net/ethernet/sfc/rx_common.c      |    4 
 drivers/net/ethernet/sfc/sriov.c          |   10 -
 drivers/net/ethernet/sfc/tx.c             |    4 
 18 files changed, 554 insertions(+), 431 deletions(-)

--
Martin Habets <habetsm.xilinx@gmail.com>

Comments

patchwork-bot+netdevbpf@kernel.org June 29, 2022, 12:50 p.m. UTC | #1
Hello:

This series was applied to netdev/net-next.git (master)
by David S. Miller <davem@davemloft.net>:

On Tue, 28 Jun 2022 14:58:43 +0100 you wrote:
> For EF100 VDPA support we need to enhance the sfc driver's load and
> unload functionality so that it can probe and then unregister its
> network device, so that VDPA can use services such as MCDI to initialise
> VDPA resources.
> 
> v2:
> - Fix checkpatch errors.
> - Correct signoffs.
> 
> [...]

Here is the summary with links:
  - [net-next,v2,01/10] sfc: Split STATE_READY in to STATE_NET_DOWN and STATE_NET_UP.
    https://git.kernel.org/netdev/net-next/c/813cf9d1e753
  - [net-next,v2,02/10] sfc: Add a PROBED state for EF100 VDPA use.
    https://git.kernel.org/netdev/net-next/c/8b39db19b21b
  - [net-next,v2,03/10] sfc: Remove netdev init from efx_init_struct
    https://git.kernel.org/netdev/net-next/c/62ac3ce542ff
  - [net-next,v2,04/10] sfc: Change BUG_ON to WARN_ON and recovery code.
    https://git.kernel.org/netdev/net-next/c/b3fd0a86dad2
  - [net-next,v2,05/10] sfc: Encapsulate access to netdev_priv()
    https://git.kernel.org/netdev/net-next/c/8cb03f4e084e
  - [net-next,v2,06/10] sfc: Separate efx_nic memory from net_device memory
    https://git.kernel.org/netdev/net-next/c/7e773594dada
  - [net-next,v2,07/10] sfc: Move EF100 efx_nic_type structs to the end of the file
    https://git.kernel.org/netdev/net-next/c/3e341d84bd9f
  - [net-next,v2,08/10] sfc: Unsplit literal string.
    https://git.kernel.org/netdev/net-next/c/bba84bf4c1f2
  - [net-next,v2,09/10] sfc: replace function name in string with __func__
    https://git.kernel.org/netdev/net-next/c/7592d754c09c
  - [net-next,v2,10/10] sfc: Separate netdev probe/remove from PCI probe/remove
    https://git.kernel.org/netdev/net-next/c/98ff4c7c8ac7

You are awesome, thank you!