Sfoglia il codice sorgente

qcacld-3.0: Move DP_RX_THREAD_WAIT_TIMEOUT out of HAL SLUB DEBUG macro

DP_RX_THREAD_WAIT_TIMEOUT is defined in one macro but
derefereced under another macro. Change is to align
the macro in-use.

Change-Id: I839b2b024c2b2301a585b6ca8016ac64fb3899f2
CRs-Fixed: 3055419
Yu Tian 3 anni fa
parent
commit
b88ef09eef
1 ha cambiato i file con 6 aggiunte e 3 eliminazioni
  1. 6 3
      core/dp/txrx3.0/dp_rx_thread.c

+ 6 - 3
core/dp/txrx3.0/dp_rx_thread.c

@@ -24,15 +24,18 @@
 #include <cdp_txrx_peer_ops.h>
 #include <cds_sched.h>
 
-#ifdef HAL_CONFIG_SLUB_DEBUG_ON
 /* Timeout in ms to wait for a DP rx thread */
+#ifdef HAL_CONFIG_SLUB_DEBUG_ON
 #define DP_RX_THREAD_WAIT_TIMEOUT 4000
-/* number of rx pkts that thread should yield */
-#define DP_RX_THREAD_YIELD_PKT_CNT 20000
 #else
 #define DP_RX_THREAD_WAIT_TIMEOUT 2000
 #endif
 
+#ifdef CONFIG_SLUB_DEBUG_ON
+/* number of rx pkts that thread should yield */
+#define DP_RX_THREAD_YIELD_PKT_CNT 20000
+#endif
+
 #define DP_RX_TM_DEBUG 0
 #if DP_RX_TM_DEBUG
 /**