[Intel-wired-lan] [PATCH net] ice: Fix NULL pointer access, if PF doesn't support SRIOV_LAG
Jiri Pirko
jiri at resnulli.us
Mon Aug 26 09:41:19 UTC 2024
Mon, Aug 26, 2024 at 10:58:30AM CEST, tbogendoerfer at suse.de wrote:
>For PFs, which don't support SRIOV_LAG, there is no pf->lag struct
>allocated. So before accessing pf->lag a NULL pointer check is needed.
>
>Signed-off-by: Thomas Bogendoerfer <tbogendoerfer at suse.de>
You need to add a "fixes" tag blaming the commit that introduced the
bug.
>---
> drivers/net/ethernet/intel/ice/ice_lag.c | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
>diff --git a/drivers/net/ethernet/intel/ice/ice_lag.c b/drivers/net/ethernet/intel/ice/ice_lag.c
>index 1ccb572ce285..916a16a379a8 100644
>--- a/drivers/net/ethernet/intel/ice/ice_lag.c
>+++ b/drivers/net/ethernet/intel/ice/ice_lag.c
>@@ -704,7 +704,7 @@ void ice_lag_move_new_vf_nodes(struct ice_vf *vf)
> lag = pf->lag;
>
> mutex_lock(&pf->lag_mutex);
>- if (!lag->bonded)
>+ if (!lag || !lag->bonded)
> goto new_vf_unlock;
>
> pri_port = pf->hw.port_info->lport;
>--
>2.35.3
>
>
More information about the Intel-wired-lan
mailing list