Commit a3d73e15 authored by Sebastian Andrzej Siewior's avatar Sebastian Andrzej Siewior Committed by David S. Miller

net: phy: Use netif_rx().

Since commit
   baebdf48 ("net: dev: Makes sure netif_rx() can be invoked in any context.")

the function netif_rx() can be used in preemptible/thread context as
well as in interrupt context.

Use netif_rx().

Cc: Andrew Lunn <andrew@lunn.ch>
Cc: Heiner Kallweit <hkallweit1@gmail.com>
Cc: Radu Pirea <radu-nicolae.pirea@oss.nxp.com>
Cc: Richard Cochran <richardcochran@gmail.com>
Cc: Russell King <linux@armlinux.org.uk>
Signed-off-by: default avatarSebastian Andrzej Siewior <bigeasy@linutronix.de>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 4c22aac3
...@@ -886,7 +886,7 @@ static void decode_rxts(struct dp83640_private *dp83640, ...@@ -886,7 +886,7 @@ static void decode_rxts(struct dp83640_private *dp83640,
spin_unlock_irqrestore(&dp83640->rx_lock, flags); spin_unlock_irqrestore(&dp83640->rx_lock, flags);
if (shhwtstamps) if (shhwtstamps)
netif_rx_ni(skb); netif_rx(skb);
} }
static void decode_txts(struct dp83640_private *dp83640, static void decode_txts(struct dp83640_private *dp83640,
...@@ -1329,7 +1329,7 @@ static void rx_timestamp_work(struct work_struct *work) ...@@ -1329,7 +1329,7 @@ static void rx_timestamp_work(struct work_struct *work)
break; break;
} }
netif_rx_ni(skb); netif_rx(skb);
} }
if (!skb_queue_empty(&dp83640->rx_queue)) if (!skb_queue_empty(&dp83640->rx_queue))
...@@ -1380,7 +1380,7 @@ static bool dp83640_rxtstamp(struct mii_timestamper *mii_ts, ...@@ -1380,7 +1380,7 @@ static bool dp83640_rxtstamp(struct mii_timestamper *mii_ts,
skb_queue_tail(&dp83640->rx_queue, skb); skb_queue_tail(&dp83640->rx_queue, skb);
schedule_delayed_work(&dp83640->ts_work, SKB_TIMESTAMP_TIMEOUT); schedule_delayed_work(&dp83640->ts_work, SKB_TIMESTAMP_TIMEOUT);
} else { } else {
netif_rx_ni(skb); netif_rx(skb);
} }
return true; return true;
......
...@@ -1212,7 +1212,7 @@ static bool vsc85xx_rxtstamp(struct mii_timestamper *mii_ts, ...@@ -1212,7 +1212,7 @@ static bool vsc85xx_rxtstamp(struct mii_timestamper *mii_ts,
ts.tv_sec--; ts.tv_sec--;
shhwtstamps->hwtstamp = ktime_set(ts.tv_sec, ns); shhwtstamps->hwtstamp = ktime_set(ts.tv_sec, ns);
netif_rx_ni(skb); netif_rx(skb);
return true; return true;
} }
......
...@@ -478,7 +478,7 @@ static long nxp_c45_do_aux_work(struct ptp_clock_info *ptp) ...@@ -478,7 +478,7 @@ static long nxp_c45_do_aux_work(struct ptp_clock_info *ptp)
shhwtstamps_rx = skb_hwtstamps(skb); shhwtstamps_rx = skb_hwtstamps(skb);
shhwtstamps_rx->hwtstamp = ns_to_ktime(timespec64_to_ns(&ts)); shhwtstamps_rx->hwtstamp = ns_to_ktime(timespec64_to_ns(&ts));
NXP_C45_SKB_CB(skb)->header->reserved2 = 0; NXP_C45_SKB_CB(skb)->header->reserved2 = 0;
netif_rx_ni(skb); netif_rx(skb);
} }
if (priv->extts) { if (priv->extts) {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment