You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
783 B
25 lines
783 B
9 years ago
|
From 6c12340c0c307d18b8d6120f64a8275b6d4d3e67 Mon Sep 17 00:00:00 2001
|
||
9 years ago
|
From: Dan Carpenter <dan.carpenter@oracle.com>
|
||
|
Date: Tue, 15 Mar 2016 10:19:04 +0300
|
||
9 years ago
|
Subject: [PATCH 058/102] net: mediatek: unlock on error in mtk_tx_map()
|
||
9 years ago
|
|
||
|
There was a missing unlock on the error path.
|
||
|
|
||
|
Fixes: 656e705243fd ('net-next: mediatek: add support for MT7623 ethernet')
|
||
|
Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com>
|
||
|
---
|
||
|
drivers/net/ethernet/mediatek/mtk_eth_soc.c | 2 ++
|
||
|
1 file changed, 2 insertions(+)
|
||
|
|
||
|
--- a/drivers/net/ethernet/mediatek/mtk_eth_soc.c
|
||
|
+++ b/drivers/net/ethernet/mediatek/mtk_eth_soc.c
|
||
|
@@ -661,6 +661,8 @@ err_dma:
|
||
|
itxd = mtk_qdma_phys_to_virt(ring, itxd->txd2);
|
||
|
} while (itxd != txd);
|
||
|
|
||
|
+ spin_unlock_irqrestore(ð->page_lock, flags);
|
||
|
+
|
||
|
return -ENOMEM;
|
||
|
}
|
||
|
|