On Wed, Apr 19, 2017 at 09:16:56AM +0000, Sørensen, Stefan wrote: > You are correct that these lines was added accidentally. Can we please fix this in another way? There is no need to hold the spin lock during the callback into the networking stack. Instead, how about the following diff, which also fixes the other call site... Thanks, Richard --- diff --git a/drivers/net/phy/dp83640.c b/drivers/net/phy/dp83640.c index e2460a5..593e533 100644 --- a/drivers/net/phy/dp83640.c +++ b/drivers/net/phy/dp83640.c @@ -874,14 +874,15 @@ static void decode_rxts(struct dp83640_private *dp83640, shhwtstamps = skb_hwtstamps(skb); memset(shhwtstamps, 0, sizeof(*shhwtstamps)); shhwtstamps->hwtstamp = ns_to_ktime(rxts->ns); - netif_rx_ni(skb); list_add(&rxts->list, &dp83640->rxpool); break; } } spin_unlock(&dp83640->rx_queue.lock); - if (!shhwtstamps) + if (shhwtstamps) + netif_rx_ni(skb); + else list_add_tail(&rxts->list, &dp83640->rxts); out: spin_unlock_irqrestore(&dp83640->rx_lock, flags); @@ -1425,7 +1426,6 @@ static bool dp83640_rxtstamp(struct phy_device *phydev, shhwtstamps = skb_hwtstamps(skb); memset(shhwtstamps, 0, sizeof(*shhwtstamps)); shhwtstamps->hwtstamp = ns_to_ktime(rxts->ns); - netif_rx_ni(skb); list_del_init(&rxts->list); list_add(&rxts->list, &dp83640->rxpool); break; -- To unsubscribe from this list: send the line "unsubscribe kernel-janitors" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html