bes2600: take pending_record_lock with _bh() — fix SOFTIRQ-safe → -unsafe inversion (closes besser#18) #11

Merged
marfrit merged 3 commits from bes2600/queue-pending-record-lock-bh-fix into cleanups 2026-05-18 19:18:08 +00:00
Showing only changes of commit 8cd10f487c - Show all commits
+12 -4
View File
@@ -248,15 +248,23 @@ int bes2600_hw_scan(struct ieee80211_hw *hw,
* has req->channels[] from one band only (see ieee80211_prep_hw_scan * has req->channels[] from one band only (see ieee80211_prep_hw_scan
* in net/mac80211/scan.c). Refuse the 5 GHz iteration at the driver * in net/mac80211/scan.c). Refuse the 5 GHz iteration at the driver
* boundary so userspace gets a clean aborted-scan for that portion * boundary so userspace gets a clean aborted-scan for that portion
* rather than waiting for the firmware reject to cascade up. 5 GHz * rather than waiting for the firmware reject to cascade up.
* band registration stays intact so direct-BSSID association to a *
* known 5 GHz AP still works (no scan needed for that path). * Only the multi-channel case is refused (n_channels > 1): that's
* the per-band-sweep pattern mac80211 issues internally and the
* one that triggers the firmware storm at the per-band loop
* boundary. Single-channel 5 GHz scans (BSS verification, NM's
* per-freq iteration when 802-11-wireless.band=a is set) pass
* through to firmware, which generally accepts them since the
* storm is the back-to-back per-band issue, not a blanket 5 GHz
* reject. This preserves 5 GHz association via the
* "wpa_supplicant iterates freq_list per channel" path.
* *
* Contract: per include/net/mac80211.h struct ieee80211_ops.hw_scan * Contract: per include/net/mac80211.h struct ieee80211_ops.hw_scan
* documentation, a negative return aborts the scan without requiring * documentation, a negative return aborts the scan without requiring
* ieee80211_scan_completed(). * ieee80211_scan_completed().
*/ */
if (req->n_channels > 0 && if (req->n_channels > 1 &&
req->channels[0]->band == NL80211_BAND_5GHZ) req->channels[0]->band == NL80211_BAND_5GHZ)
return -EOPNOTSUPP; return -EOPNOTSUPP;