mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-16 08:44:21 +08:00
net: phy: Use netif_rx().
Since commit
baebdf48c3
("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: Sebastian Andrzej Siewior <bigeasy@linutronix.de>
Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
4c22aac3f8
commit
a3d73e1590
@ -886,7 +886,7 @@ out:
|
||||
spin_unlock_irqrestore(&dp83640->rx_lock, flags);
|
||||
|
||||
if (shhwtstamps)
|
||||
netif_rx_ni(skb);
|
||||
netif_rx(skb);
|
||||
}
|
||||
|
||||
static void decode_txts(struct dp83640_private *dp83640,
|
||||
@ -1329,7 +1329,7 @@ static void rx_timestamp_work(struct work_struct *work)
|
||||
break;
|
||||
}
|
||||
|
||||
netif_rx_ni(skb);
|
||||
netif_rx(skb);
|
||||
}
|
||||
|
||||
if (!skb_queue_empty(&dp83640->rx_queue))
|
||||
@ -1380,7 +1380,7 @@ static bool dp83640_rxtstamp(struct mii_timestamper *mii_ts,
|
||||
skb_queue_tail(&dp83640->rx_queue, skb);
|
||||
schedule_delayed_work(&dp83640->ts_work, SKB_TIMESTAMP_TIMEOUT);
|
||||
} else {
|
||||
netif_rx_ni(skb);
|
||||
netif_rx(skb);
|
||||
}
|
||||
|
||||
return true;
|
||||
|
@ -1212,7 +1212,7 @@ static bool vsc85xx_rxtstamp(struct mii_timestamper *mii_ts,
|
||||
ts.tv_sec--;
|
||||
|
||||
shhwtstamps->hwtstamp = ktime_set(ts.tv_sec, ns);
|
||||
netif_rx_ni(skb);
|
||||
netif_rx(skb);
|
||||
|
||||
return true;
|
||||
}
|
||||
|
@ -478,7 +478,7 @@ static long nxp_c45_do_aux_work(struct ptp_clock_info *ptp)
|
||||
shhwtstamps_rx = skb_hwtstamps(skb);
|
||||
shhwtstamps_rx->hwtstamp = ns_to_ktime(timespec64_to_ns(&ts));
|
||||
NXP_C45_SKB_CB(skb)->header->reserved2 = 0;
|
||||
netif_rx_ni(skb);
|
||||
netif_rx(skb);
|
||||
}
|
||||
|
||||
if (priv->extts) {
|
||||
|
Loading…
Reference in New Issue
Block a user