Quellcode durchsuchen

qcacld-3.0: Fix log subtype for filling connect fail logs

The log subtype field is not filled for the connecting fail
subtype logs. This causes WLAN_CONNECTING event to be sent
in case of connection failure also.

Fill the log subtype as WLAN_CONNECTING_FAIL for connection
failures.

Change-Id: I36d5c756274d77f562f1acfc1d75a79fcda210d9
CRs-Fixed: 3060642
Pragaspathi Thilagaraj vor 3 Jahren
Ursprung
Commit
41ed5a4dfb
1 geänderte Dateien mit 3 neuen und 0 gelöschten Zeilen
  1. 3 0
      core/hdd/src/wlan_hdd_connectivity_logging.c

+ 3 - 0
core/hdd/src/wlan_hdd_connectivity_logging.c

@@ -1164,6 +1164,7 @@ void wlan_hdd_connectivity_event_connecting(struct hdd_context *hdd_ctx,
 
 	record->timestamp_us = qdf_get_time_of_the_day_us();
 	record->vdev_id = vdev_id;
+	record->log_subtype = WLAN_CONNECTING;
 
 	record->conn_info.ssid_len = req->ssid_len;
 	if (req->ssid_len > WLAN_SSID_MAX_LEN)
@@ -1220,6 +1221,8 @@ wlan_hdd_connectivity_fail_event(struct wlan_objmgr_vdev *vdev,
 
 	log->timestamp_us = qdf_get_time_of_the_day_us();
 	log->vdev_id = vdev_id;
+	log->log_subtype = WLAN_CONNECTING_FAIL;
+
 	log->bssid = rsp->bssid;
 	log->conn_info.freq = rsp->freq;
 	log->conn_info.conn_status = rsp->reason;