aboutsummaryrefslogtreecommitdiffstats
path: root/package/network/services/hostapd/patches/007-dfs-use-helper-functions-for-vht-he-parameters.patch
diff options
context:
space:
mode:
Diffstat (limited to 'package/network/services/hostapd/patches/007-dfs-use-helper-functions-for-vht-he-parameters.patch')
-rw-r--r--package/network/services/hostapd/patches/007-dfs-use-helper-functions-for-vht-he-parameters.patch27
1 files changed, 27 insertions, 0 deletions
diff --git a/package/network/services/hostapd/patches/007-dfs-use-helper-functions-for-vht-he-parameters.patch b/package/network/services/hostapd/patches/007-dfs-use-helper-functions-for-vht-he-parameters.patch
new file mode 100644
index 0000000000..3481c52eef
--- /dev/null
+++ b/package/network/services/hostapd/patches/007-dfs-use-helper-functions-for-vht-he-parameters.patch
@@ -0,0 +1,27 @@
+From 6eacc14904b6f09a1490e697c01adf5dc56c4905 Mon Sep 17 00:00:00 2001
+From: Markus Theil <markus.theil@tu-ilmenau.de>
+Date: Tue, 30 Jun 2020 13:53:23 +0200
+Subject: [PATCH 07/19] dfs: use helper functions for vht/he parameters
+
+Signed-off-by: Markus Theil <markus.theil@tu-ilmenau.de>
+---
+ src/ap/dfs.c | 6 ++++--
+ 1 file changed, 4 insertions(+), 2 deletions(-)
+
+--- a/src/ap/dfs.c
++++ b/src/ap/dfs.c
+@@ -955,10 +955,12 @@ dfs_downgrade_bandwidth(struct hostapd_i
+ if (*skip_radar) {
+ *skip_radar = 0;
+ } else {
+- if (iface->conf->vht_oper_chwidth == CHANWIDTH_USE_HT)
++ int oper_chwidth = hostapd_get_oper_chwidth(iface->conf);
++
++ if (oper_chwidth == CHANWIDTH_USE_HT)
+ break;
+ *skip_radar = 1;
+- iface->conf->vht_oper_chwidth--;
++ hostapd_set_oper_chwidth(iface->conf, oper_chwidth - 1);
+ }
+ }
+