Skip to content
Snippets Groups Projects
Commit 6ba167f1 authored by Maxime Bizon's avatar Maxime Bizon Committed by Jeff Johnson
Browse files

wifi: ath12k: fix regulatory init race condition


wmi code uses ATH12K_FLAG_REGISTERED to decide whether regd message
from firmware is the default one sent during firmware registration, or
response to user request.

As soon as mac80211 phy is registered, regulatory notifier is
immediately called to apply currently configured global regdomain, a
wmi message to update regdomain will be sent to firmware.

ATH12K_FLAG_REGISTERED is not set immediately after phy registration,
the wmi message response can arrive before it is set.

In that case wmi code will update default_regd instead new_regd, and
won't queue regd_update_work. The phy regdomain will stay at the
default value, ignoring the mac80211 request to change it.

Fix this by keeping track of pending user request.

Also avoid double update of regdomain at init, if we know a user
request to change it is in flight.

Signed-off-by: default avatarMaxime Bizon <mbizon@freebox.fr>
Signed-off-by: default avatarSuraj P Kizhakkethil <quic_surapk@quicinc.com>
Signed-off-by: default avatarRaj Kumar Bhagat <quic_rajkbhag@quicinc.com>
Signed-off-by: default avatarJeff Johnson <jeff.johnson@oss.qualcomm.com>
parent 3a7bb672
No related branches found
No related tags found
Loading
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment