2
0

0113-mesh-do-not-allow-pri-sec-channel-switch.patch 935 B

123456789101112131415161718192021222324252627
  1. From 5fe4fa1c1f426d81496458d2127bfbd7623fe5d5 Mon Sep 17 00:00:00 2001
  2. From: Peter Oh <[email protected]>
  3. Date: Thu, 12 Apr 2018 02:49:10 -0700
  4. Subject: [PATCH 13/15] mesh: do not allow pri/sec channel switch
  5. We don't want mesh to switch the channel from primary to secondary,
  6. since mesh points are not able to join each other in that case.
  7. Signed-off-by: Peter Oh <[email protected]>
  8. ---
  9. wpa_supplicant/mesh.c | 5 ++++-
  10. 1 file changed, 4 insertions(+), 1 deletion(-)
  11. --- a/wpa_supplicant/mesh.c
  12. +++ b/wpa_supplicant/mesh.c
  13. @@ -333,7 +333,10 @@ static int wpa_supplicant_mesh_init(stru
  14. rate_len * sizeof(int));
  15. conf->basic_rates[rate_len] = -1;
  16. }
  17. -
  18. + /* Do not allow primary/secondary channel switch in mesh mode,
  19. + * since mesh is not able to establish a physical link for it
  20. + */
  21. + conf->no_pri_sec_switch = 1;
  22. wpa_supplicant_conf_ap_ht(wpa_s, ssid, conf);
  23. if (wpa_drv_init_mesh(wpa_s)) {