diff options
| author | Ingo Molnar <mingo@kernel.org> | 2024-04-09 09:28:41 +0200 | 
|---|---|---|
| committer | Ingo Molnar <mingo@kernel.org> | 2024-04-09 09:28:41 +0200 | 
| commit | 0e6ebfd163645d300fdf4abedd1718195ad293bc (patch) | |
| tree | 510614aa8a43af846e27c7581adda801eaf03fc6 /drivers/net/ethernet/intel/ice/ice_lag.c | |
| parent | 186d7ef52c1f0c41450dedbdf6d6325d0a84e4c5 (diff) | |
| parent | fec50db7033ea478773b159e0e2efb135270e3b7 (diff) | |
Merge tag 'v6.9-rc3' into x86/cpu, to pick up fixes
Signed-off-by: Ingo Molnar <mingo@kernel.org>
Diffstat (limited to 'drivers/net/ethernet/intel/ice/ice_lag.c')
| -rw-r--r-- | drivers/net/ethernet/intel/ice/ice_lag.c | 10 | 
1 files changed, 5 insertions, 5 deletions
diff --git a/drivers/net/ethernet/intel/ice/ice_lag.c b/drivers/net/ethernet/intel/ice/ice_lag.c index 467372d541d2..f0e76f0a6d60 100644 --- a/drivers/net/ethernet/intel/ice/ice_lag.c +++ b/drivers/net/ethernet/intel/ice/ice_lag.c @@ -491,7 +491,7 @@ static void  ice_lag_move_vf_node_tc(struct ice_lag *lag, u8 oldport, u8 newport,  			u16 vsi_num, u8 tc)  { -	DEFINE_FLEX(struct ice_aqc_move_elem, buf, teid, 1); +	DEFINE_RAW_FLEX(struct ice_aqc_move_elem, buf, teid, 1);  	struct device *dev = ice_pf_to_dev(lag->pf);  	u16 numq, valq, num_moved, qbuf_size;  	u16 buf_size = __struct_size(buf); @@ -849,7 +849,7 @@ static void  ice_lag_reclaim_vf_tc(struct ice_lag *lag, struct ice_hw *src_hw, u16 vsi_num,  		      u8 tc)  { -	DEFINE_FLEX(struct ice_aqc_move_elem, buf, teid, 1); +	DEFINE_RAW_FLEX(struct ice_aqc_move_elem, buf, teid, 1);  	struct device *dev = ice_pf_to_dev(lag->pf);  	u16 numq, valq, num_moved, qbuf_size;  	u16 buf_size = __struct_size(buf); @@ -1873,7 +1873,7 @@ static void  ice_lag_move_vf_nodes_tc_sync(struct ice_lag *lag, struct ice_hw *dest_hw,  			      u16 vsi_num, u8 tc)  { -	DEFINE_FLEX(struct ice_aqc_move_elem, buf, teid, 1); +	DEFINE_RAW_FLEX(struct ice_aqc_move_elem, buf, teid, 1);  	struct device *dev = ice_pf_to_dev(lag->pf);  	u16 numq, valq, num_moved, qbuf_size;  	u16 buf_size = __struct_size(buf); @@ -2041,7 +2041,7 @@ int ice_init_lag(struct ice_pf *pf)  	/* associate recipes to profiles */  	for (n = 0; n < ICE_PROFID_IPV6_GTPU_IPV6_TCP_INNER; n++) {  		err = ice_aq_get_recipe_to_profile(&pf->hw, n, -						   (u8 *)&recipe_bits, NULL); +						   &recipe_bits, NULL);  		if (err)  			continue; @@ -2049,7 +2049,7 @@ int ice_init_lag(struct ice_pf *pf)  			recipe_bits |= BIT(lag->pf_recipe) |  				       BIT(lag->lport_recipe);  			ice_aq_map_recipe_to_profile(&pf->hw, n, -						     (u8 *)&recipe_bits, NULL); +						     recipe_bits, NULL);  		}  	}  | 
