diff options
author | Shannon Nelson <shannon.nelson@amd.com> | 2023-08-24 18:17:50 +0200 |
---|---|---|
committer | Jakub Kicinski <kuba@kernel.org> | 2023-08-26 04:05:58 +0200 |
commit | 91202ce78fcd070982a115f0bf6f328af619aa00 (patch) | |
tree | c6ca9edf2a7f2ffc741d8814216cbfa60848414e | |
parent | net/sched: sch_hfsc: Ensure inner classes have fsc curve (diff) | |
download | linux-91202ce78fcd070982a115f0bf6f328af619aa00.tar.xz linux-91202ce78fcd070982a115f0bf6f328af619aa00.zip |
pds_core: protect devlink callbacks from fw_down state
Don't access structs that have been cleared when in the fw_down
state and the various structs have been cleaned and are waiting
to recover. This caused a panic on rmmod when already in fw_down
and devlink_param_unregister() tried to check the parameters.
Fixes: 40ced8944536 ("pds_core: devlink params for enabling VIF support")
Signed-off-by: Shannon Nelson <shannon.nelson@amd.com>
Reviewed-by: Brett Creeley <brett.creeley@amd.com>
Reviewed-by: Simon Horman <horms@kernel.org>
Link: https://lore.kernel.org/r/20230824161754.34264-2-shannon.nelson@amd.com
Signed-off-by: Jakub Kicinski <kuba@kernel.org>
-rw-r--r-- | drivers/net/ethernet/amd/pds_core/devlink.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/drivers/net/ethernet/amd/pds_core/devlink.c b/drivers/net/ethernet/amd/pds_core/devlink.c index 9c6b3653c1c7..d9607033bbf2 100644 --- a/drivers/net/ethernet/amd/pds_core/devlink.c +++ b/drivers/net/ethernet/amd/pds_core/devlink.c @@ -10,6 +10,9 @@ pdsc_viftype *pdsc_dl_find_viftype_by_id(struct pdsc *pdsc, { int vt; + if (!pdsc->viftype_status) + return NULL; + for (vt = 0; vt < PDS_DEV_TYPE_MAX; vt++) { if (pdsc->viftype_status[vt].dl_id == dl_id) return &pdsc->viftype_status[vt]; |