hostapd: update to 2023-03-29
[openwrt/openwrt.git] / package / network / services / hostapd / patches / 470-survey_data_fallback.patch
index 359b5f3ef8f45c14e06ba884b67855b8949eb402..79ab48c5c274865d98211603115f417b329ce186 100644 (file)
@@ -1,24 +1,29 @@
 --- a/src/ap/acs.c
 +++ b/src/ap/acs.c
-@@ -420,20 +420,19 @@ static int acs_usable_bw160_chan(const s
+@@ -455,17 +455,17 @@ static int acs_get_bw_center_chan(int fr
  static int acs_survey_is_sufficient(struct freq_survey *survey)
  {
        if (!(survey->filled & SURVEY_HAS_NF)) {
 +              survey->nf = -95;
-               wpa_printf(MSG_INFO, "ACS: Survey is missing noise floor");
+               wpa_printf(MSG_INFO,
+                          "ACS: Survey for freq %d is missing noise floor",
+                          survey->freq);
 -              return 0;
        }
  
        if (!(survey->filled & SURVEY_HAS_CHAN_TIME)) {
 +              survey->channel_time = 0;
-               wpa_printf(MSG_INFO, "ACS: Survey is missing channel time");
+               wpa_printf(MSG_INFO,
+                          "ACS: Survey for freq %d is missing channel time",
+                          survey->freq);
 -              return 0;
        }
  
        if (!(survey->filled & SURVEY_HAS_CHAN_TIME_BUSY) &&
-           !(survey->filled & SURVEY_HAS_CHAN_TIME_RX)) {
+@@ -473,7 +473,6 @@ static int acs_survey_is_sufficient(stru
                wpa_printf(MSG_INFO,
-                          "ACS: Survey is missing RX and busy time (at least one is required)");
+                          "ACS: Survey for freq %d is missing RX and busy time (at least one is required)",
+                          survey->freq);
 -              return 0;
        }