Browse Source

qcacld-3.0: Add REO exc ring memory to the prealloc pool

Add REO exception ring memory to the prealloc pool.

Change-Id: Ifd1395578e1f80741208ea2cbb0a82b9b661c01b
CRs-Fixed: 2801353
Yeshwanth Sriram Guntuka 4 years ago
parent
commit
e9f007e476
1 changed files with 2 additions and 1 deletions
  1. 2 1
      core/dp/txrx3.0/dp_txrx.c

+ 2 - 1
core/dp/txrx3.0/dp_txrx.c

@@ -236,7 +236,8 @@ static struct  dp_consistent_prealloc g_dp_consistent_allocs[] = {
 	{RXDMA_DST, (sizeof(struct reo_entrance_ring)) * WLAN_CFG_RXDMA_ERR_DST_RING_SIZE, 0, NULL, NULL, 0, 0},
 	/* REFILL ring 0 */
 	{RXDMA_BUF, (sizeof(struct wbm_buffer_ring)) * WLAN_CFG_RXDMA_REFILL_RING_SIZE, 0, NULL, NULL, 0, 0},
-
+	/* REO Exception ring */
+	{REO_EXCEPTION, (sizeof(struct reo_destination_ring)) * WLAN_CFG_REO_EXCEPTION_RING_SIZE, 0, NULL, NULL, 0, 0},
 };
 
 /* Number of HW link descriptors needed (rounded to power of 2) */