Explorar el Código

qcacld-3.0: Reduce the log completion timeout

The thread that triggers wifi logger data from the
framework will be blocked until firmware and host
driver flushes their logs. The thread acquires wdev
lock when it gets suspended.

As the thread gets blocked, any cfg80211 driver kernel
call from the host driver that needs wdev could lead
to assert. Therefore, reduce the timeout from 3seconds
to 500 milliseconds.

Change-Id: I41f664ea686fa7c46ec580b2b0216c66968a677a
CRs-Fixed: 3156050
Surya Prakash Sivaraj hace 3 años
padre
commit
e80bed206a
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      core/wma/src/wma_main.c

+ 1 - 1
core/wma/src/wma_main.c

@@ -119,7 +119,7 @@
 #include "target_if_cm_roam_event.h"
 #include "wlan_fwol_ucfg_api.h"
 
-#define WMA_LOG_COMPLETION_TIMER 3000 /* 3 seconds */
+#define WMA_LOG_COMPLETION_TIMER 500 /* 500 msecs */
 #define WMI_TLV_HEADROOM 128
 
 static uint32_t g_fw_wlan_feat_caps;