소스 검색

qcacmn: Define tx_status enum in wlan_logging_sock_svc.h

Add the tx_status enum in wlan_logging_sock_svc.h so that
enum can be used for MGMT TX status mapping in wma_mgmt.c

Change-Id: I5681e6fcc39704b6be18bc68b1042e0e6b53f590
CRs-Fixed: 2491787
Alok Kumar 5 년 전
부모
커밋
9551ea2d0e
2개의 변경된 파일19개의 추가작업 그리고 20개의 파일을 삭제
  1. 19 0
      utils/logging/inc/wlan_logging_sock_svc.h
  2. 0 20
      utils/logging/src/wlan_logging_sock_svc.c

+ 19 - 0
utils/logging/inc/wlan_logging_sock_svc.h

@@ -95,5 +95,24 @@ void wlan_pkt_stats_to_logger_thread(void *pl_hdr, void *pkt_dump, void *data)
 }
 #endif
 
+/**
+ * enum tx_status - tx status
+ * @tx_status_ok: successfully sent + acked
+ * @tx_status_discard: discard - not sent (congestion control)
+ * @tx_status_no_ack: no_ack - sent, but no ack
+ * @tx_status_download_fail: download_fail -
+ * the host could not deliver the tx frame to the target
+ * @tx_status_peer_del: peer_del - tx completion for
+ * already deleted peer used for HL case
+ *
+ * This enum has tx status types
+ */
+enum tx_status {
+	tx_status_ok,
+	tx_status_discard,
+	tx_status_no_ack,
+	tx_status_download_fail,
+	tx_status_peer_del,
+};
 
 #endif /* WLAN_LOGGING_SOCK_SVC_H */

+ 0 - 20
utils/logging/src/wlan_logging_sock_svc.c

@@ -50,26 +50,6 @@
 
 #define MAX_NUM_PKT_LOG 32
 
-/**
- * struct tx_status - tx status
- * @tx_status_ok: successfully sent + acked
- * @tx_status_discard: discard - not sent (congestion control)
- * @tx_status_no_ack: no_ack - sent, but no ack
- * @tx_status_download_fail: download_fail -
- * the host could not deliver the tx frame to the target
- * @tx_status_peer_del: peer_del - tx completion for
- * alreay deleted peer used for HL case
- *
- * This enum has tx status types
- */
-enum tx_status {
-	tx_status_ok,
-	tx_status_discard,
-	tx_status_no_ack,
-	tx_status_download_fail,
-	tx_status_peer_del,
-};
-
 #define LOGGING_TRACE(level, args ...) \
 	QDF_TRACE(QDF_MODULE_ID_HDD, level, ## args)