Browse Source

qcacld-3.0: Increase the rx debug buffer list size

Increase the rx debug buffer list size to 8k to
capture more history.

Change-Id: I56d37e5c25653daa9dac76328808e99ed24a7bff
CRs-Fixed: 2542805
Yeshwanth Sriram Guntuka 5 years ago
parent
commit
521b6b254b
2 changed files with 2 additions and 2 deletions
  1. 1 1
      core/dp/htt/htt_internal.h
  2. 1 1
      core/dp/txrx/ol_rx.c

+ 1 - 1
core/dp/htt/htt_internal.h

@@ -226,7 +226,7 @@ struct htt_host_rx_desc_base {
  *    @posted: time-stamp when HTT message is recived
  *    @recvd : 0x48545452584D5367 ('HTTRXMSG')
  */
-#define HTT_RX_RING_BUFF_DBG_LIST          (2 * 1024)
+#define HTT_RX_RING_BUFF_DBG_LIST          (8 * 1024)
 struct rx_buf_debug {
 	qdf_dma_addr_t paddr;
 	qdf_nbuf_t     nbuf;

+ 1 - 1
core/dp/txrx/ol_rx.c

@@ -87,7 +87,7 @@ struct ol_rx_ind_record {
 
 #ifdef OL_RX_INDICATION_RECORD
 static uint32_t ol_rx_ind_record_index;
-static struct ol_rx_ind_record
+struct ol_rx_ind_record
 	      ol_rx_indication_record_history[OL_RX_INDICATION_MAX_RECORDS];
 
 /**