Home
last modified time | relevance | path

Searched refs:sgt_cache (Results 1 – 2 of 2) sorted by relevance

/Linux-v6.6/drivers/net/ethernet/freescale/dpaa2/
Ddpaa2-eth.c862 struct dpaa2_eth_sgt_cache *sgt_cache; in dpaa2_eth_sgt_get() local
866 sgt_cache = this_cpu_ptr(priv->sgt_cache); in dpaa2_eth_sgt_get()
870 if (sgt_cache->count == 0) in dpaa2_eth_sgt_get()
873 sgt_buf = sgt_cache->buf[--sgt_cache->count]; in dpaa2_eth_sgt_get()
884 struct dpaa2_eth_sgt_cache *sgt_cache; in dpaa2_eth_sgt_recycle() local
886 sgt_cache = this_cpu_ptr(priv->sgt_cache); in dpaa2_eth_sgt_recycle()
887 if (sgt_cache->count >= DPAA2_ETH_SGT_CACHE_SIZE) in dpaa2_eth_sgt_recycle()
890 sgt_cache->buf[sgt_cache->count++] = sgt_buf; in dpaa2_eth_sgt_recycle()
1900 struct dpaa2_eth_sgt_cache *sgt_cache; in dpaa2_eth_sgt_cache_drain() local
1905 sgt_cache = per_cpu_ptr(priv->sgt_cache, k); in dpaa2_eth_sgt_cache_drain()
[all …]
Ddpaa2-eth.h562 struct dpaa2_eth_sgt_cache __percpu *sgt_cache; member