public inbox for netdev@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH net-next v2 00/15][pull request] Intel Wired LAN Driver Updates 2023-08-17 (ice)
@ 2023-08-17 21:22 Tony Nguyen
  2023-08-17 21:22 ` [PATCH net-next v2 01/15] ice: remove unused methods Tony Nguyen
                   ` (15 more replies)
  0 siblings, 16 replies; 19+ messages in thread
From: Tony Nguyen @ 2023-08-17 21:22 UTC (permalink / raw)
  To: davem, kuba, pabeni, edumazet, netdev; +Cc: Tony Nguyen

This series contains updates to ice driver only.

Jan removes unused functions and refactors code to make, possible,
functions static.

Jake rearranges some functions to be logically grouped.

Marcin removes an unnecessary call to disable VLAN stripping.

Yang Yingliang utilizes list_for_each_entry() helper for a couple list
traversals.

Przemek removes some parameters from ice_aq_alloc_free_res() which were
always the same and reworks ice_aq_wait_for_event() to reduce chance of
race.
---
v2:
- Add patch to use assign_bit() in ice_vf_set_host_trust_cfg()

v1: https://lore.kernel.org/netdev/20230816204736.1325132-1-anthony.l.nguyen@intel.com/

The following are changes since commit f54a2a132a9d76c0e31fd1d5f569e84682563e54:
  Merge tag 'for-netdev' of https://git.kernel.org/pub/scm/linux/kernel/git/bpf/bpf-next
and are available in the git repository at:
  git://git.kernel.org/pub/scm/linux/kernel/git/tnguy/next-queue 100GbE

Jacob Keller (1):
  ice: move E810T functions to before device agnostic ones

Jan Sokolowski (7):
  ice: remove unused methods
  ice: refactor ice_ddp to make functions static
  ice: refactor ice_lib to make functions static
  ice: refactor ice_vf_lib to make functions static
  ice: refactor ice_sched to make functions static
  ice: refactor ice_ptp_hw to make functions static
  ice: refactor ice_vsi_is_vlan_pruning_ena

Marcin Szycik (1):
  ice: Remove redundant VSI configuration in eswitch setup

Przemek Kitszel (4):
  ice: drop two params from ice_aq_alloc_free_res()
  ice: ice_aq_check_events: fix off-by-one check when filling buffer
  ice: embed &ice_rq_event_info event into struct ice_aq_task
  ice: split ice_aq_wait_for_event() func into two

Tony Nguyen (1):
  ice: Utilize assign_bit() helper

Yang Yingliang (1):
  ice: use list_for_each_entry() helper

 drivers/net/ethernet/intel/ice/ice.h          |  21 +-
 drivers/net/ethernet/intel/ice/ice_common.c   |  24 +-
 drivers/net/ethernet/intel/ice/ice_common.h   |   7 +-
 drivers/net/ethernet/intel/ice/ice_ddp.c      | 120 ++---
 drivers/net/ethernet/intel/ice/ice_ddp.h      |  10 -
 drivers/net/ethernet/intel/ice/ice_eswitch.c  |   4 -
 .../net/ethernet/intel/ice/ice_fw_update.c    |  45 +-
 drivers/net/ethernet/intel/ice/ice_lag.c      |  17 +-
 drivers/net/ethernet/intel/ice/ice_lib.c      |  82 ++-
 drivers/net/ethernet/intel/ice/ice_lib.h      |   5 -
 drivers/net/ethernet/intel/ice/ice_main.c     |  99 ++--
 drivers/net/ethernet/intel/ice/ice_ptp_hw.c   | 383 +++++++--------
 drivers/net/ethernet/intel/ice/ice_ptp_hw.h   |   4 -
 drivers/net/ethernet/intel/ice/ice_sched.c    |   2 +-
 drivers/net/ethernet/intel/ice/ice_sched.h    |   4 -
 drivers/net/ethernet/intel/ice/ice_switch.c   |  64 +--
 drivers/net/ethernet/intel/ice/ice_switch.h   |   1 -
 drivers/net/ethernet/intel/ice/ice_vf_lib.c   | 465 +++++++++---------
 .../ethernet/intel/ice/ice_vf_lib_private.h   |   2 -
 19 files changed, 624 insertions(+), 735 deletions(-)

-- 
2.38.1


^ permalink raw reply	[flat|nested] 19+ messages in thread

end of thread, other threads:[~2023-08-19  2:20 UTC | newest]

Thread overview: 19+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-08-17 21:22 [PATCH net-next v2 00/15][pull request] Intel Wired LAN Driver Updates 2023-08-17 (ice) Tony Nguyen
2023-08-17 21:22 ` [PATCH net-next v2 01/15] ice: remove unused methods Tony Nguyen
2023-08-17 21:22 ` [PATCH net-next v2 02/15] ice: refactor ice_ddp to make functions static Tony Nguyen
2023-08-17 21:22 ` [PATCH net-next v2 03/15] ice: refactor ice_lib " Tony Nguyen
2023-08-17 21:22 ` [PATCH net-next v2 04/15] ice: refactor ice_vf_lib " Tony Nguyen
2023-08-17 21:22 ` [PATCH net-next v2 05/15] ice: Utilize assign_bit() helper Tony Nguyen
2023-08-18 18:51   ` Leon Romanovsky
2023-08-17 21:22 ` [PATCH net-next v2 06/15] ice: refactor ice_sched to make functions static Tony Nguyen
2023-08-17 21:22 ` [PATCH net-next v2 07/15] ice: refactor ice_ptp_hw " Tony Nguyen
2023-08-17 21:22 ` [PATCH net-next v2 08/15] ice: refactor ice_vsi_is_vlan_pruning_ena Tony Nguyen
2023-08-17 21:22 ` [PATCH net-next v2 09/15] ice: move E810T functions to before device agnostic ones Tony Nguyen
2023-08-17 21:22 ` [PATCH net-next v2 10/15] ice: Remove redundant VSI configuration in eswitch setup Tony Nguyen
2023-08-17 21:22 ` [PATCH net-next v2 11/15] ice: use list_for_each_entry() helper Tony Nguyen
2023-08-17 21:22 ` [PATCH net-next v2 12/15] ice: drop two params from ice_aq_alloc_free_res() Tony Nguyen
2023-08-17 21:22 ` [PATCH net-next v2 13/15] ice: ice_aq_check_events: fix off-by-one check when filling buffer Tony Nguyen
2023-08-18 18:51   ` Leon Romanovsky
2023-08-17 21:22 ` [PATCH net-next v2 14/15] ice: embed &ice_rq_event_info event into struct ice_aq_task Tony Nguyen
2023-08-17 21:22 ` [PATCH net-next v2 15/15] ice: split ice_aq_wait_for_event() func into two Tony Nguyen
2023-08-19  2:20 ` [PATCH net-next v2 00/15][pull request] Intel Wired LAN Driver Updates 2023-08-17 (ice) patchwork-bot+netdevbpf

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox