|
@@ -2146,7 +2146,8 @@ sir_convert_probe_req_frame2_struct(tpAniSirGlobal pMac,
|
|
|
}
|
|
|
|
|
|
if (!pr.SuppRates.present) {
|
|
|
- pe_warn("Mandatory IE Supported Rates not present!");
|
|
|
+ pe_debug_rate_limited(30,
|
|
|
+ "Mandatory IE Supported Rates not present!");
|
|
|
return eSIR_FAILURE;
|
|
|
} else {
|
|
|
pProbeReq->suppRatesPresent = 1;
|
|
@@ -2400,7 +2401,8 @@ tSirRetStatus sir_convert_probe_frame2_struct(tpAniSirGlobal pMac,
|
|
|
}
|
|
|
|
|
|
if (!pr->SuppRates.present) {
|
|
|
- pe_warn("Mandatory IE Supported Rates not present!");
|
|
|
+ pe_debug_rate_limited(30,
|
|
|
+ "Mandatory IE Supported Rates not present!");
|
|
|
} else {
|
|
|
pProbeResp->suppRatesPresent = 1;
|
|
|
convert_supp_rates(pMac, &pProbeResp->supportedRates,
|
|
@@ -2981,7 +2983,8 @@ sir_convert_assoc_resp_frame2_struct(tpAniSirGlobal pMac,
|
|
|
|
|
|
if (!ar->SuppRates.present) {
|
|
|
pAssocRsp->suppRatesPresent = 0;
|
|
|
- pe_warn("Mandatory IE Supported Rates not present!");
|
|
|
+ pe_debug_rate_limited(30,
|
|
|
+ "Mandatory IE Supported Rates not present!");
|
|
|
} else {
|
|
|
pAssocRsp->suppRatesPresent = 1;
|
|
|
convert_supp_rates(pMac, &pAssocRsp->supportedRates,
|
|
@@ -3372,7 +3375,8 @@ sir_beacon_ie_ese_bcn_report(tpAniSirGlobal pMac,
|
|
|
}
|
|
|
|
|
|
if (!pBies->SuppRates.present) {
|
|
|
- pe_warn("Mandatory IE Supported Rates not present!");
|
|
|
+ pe_debug_rate_limited(30,
|
|
|
+ "Mandatory IE Supported Rates not present!");
|
|
|
} else {
|
|
|
eseBcnReportMandatoryIe.suppRatesPresent = 1;
|
|
|
convert_supp_rates(pMac, &eseBcnReportMandatoryIe.supportedRates,
|
|
@@ -3650,7 +3654,8 @@ sir_parse_beacon_ie(tpAniSirGlobal pMac,
|
|
|
}
|
|
|
|
|
|
if (!pBies->SuppRates.present) {
|
|
|
- pe_warn("Mandatory IE Supported Rates not present!");
|
|
|
+ pe_debug_rate_limited(30,
|
|
|
+ "Mandatory IE Supported Rates not present!");
|
|
|
} else {
|
|
|
pBeaconStruct->suppRatesPresent = 1;
|
|
|
convert_supp_rates(pMac, &pBeaconStruct->supportedRates,
|
|
@@ -3987,7 +3992,8 @@ sir_convert_beacon_frame2_struct(tpAniSirGlobal pMac,
|
|
|
}
|
|
|
|
|
|
if (!pBeacon->SuppRates.present) {
|
|
|
- pe_warn("Mandatory IE Supported Rates not present!");
|
|
|
+ pe_debug_rate_limited(30,
|
|
|
+ "Mandatory IE Supported Rates not present!");
|
|
|
} else {
|
|
|
pBeaconStruct->suppRatesPresent = 1;
|
|
|
convert_supp_rates(pMac, &pBeaconStruct->supportedRates,
|