mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2025-01-26 15:19:27 +07:00
dpaa2-eth: check the result of skb_to_sgvec()
Before passing the result of skb_to_sgvec() to dma_map_sg() check if any error was returned. Signed-off-by: Ioana Ciornei <ioana.ciornei@nxp.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
0da1e28f97
commit
37fbbdda63
@ -611,6 +611,10 @@ static int build_sg_fd(struct dpaa2_eth_priv *priv,
|
||||
|
||||
sg_init_table(scl, nr_frags + 1);
|
||||
num_sg = skb_to_sgvec(skb, scl, 0, skb->len);
|
||||
if (unlikely(num_sg < 0)) {
|
||||
err = -ENOMEM;
|
||||
goto dma_map_sg_failed;
|
||||
}
|
||||
num_dma_bufs = dma_map_sg(dev, scl, num_sg, DMA_BIDIRECTIONAL);
|
||||
if (unlikely(!num_dma_bufs)) {
|
||||
err = -ENOMEM;
|
||||
|
Loading…
Reference in New Issue
Block a user