|
@@ -3533,8 +3533,16 @@ wma_get_trigger_detail_str(struct wmi_roam_trigger_info *roam_info, char *buf)
|
|
|
return;
|
|
|
case WMI_ROAM_TRIGGER_REASON_LOW_RSSI:
|
|
|
case WMI_ROAM_TRIGGER_REASON_PERIODIC:
|
|
|
- buf_cons = qdf_snprint(temp, buf_left, "Cur_rssi_threshold: %d",
|
|
|
- roam_info->rssi_trig_data.threshold);
|
|
|
+ /*
|
|
|
+ * Use roam_info->current_rssi get the RSSI of current AP after
|
|
|
+ * roam scan is triggered. This avoids discrepency with the
|
|
|
+ * next rssi threshold value printed in roam scan details.
|
|
|
+ * roam_info->rssi_trig_data.threshold gives the rssi of AP
|
|
|
+ * before the roam scan was triggered.
|
|
|
+ */
|
|
|
+ buf_cons = qdf_snprint(temp, buf_left,
|
|
|
+ " Current AP RSSI: %d",
|
|
|
+ roam_info->current_rssi);
|
|
|
temp += buf_cons;
|
|
|
buf_left -= buf_cons;
|
|
|
return;
|