|
@@ -124,7 +124,7 @@ static inline qdf_nbuf_t htt_rx_netbuf_pop(htt_pdev_handle pdev)
|
|
|
idx++;
|
|
|
idx &= pdev->rx_ring.size_mask;
|
|
|
pdev->rx_ring.sw_rd_idx.msdu_payld = idx;
|
|
|
- pdev->rx_ring.fill_cnt--;
|
|
|
+ qdf_atomic_dec(&pdev->rx_ring.fill_cnt);
|
|
|
return msdu;
|
|
|
}
|
|
|
|
|
@@ -483,7 +483,7 @@ moretofill:
|
|
|
}
|
|
|
|
|
|
pdev->rx_ring.buf.paddrs_ring[idx] = paddr_marked;
|
|
|
- pdev->rx_ring.fill_cnt++;
|
|
|
+ qdf_atomic_inc(&pdev->rx_ring.fill_cnt);
|
|
|
|
|
|
num--;
|
|
|
idx++;
|
|
@@ -2049,7 +2049,8 @@ void htt_rx_fill_ring_count(htt_pdev_handle pdev)
|
|
|
{
|
|
|
int num_to_fill;
|
|
|
|
|
|
- num_to_fill = pdev->rx_ring.fill_level - pdev->rx_ring.fill_cnt;
|
|
|
+ num_to_fill = pdev->rx_ring.fill_level -
|
|
|
+ qdf_atomic_read(&pdev->rx_ring.fill_cnt);
|
|
|
htt_rx_ring_fill_n(pdev, num_to_fill /* okay if <= 0 */);
|
|
|
}
|
|
|
|
|
@@ -2137,7 +2138,7 @@ int htt_rx_attach(struct htt_pdev_t *pdev)
|
|
|
htt_rx_ring_refill_retry, (void *)pdev,
|
|
|
QDF_TIMER_TYPE_SW);
|
|
|
|
|
|
- pdev->rx_ring.fill_cnt = 0;
|
|
|
+ qdf_atomic_init(&pdev->rx_ring.fill_cnt);
|
|
|
pdev->rx_ring.pop_fail_cnt = 0;
|
|
|
#ifdef DEBUG_DMA_DONE
|
|
|
pdev->rx_ring.dbg_ring_idx = 0;
|