Commit c155f7c3 authored by Miri Korenblit's avatar Miri Korenblit Committed by Johannes Berg
Browse files

wifi: iwlwifi: mld: inform trans on init failure



If starting the op mode failed, the opmode memory is being freed,
so trans->op_mode needs to be NULLified. Otherwise, trans will access
already freed memory.
Call iwl_trans_op_mode_leave in that case.

Fixes: d1e879ec ("wifi: iwlwifi: add iwlmld sub-driver")
Signed-off-by: default avatarMiri Korenblit <miriam.rachel.korenblit@intel.com>
Link: https://patch.msgid.link/20250420095642.3331d1686556.Ifaf15bdd8ef8c59e04effbd2e7aa0034b30eeacb@changeid


Signed-off-by: default avatarJohannes Berg <johannes.berg@intel.com>
parent 4f7a0779
Loading
Loading
Loading
Loading
+3 −2
Original line number Diff line number Diff line
@@ -414,7 +414,7 @@ iwl_op_mode_mld_start(struct iwl_trans *trans, const struct iwl_cfg *cfg,
		wiphy_unlock(mld->wiphy);
		rtnl_unlock();
		iwl_fw_flush_dumps(&mld->fwrt);
		goto free_hw;
		goto err;
	}

	/* We are about to stop the FW. Notifications may require an
@@ -460,7 +460,8 @@ iwl_op_mode_mld_start(struct iwl_trans *trans, const struct iwl_cfg *cfg,
	iwl_mld_leds_exit(mld);
free_nvm:
	kfree(mld->nvm_data);
free_hw:
err:
	iwl_trans_op_mode_leave(mld->trans);
	ieee80211_free_hw(mld->hw);
	return ERR_PTR(ret);
}