aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard Cochran <richardcochran@gmail.com>2015-05-25 05:55:45 -0400
committerDavid S. Miller <davem@davemloft.net>2015-05-25 18:21:59 -0400
commitadbe088f6f8b0b7701fe07f51fe6f2bd602a6665 (patch)
tree49480fdc4359c842f64a480ead42a9531addcc2c
parenta935865c828c8cd20501f618c69f659a5b6d6a5f (diff)
net: dp83640: fix improper double spin locking.
A pair of nested spin locks was introduced in commit 63502b8d0 "dp83640: Fix receive timestamp race condition". Unfortunately the 'flags' parameter was reused for the inner lock, clobbering the originally saved IRQ state. This patch fixes the issue by changing the inner lock to plain spin_lock without irqsave. Signed-off-by: Richard Cochran <richardcochran@gmail.com> Signed-off-by: David S. Miller <davem@davemloft.net>
-rw-r--r--drivers/net/phy/dp83640.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/net/phy/dp83640.c b/drivers/net/phy/dp83640.c
index e570036275e2..00cb41e71312 100644
--- a/drivers/net/phy/dp83640.c
+++ b/drivers/net/phy/dp83640.c
@@ -846,7 +846,7 @@ static void decode_rxts(struct dp83640_private *dp83640,
846 list_del_init(&rxts->list); 846 list_del_init(&rxts->list);
847 phy2rxts(phy_rxts, rxts); 847 phy2rxts(phy_rxts, rxts);
848 848
849 spin_lock_irqsave(&dp83640->rx_queue.lock, flags); 849 spin_lock(&dp83640->rx_queue.lock);
850 skb_queue_walk(&dp83640->rx_queue, skb) { 850 skb_queue_walk(&dp83640->rx_queue, skb) {
851 struct dp83640_skb_info *skb_info; 851 struct dp83640_skb_info *skb_info;
852 852
@@ -861,7 +861,7 @@ static void decode_rxts(struct dp83640_private *dp83640,
861 break; 861 break;
862 } 862 }
863 } 863 }
864 spin_unlock_irqrestore(&dp83640->rx_queue.lock, flags); 864 spin_unlock(&dp83640->rx_queue.lock);
865 865
866 if (!shhwtstamps) 866 if (!shhwtstamps)
867 list_add_tail(&rxts->list, &dp83640->rxts); 867 list_add_tail(&rxts->list, &dp83640->rxts);