Home
last modified time | relevance | path

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

/Linux-v5.10/drivers/net/ethernet/freescale/dpaa2/
Ddpaa2-eth.c842 struct dpaa2_eth_sgt_cache *sgt_cache; in dpaa2_eth_build_sg_fd_single_buf() local
851 sgt_cache = this_cpu_ptr(priv->sgt_cache); in dpaa2_eth_build_sg_fd_single_buf()
854 if (sgt_cache->count == 0) in dpaa2_eth_build_sg_fd_single_buf()
858 sgt_buf = sgt_cache->buf[--sgt_cache->count]; in dpaa2_eth_build_sg_fd_single_buf()
901 if (sgt_cache->count >= DPAA2_ETH_SGT_CACHE_SIZE) in dpaa2_eth_build_sg_fd_single_buf()
904 sgt_cache->buf[sgt_cache->count++] = sgt_buf; in dpaa2_eth_build_sg_fd_single_buf()
973 struct dpaa2_eth_sgt_cache *sgt_cache; in dpaa2_eth_free_tx_fd() local
1050 sgt_cache = this_cpu_ptr(priv->sgt_cache); in dpaa2_eth_free_tx_fd()
1054 if (sgt_cache->count >= DPAA2_ETH_SGT_CACHE_SIZE) in dpaa2_eth_free_tx_fd()
1057 sgt_cache->buf[sgt_cache->count++] = buffer_start; in dpaa2_eth_free_tx_fd()
[all …]
Ddpaa2-eth.h504 struct dpaa2_eth_sgt_cache __percpu *sgt_cache; member