This series contains updates to ice driver only. Bruce changes the allocation of ice_flow_prof_params from stack to heap to avoid excessive stack usage. Corrects a misleading comment and silences a sparse warning that is not a problem. Tony renames Flow Director functions to be more generic as their use is expanded. Real implements ACL filtering. This expands support of network flow classification rules for the ethtool ntuple command. ACL filtering will allow for an ip or port field's optional mask to be specified. Paul allows for HW initialization to continue if PHY abilities cannot be obtained. Jeb removes bypassing FW link override and reading Option ROM and netlist information for non-E810 devices as this is now available on other devices. Nick removes vlan_ena field as this information can be gathered by checking num_vlan. Jake combines format strings and debug prints to the same line. Simon adds a space to fix string concatenation. v2: Expand on commit message for patch 3 to show example usage/commands. Reduce number of defensive checks being done. For now, we’d like to keep these ice_status error codes in the driver as there are cases where specific codes may translate to specific cases that must be handled. There is little equivalency between them and POSIX standard error codes so these cases can be lost by changing them. We are careful to turn everything into POSIX standard error codes before passing it to the kernel. We do understand your feedback on the refactoring pain. We will look into this in the future. The following are changes since commit e1d9d7b91302593d1951fcb12feddda6fb58a3c0: Merge https://git.kernel.org/pub/scm/linux/kernel/git/netdev/net and are available in the git repository at: git://git.kernel.org/pub/scm/linux/kernel/git/tnguy/next-queue 100GbE Bruce Allan (3): ice: cleanup stack hog ice: cleanup misleading comment ice: silence static analysis warning Jacob Keller (1): ice: join format strings to same line as ice_debug Jeb Cramer (2): ice: Enable Support for FW Override (E82X) ice: Remove gate to OROM init Nick Nunley (1): ice: Remove vlan_ena from vsi structure Paul M Stillwell Jr (1): ice: don't always return an error for Get PHY Abilities AQ command Real Valiquette (5): ice: initialize ACL table ice: initialize ACL scenario ice: create flow profile ice: create ACL entry ice: program ACL entry Simon Perron Caissy (1): ice: Add space to unknown speed Tony Nguyen (1): ice: rename shared Flow Director functions drivers/net/ethernet/intel/ice/Makefile | 3 + drivers/net/ethernet/intel/ice/ice.h | 26 +- drivers/net/ethernet/intel/ice/ice_acl.c | 482 +++++++ drivers/net/ethernet/intel/ice/ice_acl.h | 188 +++ drivers/net/ethernet/intel/ice/ice_acl_ctrl.c | 1145 +++++++++++++++ drivers/net/ethernet/intel/ice/ice_acl_main.c | 328 +++++ .../net/ethernet/intel/ice/ice_adminq_cmd.h | 400 +++++- drivers/net/ethernet/intel/ice/ice_common.c | 108 +- drivers/net/ethernet/intel/ice/ice_controlq.c | 42 +- drivers/net/ethernet/intel/ice/ice_ethtool.c | 8 +- .../net/ethernet/intel/ice/ice_ethtool_fdir.c | 448 ++++-- drivers/net/ethernet/intel/ice/ice_fdir.c | 15 +- drivers/net/ethernet/intel/ice/ice_fdir.h | 5 +- .../net/ethernet/intel/ice/ice_flex_pipe.c | 40 +- .../net/ethernet/intel/ice/ice_flex_pipe.h | 7 + drivers/net/ethernet/intel/ice/ice_flow.c | 1253 ++++++++++++++++- drivers/net/ethernet/intel/ice/ice_flow.h | 38 +- .../net/ethernet/intel/ice/ice_lan_tx_rx.h | 3 + drivers/net/ethernet/intel/ice/ice_lib.c | 10 +- drivers/net/ethernet/intel/ice/ice_main.c | 70 +- drivers/net/ethernet/intel/ice/ice_nvm.c | 61 +- drivers/net/ethernet/intel/ice/ice_sched.c | 21 +- drivers/net/ethernet/intel/ice/ice_switch.c | 15 +- drivers/net/ethernet/intel/ice/ice_type.h | 5 + 24 files changed, 4355 insertions(+), 366 deletions(-) create mode 100644 drivers/net/ethernet/intel/ice/ice_acl.c create mode 100644 drivers/net/ethernet/intel/ice/ice_acl.h create mode 100644 drivers/net/ethernet/intel/ice/ice_acl_ctrl.c create mode 100644 drivers/net/ethernet/intel/ice/ice_acl_main.c -- 2.26.2