mirror of
https://github.com/torvalds/linux.git
synced 2026-05-31 02:24:24 +02:00
net: stmmac: use consistent tests for receive buffer size
Two out of the three sites that set the receive buffer size (via stmmac_set_dma_bfsize()) check for rx_q->xsk_pool && rx_q->buf_alloc_num. One uses just rx_q->xsk_pool. Discussing with Yoong Siang Song, the conclusion is that stmmac_dma_operation_mode() is missing the rx_q->buf_alloc_num check. Add this check. Signed-off-by: Russell King (Oracle) <rmk+kernel@armlinux.org.uk> Link: https://patch.msgid.link/E1w1LWO-0000000DGSR-3CaB@rmk-PC.armlinux.org.uk Signed-off-by: Jakub Kicinski <kuba@kernel.org>
This commit is contained in:
parent
bea37bda7f
commit
0b3d090314
|
|
@ -2612,7 +2612,7 @@ static void stmmac_dma_operation_mode(struct stmmac_priv *priv)
|
|||
stmmac_dma_rx_mode(priv, priv->ioaddr, rxmode, chan,
|
||||
rxfifosz, qmode);
|
||||
|
||||
if (rx_q->xsk_pool) {
|
||||
if (rx_q->xsk_pool && rx_q->buf_alloc_num) {
|
||||
buf_size = xsk_pool_get_rx_frame_size(rx_q->xsk_pool);
|
||||
stmmac_set_dma_bfsize(priv, priv->ioaddr,
|
||||
buf_size,
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user