| 123456789101112131415161718192021222324252627282930 |
- From 2206de729d8a873898b983f5ff7633a2489aa71c Mon Sep 17 00:00:00 2001
- From: John Crispin <[email protected]>
- Date: Sat, 23 Apr 2016 09:06:05 +0200
- Subject: [PATCH 83/91] net-next: mediatek: add missing return code check
- The code fails to check if the scratch memory was properly allocated. Add
- this check and return with an error if the allocation failed.
- Signed-off-by: John Crispin <[email protected]>
- ---
- drivers/net/ethernet/mediatek/mtk_eth_soc.c | 3 +++
- 1 file changed, 3 insertions(+)
- diff --git a/drivers/net/ethernet/mediatek/mtk_eth_soc.c b/drivers/net/ethernet/mediatek/mtk_eth_soc.c
- index 674e8e3..37e9260 100644
- --- a/drivers/net/ethernet/mediatek/mtk_eth_soc.c
- +++ b/drivers/net/ethernet/mediatek/mtk_eth_soc.c
- @@ -483,6 +483,9 @@ static int mtk_init_fq_dma(struct mtk_eth *eth)
-
- eth->scratch_head = kcalloc(cnt, MTK_QDMA_PAGE_SIZE,
- GFP_KERNEL);
- + if (unlikely(!eth->scratch_head))
- + return -ENOMEM;
- +
- dma_addr = dma_map_single(eth->dev,
- eth->scratch_head, cnt * MTK_QDMA_PAGE_SIZE,
- DMA_FROM_DEVICE);
- --
- 1.7.10.4
|