net: stmmac: Set dma_sync_size to zero for discarded frames
authorFurong Xu <0x1207@gmail.com>
Fri, 3 Jan 2025 09:37:33 +0000 (17:37 +0800)
committerPaolo Abeni <pabeni@redhat.com>
Tue, 7 Jan 2025 10:00:02 +0000 (11:00 +0100)
commit51cfbed198ca4aa140babde816387db0e71f09e7
treec56f03e30c6b0c471c07a3cb646bb9e3e7c52a98
parent49afc040f4d707a4149a05180edc42bc590641a4
net: stmmac: Set dma_sync_size to zero for discarded frames

If a frame is going to be discarded by driver, this frame is never touched
by driver and the cache lines never become dirty obviously,
page_pool_recycle_direct() wastes CPU cycles on unnecessary calling of
page_pool_dma_sync_for_device() to sync entire frame.
page_pool_put_page() with sync_size setting to 0 is the proper method.

Signed-off-by: Furong Xu <0x1207@gmail.com>
Link: https://patch.msgid.link/20250103093733.3872939-1-0x1207@gmail.com
Signed-off-by: Paolo Abeni <pabeni@redhat.com>
drivers/net/ethernet/stmicro/stmmac/stmmac_main.c