mbox series

[net-next,v2,0/9] bnxt_en: Updates for net-next.

Message ID 1602493854-29283-1-git-send-email-michael.chan@broadcom.com
Headers show
Series bnxt_en: Updates for net-next. | expand

Message

Michael Chan Oct. 12, 2020, 9:10 a.m. UTC
This series contains these main changes:

1. Change of default message level to enable more logging.
2. Some cleanups related to processing async events from firmware.
3. Allow online ethtool selftest on multi-function PFs.
4. Return stored firmware version information to devlink.

v2:
Patch 3: Change bnxt_reset_task() to silent mode.
Patch 8 & 9: Ensure we copy NULL terminated fw strings to devlink.
Patch 8 & 9: Return directly after the last bnxt_dl_info_put() call.
Patch 9: If FW call to get stored dev info fails, return success to
         devlink without the stored versions.

Michael Chan (4):
  bnxt_en: Set driver default message level.
  bnxt_en: Simplify bnxt_async_event_process().
  bnxt_en: Log event_data1 and event_data2 when handling RESET_NOTIFY
    event.
  bnxt_en: Log unknown link speed appropriately.

Vasundhara Volam (5):
  bnxt_en: Return -EROFS to user space, if NVM writes are not permitted.
  bnxt_en: Enable online self tests for multi-host/NPAR mode.
  bnxt_en: Add bnxt_hwrm_nvm_get_dev_info() to query NVM info.
  bnxt_en: Refactor bnxt_dl_info_get().
  bnxt_en: Add stored FW version info to devlink info_get cb.

 drivers/net/ethernet/broadcom/bnxt/bnxt.c     |  39 +++--
 drivers/net/ethernet/broadcom/bnxt/bnxt.h     |   1 +
 .../net/ethernet/broadcom/bnxt/bnxt_devlink.c | 154 ++++++++++++------
 .../net/ethernet/broadcom/bnxt/bnxt_devlink.h |   6 +
 .../net/ethernet/broadcom/bnxt/bnxt_ethtool.c |  24 ++-
 .../net/ethernet/broadcom/bnxt/bnxt_ethtool.h |   2 +
 6 files changed, 164 insertions(+), 62 deletions(-)

Comments

Jakub Kicinski Oct. 12, 2020, 9:48 p.m. UTC | #1
On Mon, 12 Oct 2020 05:10:45 -0400 Michael Chan wrote:
> This series contains these main changes:

> 

> 1. Change of default message level to enable more logging.

> 2. Some cleanups related to processing async events from firmware.

> 3. Allow online ethtool selftest on multi-function PFs.

> 4. Return stored firmware version information to devlink.

> 

> v2:

> Patch 3: Change bnxt_reset_task() to silent mode.

> Patch 8 & 9: Ensure we copy NULL terminated fw strings to devlink.

> Patch 8 & 9: Return directly after the last bnxt_dl_info_put() call.

> Patch 9: If FW call to get stored dev info fails, return success to

>          devlink without the stored versions.


Applied, thank you!