mbox series

[00/37] net/sfc: update base driver

Message ID 1536572016-18134-1-git-send-email-arybchenko@solarflare.com (mailing list archive)
Headers
Series net/sfc: update base driver |

Message

Andrew Rybchenko Sept. 10, 2018, 9:32 a.m. UTC
  Update net/sfc base driver (aka libefx).

There are a number of checkpatches.sh warnings/errors
because of coding style difference.

Andrew Jackson (1):
  net/sfc/base: highlight that image layout header generated

Andrew Rybchenko (1):
  net/sfc/base: fix build failure because of no declaration

Andy Moreton (6):
  net/sfc/base: properly align on line continuation
  net/sfc/base: add space after sizeof
  net/sfc/base: add routine to check for hardware presence
  net/sfc/base: add API to inform libefx of hardware removal
  net/sfc/base: fix ID retrival in v3 licensing
  net/sfc/base: fix MAC Tx stats for less or equal to 64 bytes

Gautam Dawar (1):
  net/sfc/base: fix out of bounds read when dereferencing sdup

Ivan Malov (6):
  net/sfc/base: fix name of the argument to store RSS flags
  net/sfc/base: fix a typo in unicast filter insertion comment
  net/sfc/base: use simpler code to check hash algorithm type
  net/sfc/base: check buffer size for hash flags
  net/sfc/base: simplify the code to parse RSS hash type
  net/sfc/base: improve handling of legacy RSS hash flags

Mark Spender (3):
  net/sfc/base: remove probes when a Tx queue is too full
  net/sfc/base: add information if TSO workaround is required
  net/sfc/base: prevent access to the NIC config before probe

Martin Harvey (10):
  net/sfc/base: fix PreFAST warnings because of unused return
  net/sfc/base: fix invalid order of memset arguments
  net/sfc/base: fix output buffer SAL annotation
  net/sfc/base: fix erroneous SAL annotation for input buffers
  net/sfc/base: move empty efsys definitions to EFX headers
  net/sfc/base: refactor monitors support
  net/sfc/base: add generated description of sensors
  net/sfc/base: check size of memory to read sensors data to
  net/sfc/base: add API to retrieve sensor limits
  net/sfc/base: avoid usage of too big arrays on stack

Paul Fox (1):
  net/sfc/base: add more definitions of partitions

Richard Houldsworth (4):
  net/sfc/base: add buffer editing functions to boot config
  net/sfc/base: add accessor for default port mode
  net/sfc/base: generalise EF10 NVRAM buffer interface
  net/sfc/base: modify phy caps to indicate FEC request

Vijay Srivastava (4):
  net/sfc/base: fix outer IPID field in TSO option descriptors
  net/sfc/base: add check for TUNNEL module in NIC reset API
  net/sfc/base: add support to get active FEC type
  net/sfc/base: add helper API to make Geneve filter spec

 drivers/net/sfc/base/ef10_ev.c                |  38 +-
 drivers/net/sfc/base/ef10_filter.c            |  64 +-
 drivers/net/sfc/base/ef10_image.c             |   5 +-
 drivers/net/sfc/base/ef10_impl.h              |  62 +-
 drivers/net/sfc/base/ef10_intr.c              |   5 +-
 drivers/net/sfc/base/ef10_mac.c               |  24 +-
 drivers/net/sfc/base/ef10_nic.c               | 155 ++--
 drivers/net/sfc/base/ef10_nvram.c             | 161 +++-
 drivers/net/sfc/base/ef10_phy.c               |  93 ++-
 drivers/net/sfc/base/ef10_rx.c                |  89 +--
 .../net/sfc/base/ef10_signed_image_layout.h   |   8 +
 drivers/net/sfc/base/ef10_tx.c                |  38 +-
 drivers/net/sfc/base/efx.h                    | 305 +++++--
 drivers/net/sfc/base/efx_annote.h             | 103 +++
 drivers/net/sfc/base/efx_bootcfg.c            | 641 +++++++++++++--
 drivers/net/sfc/base/efx_filter.c             |  90 ++-
 drivers/net/sfc/base/efx_impl.h               |  10 +-
 drivers/net/sfc/base/efx_lic.c                |  91 +--
 drivers/net/sfc/base/efx_mcdi.c               |  88 +--
 drivers/net/sfc/base/efx_mcdi.h               |  15 +
 drivers/net/sfc/base/efx_mon.c                | 745 ++++++++++++++++--
 drivers/net/sfc/base/efx_nic.c                |  54 +-
 drivers/net/sfc/base/efx_nvram.c              |  71 +-
 drivers/net/sfc/base/efx_phy.c                |  31 +
 drivers/net/sfc/base/efx_port.c               |   2 +-
 drivers/net/sfc/base/efx_rx.c                 | 225 +++---
 drivers/net/sfc/base/efx_tunnel.c             |   6 +-
 drivers/net/sfc/base/efx_tx.c                 |  19 +-
 drivers/net/sfc/base/hunt_nic.c               |   6 +-
 drivers/net/sfc/base/mc_driver_pcol_strs.h    | 102 +++
 drivers/net/sfc/base/mcdi_mon.c               | 381 +++++----
 drivers/net/sfc/base/mcdi_mon.h               |   5 +
 drivers/net/sfc/base/medford2_nic.c           |   5 +-
 drivers/net/sfc/base/medford_nic.c            |   5 +-
 drivers/net/sfc/base/siena_mac.c              |   9 +-
 drivers/net/sfc/base/siena_nic.c              |   5 +-
 drivers/net/sfc/base/siena_nvram.c            |   5 +-
 drivers/net/sfc/base/siena_phy.c              |  28 +-
 drivers/net/sfc/efsys.h                       |  38 -
 drivers/net/sfc/sfc_rx.c                      |   2 +-
 40 files changed, 2886 insertions(+), 943 deletions(-)
 create mode 100644 drivers/net/sfc/base/efx_annote.h
 create mode 100644 drivers/net/sfc/base/mc_driver_pcol_strs.h
  

