소스 검색

qcacld-3.0: Set RX_DIAG_WQ_MAX_SIZE as 1000

Currently RX_DIAG_WQ_MAX_SIZE is set to 0. Which means, there is no
limit to the number of FW diag events that can be queued for processing.
This may result in SKB memory pool is being blocked by FW diag events.

To avoid this, set RX_DIAG_WQ_MAX_SIZE default value as 1000.

Change-Id: I44c69f910a512d8f9a1aed0809c55c6d93737cb2
CRs-Fixed: 2824443
Bapiraju Alla 4 년 전
부모
커밋
f98493aa9a
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      Kbuild

+ 1 - 1
Kbuild

@@ -3630,7 +3630,7 @@ ccflags-y += -DMAX_BCN_PROBE_IN_SCAN_QUEUE=$(CONFIG_MAX_BCN_PROBE_IN_SCAN_QUEUE)
 #
 # Value 0 represents no limit and any non zero value represents the maximum
 # size of the work queue.
-CONFIG_RX_DIAG_WQ_MAX_SIZE ?= 0
+CONFIG_RX_DIAG_WQ_MAX_SIZE ?= 1000
 ccflags-y += -DRX_DIAG_WQ_MAX_SIZE=$(CONFIG_RX_DIAG_WQ_MAX_SIZE)
 
 CONFIG_MGMT_DESC_POOL_MAX ?= 64