forked from immortalwrt/immortalwrt
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'upstream/openwrt-24.10' into openwrt-24.10
- Loading branch information
Showing
159 changed files
with
2,831 additions
and
906 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
LINUX_VERSION-6.6 = .69 | ||
LINUX_KERNEL_HASH-6.6.69 = 9c6305567b75d99514cde6eb9de39973f3d5c857a75bd9dcdfca57041f8d4f34 | ||
LINUX_VERSION-6.6 = .71 | ||
LINUX_KERNEL_HASH-6.6.71 = 219715ba2dcfa6539fba09ad3f9212772f3507189eb60d77f8e89b06c32e724e |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
28 changes: 28 additions & 0 deletions
28
...work/services/hostapd/patches/804-hostapd-Fix-clearing-up-settings-for-color-switch.patch
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
From 161327f91d956771996c96ea1b6e4e1cb8dc074c Mon Sep 17 00:00:00 2001 | ||
From: Stone Zhang <quic_stonez@quicinc.com> | ||
Date: Mon, 14 Oct 2024 18:47:32 +0800 | ||
Subject: [PATCH] hostapd: Fix clearing up settings for color switch | ||
|
||
Settings for color switch (struct cca_settings settings) | ||
is used without zero clearing, which causes the member | ||
settings->ubpr->unsol_bcast_probe_resp_intervalettings | ||
to be a random value. It is againsts the NLA policy of | ||
NL80211_UNSOL_BCAST_PROBE_RESP_ATTR_INT and causes | ||
BSS color switch failure. | ||
|
||
Fixes: 654d2395dddf ("BSS coloring: Handling of collision events and triggering CCA") | ||
Signed-off-by: Stone Zhang <quic_stonez@quicinc.com> | ||
--- | ||
src/ap/hostapd.c | 1 + | ||
1 file changed, 1 insertion(+) | ||
|
||
--- a/src/ap/hostapd.c | ||
+++ b/src/ap/hostapd.c | ||
@@ -4813,6 +4813,7 @@ static void hostapd_switch_color_timeout | ||
struct cca_settings settings; | ||
int ret; | ||
|
||
+ os_memset(&settings, 0, sizeof(settings)); | ||
hostapd_cleanup_cca_params(bss); | ||
bss->cca_color = r; | ||
bss->cca_count = 10; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.