Comments

Ferruh Yigit Sept. 21, 2018, 10:28 a.m. UTC | #1
On 9/10/2018 10:32 AM, Andrew Rybchenko wrote:
> Update net/sfc base driver (aka libefx).
> 
> There are a number of checkpatches.sh warnings/errors
> because of coding style difference.
> 
> Andrew Jackson (1):
>   net/sfc/base: highlight that image layout header generated
> 
> Andrew Rybchenko (1):
>   net/sfc/base: fix build failure because of no declaration
> 
> Andy Moreton (6):
>   net/sfc/base: properly align on line continuation
>   net/sfc/base: add space after sizeof
>   net/sfc/base: add routine to check for hardware presence
>   net/sfc/base: add API to inform libefx of hardware removal
>   net/sfc/base: fix ID retrival in v3 licensing
>   net/sfc/base: fix MAC Tx stats for less or equal to 64 bytes
> 
> Gautam Dawar (1):
>   net/sfc/base: fix out of bounds read when dereferencing sdup
> 
> Ivan Malov (6):
>   net/sfc/base: fix name of the argument to store RSS flags
>   net/sfc/base: fix a typo in unicast filter insertion comment
>   net/sfc/base: use simpler code to check hash algorithm type
>   net/sfc/base: check buffer size for hash flags
>   net/sfc/base: simplify the code to parse RSS hash type
>   net/sfc/base: improve handling of legacy RSS hash flags
> 
> Mark Spender (3):
>   net/sfc/base: remove probes when a Tx queue is too full
>   net/sfc/base: add information if TSO workaround is required
>   net/sfc/base: prevent access to the NIC config before probe
> 
> Martin Harvey (10):
>   net/sfc/base: fix PreFAST warnings because of unused return
>   net/sfc/base: fix invalid order of memset arguments
>   net/sfc/base: fix output buffer SAL annotation
>   net/sfc/base: fix erroneous SAL annotation for input buffers
>   net/sfc/base: move empty efsys definitions to EFX headers
>   net/sfc/base: refactor monitors support
>   net/sfc/base: add generated description of sensors
>   net/sfc/base: check size of memory to read sensors data to
>   net/sfc/base: add API to retrieve sensor limits
>   net/sfc/base: avoid usage of too big arrays on stack
> 
> Paul Fox (1):
>   net/sfc/base: add more definitions of partitions
> 
> Richard Houldsworth (4):
>   net/sfc/base: add buffer editing functions to boot config
>   net/sfc/base: add accessor for default port mode
>   net/sfc/base: generalise EF10 NVRAM buffer interface
>   net/sfc/base: modify phy caps to indicate FEC request
> 
> Vijay Srivastava (4):
>   net/sfc/base: fix outer IPID field in TSO option descriptors
>   net/sfc/base: add check for TUNNEL module in NIC reset API
>   net/sfc/base: add support to get active FEC type
>   net/sfc/base: add helper API to make Geneve filter spec

Series applied to dpdk-next-net/master, thanks.