Skip to content

Commit 204182e

Browse files
Furong XuPaolo Abeni
authored andcommitted
net: stmmac: Convert prefetch() to net_prefetch() for received frames
The size of DMA descriptors is 32 bytes at most. net_prefetch() for received frames, and keep prefetch() for descriptors. This patch brings ~4.8% driver performance improvement in a TCP RX throughput test with iPerf tool on a single isolated Cortex-A65 CPU core, 2.92 Gbits/sec increased to 3.06 Gbits/sec. Suggested-by: Joe Damato <jdamato@fastly.com> Signed-off-by: Furong Xu <0x1207@gmail.com> Reviewed-by: Yanteng Si <si.yanteng@linux.dev> Reviewed-by: Larysa Zaremba <larysa.zaremba@intel.com> Reviewed-by: Joe Damato <jdamato@fastly.com> Signed-off-by: Paolo Abeni <pabeni@redhat.com>
1 parent 2a29315 commit 204182e

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

drivers/net/ethernet/stmicro/stmmac/stmmac_main.c

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5529,7 +5529,8 @@ static int stmmac_rx(struct stmmac_priv *priv, int limit, u32 queue)
55295529

55305530
dma_sync_single_for_cpu(priv->device, buf->addr,
55315531
buf1_len, dma_dir);
5532-
prefetch(page_address(buf->page) + buf->page_offset);
5532+
net_prefetch(page_address(buf->page) +
5533+
buf->page_offset);
55335534

55345535
xdp_init_buff(&ctx.xdp, buf_sz, &rx_q->xdp_rxq);
55355536
xdp_prepare_buff(&ctx.xdp, page_address(buf->page),

0 commit comments

Comments
 (0)