* [PATCH iwl-next] ice: use ice_fill_eth_hdr() in ice_fill_sw_rule()
@ 2026-03-20 5:05 Aleksandr Loktionov
2026-03-20 13:18 ` [Intel-wired-lan] " Marcin Szycik
2026-03-20 20:00 ` Simon Horman
0 siblings, 2 replies; 3+ messages in thread
From: Aleksandr Loktionov @ 2026-03-20 5:05 UTC (permalink / raw)
To: intel-wired-lan, anthony.l.nguyen, aleksandr.loktionov
Cc: netdev, Marcin Szycik, Martyna Szapar-Mudlaw
From: Marcin Szycik <marcin.szycik@intel.com>
Use the already existing helper function to fill Ethernet header. Also
replace sizeof with a (also existing) macro to reduce the number of
variables.
Suggested-by: Martyna Szapar-Mudlaw <martyna.szapar-mudlaw@intel.com>
Signed-off-by: Marcin Szycik <marcin.szycik@intel.com>
Signed-off-by: Aleksandr Loktionov <aleksandr.loktionov@intel.com>
---
drivers/net/ethernet/intel/ice/ice_switch.c | 6 ++----
1 file changed, 2 insertions(+), 4 deletions(-)
diff --git a/drivers/net/ethernet/intel/ice/ice_switch.c b/drivers/net/ethernet/intel/ice/ice_switch.c
index bb0f990..6496534 100644
--- a/drivers/net/ethernet/intel/ice/ice_switch.c
+++ b/drivers/net/ethernet/intel/ice/ice_switch.c
@@ -2612,7 +2612,6 @@ ice_fill_sw_rule(struct ice_hw *hw, struct ice_fltr_info *f_info,
u16 vlan_id = ICE_MAX_VLAN_ID + 1;
u16 vlan_tpid = ETH_P_8021Q;
void *daddr = NULL;
- u16 eth_hdr_sz;
u8 *eth_hdr;
u32 act = 0;
__be16 *off;
@@ -2625,11 +2624,10 @@ ice_fill_sw_rule(struct ice_hw *hw, struct ice_fltr_info *f_info,
return;
}
- eth_hdr_sz = sizeof(dummy_eth_header);
eth_hdr = s_rule->hdr_data;
/* initialize the ether header with a dummy header */
- memcpy(eth_hdr, dummy_eth_header, eth_hdr_sz);
+ ice_fill_eth_hdr(eth_hdr);
ice_fill_sw_info(hw, f_info);
switch (f_info->fltr_act) {
@@ -2730,7 +2728,7 @@ ice_fill_sw_rule(struct ice_hw *hw, struct ice_fltr_info *f_info,
/* Create the switch rule with the final dummy Ethernet header */
if (opc != ice_aqc_opc_update_sw_rules)
- s_rule->hdr_len = cpu_to_le16(eth_hdr_sz);
+ s_rule->hdr_len = cpu_to_le16(DUMMY_ETH_HDR_LEN);
}
/**
--
2.52.0
^ permalink raw reply related [flat|nested] 3+ messages in thread
* Re: [Intel-wired-lan] [PATCH iwl-next] ice: use ice_fill_eth_hdr() in ice_fill_sw_rule()
2026-03-20 5:05 [PATCH iwl-next] ice: use ice_fill_eth_hdr() in ice_fill_sw_rule() Aleksandr Loktionov
@ 2026-03-20 13:18 ` Marcin Szycik
2026-03-20 20:00 ` Simon Horman
1 sibling, 0 replies; 3+ messages in thread
From: Marcin Szycik @ 2026-03-20 13:18 UTC (permalink / raw)
To: Aleksandr Loktionov, intel-wired-lan, anthony.l.nguyen
Cc: netdev, Marcin Szycik, Martyna Szapar-Mudlaw
On 20.03.2026 06:05, Aleksandr Loktionov wrote:
> From: Marcin Szycik <marcin.szycik@intel.com>
ACK
> Use the already existing helper function to fill Ethernet header. Also
> replace sizeof with a (also existing) macro to reduce the number of
> variables.
>
> Suggested-by: Martyna Szapar-Mudlaw <martyna.szapar-mudlaw@intel.com>
> Signed-off-by: Marcin Szycik <marcin.szycik@intel.com>
> Signed-off-by: Aleksandr Loktionov <aleksandr.loktionov@intel.com>
> ---
> drivers/net/ethernet/intel/ice/ice_switch.c | 6 ++----
> 1 file changed, 2 insertions(+), 4 deletions(-)
>
> diff --git a/drivers/net/ethernet/intel/ice/ice_switch.c b/drivers/net/ethernet/intel/ice/ice_switch.c
> index bb0f990..6496534 100644
> --- a/drivers/net/ethernet/intel/ice/ice_switch.c
> +++ b/drivers/net/ethernet/intel/ice/ice_switch.c
> @@ -2612,7 +2612,6 @@ ice_fill_sw_rule(struct ice_hw *hw, struct ice_fltr_info *f_info,
> u16 vlan_id = ICE_MAX_VLAN_ID + 1;
> u16 vlan_tpid = ETH_P_8021Q;
> void *daddr = NULL;
> - u16 eth_hdr_sz;
> u8 *eth_hdr;
> u32 act = 0;
> __be16 *off;
> @@ -2625,11 +2624,10 @@ ice_fill_sw_rule(struct ice_hw *hw, struct ice_fltr_info *f_info,
> return;
> }
>
> - eth_hdr_sz = sizeof(dummy_eth_header);
> eth_hdr = s_rule->hdr_data;
>
> /* initialize the ether header with a dummy header */
> - memcpy(eth_hdr, dummy_eth_header, eth_hdr_sz);
> + ice_fill_eth_hdr(eth_hdr);
> ice_fill_sw_info(hw, f_info);
>
> switch (f_info->fltr_act) {
> @@ -2730,7 +2728,7 @@ ice_fill_sw_rule(struct ice_hw *hw, struct ice_fltr_info *f_info,
>
> /* Create the switch rule with the final dummy Ethernet header */
> if (opc != ice_aqc_opc_update_sw_rules)
> - s_rule->hdr_len = cpu_to_le16(eth_hdr_sz);
> + s_rule->hdr_len = cpu_to_le16(DUMMY_ETH_HDR_LEN);
> }
>
> /**
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH iwl-next] ice: use ice_fill_eth_hdr() in ice_fill_sw_rule()
2026-03-20 5:05 [PATCH iwl-next] ice: use ice_fill_eth_hdr() in ice_fill_sw_rule() Aleksandr Loktionov
2026-03-20 13:18 ` [Intel-wired-lan] " Marcin Szycik
@ 2026-03-20 20:00 ` Simon Horman
1 sibling, 0 replies; 3+ messages in thread
From: Simon Horman @ 2026-03-20 20:00 UTC (permalink / raw)
To: Aleksandr Loktionov
Cc: intel-wired-lan, anthony.l.nguyen, netdev, Marcin Szycik,
Martyna Szapar-Mudlaw
On Fri, Mar 20, 2026 at 06:05:56AM +0100, Aleksandr Loktionov wrote:
> From: Marcin Szycik <marcin.szycik@intel.com>
>
> Use the already existing helper function to fill Ethernet header. Also
> replace sizeof with a (also existing) macro to reduce the number of
> variables.
>
> Suggested-by: Martyna Szapar-Mudlaw <martyna.szapar-mudlaw@intel.com>
> Signed-off-by: Marcin Szycik <marcin.szycik@intel.com>
> Signed-off-by: Aleksandr Loktionov <aleksandr.loktionov@intel.com>
Reviewed-by: Simon Horman <horms@kernel.org>
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2026-03-20 20:00 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-03-20 5:05 [PATCH iwl-next] ice: use ice_fill_eth_hdr() in ice_fill_sw_rule() Aleksandr Loktionov
2026-03-20 13:18 ` [Intel-wired-lan] " Marcin Szycik
2026-03-20 20:00 ` Simon Horman
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox