mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-01-09 23:00:21 +00:00
net: dsa: Use netif_rx().
Since commit baebdf48c3600 ("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: Kurt Kanzenbach <kurt@linutronix.de> Cc: Andrew Lunn <andrew@lunn.ch> Cc: Vivien Didelot <vivien.didelot@gmail.com> Cc: Florian Fainelli <f.fainelli@gmail.com> Cc: Vladimir Oltean <olteanv@gmail.com> Signed-off-by: Sebastian Andrzej Siewior <bigeasy@linutronix.de> Acked-by: Kurt Kanzenbach <kurt@linutronix.de> # hellcreek Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
3fb4430e73
commit
db00cc9da0
@ -331,7 +331,7 @@ static void hellcreek_get_rxts(struct hellcreek *hellcreek,
|
||||
shwt = skb_hwtstamps(skb);
|
||||
memset(shwt, 0, sizeof(*shwt));
|
||||
shwt->hwtstamp = ns_to_ktime(ns);
|
||||
netif_rx_ni(skb);
|
||||
netif_rx(skb);
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -301,7 +301,7 @@ static void mv88e6xxx_get_rxts(struct mv88e6xxx_chip *chip,
|
||||
shwt->hwtstamp = ns_to_ktime(ns);
|
||||
status &= ~MV88E6XXX_PTP_TS_VALID;
|
||||
}
|
||||
netif_rx_ni(skb);
|
||||
netif_rx(skb);
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -399,7 +399,7 @@ static long sja1105_rxtstamp_work(struct ptp_clock_info *ptp)
|
||||
ts = sja1105_tstamp_reconstruct(ds, ticks, ts);
|
||||
|
||||
shwt->hwtstamp = ns_to_ktime(sja1105_ticks_to_ns(ts));
|
||||
netif_rx_ni(skb);
|
||||
netif_rx(skb);
|
||||
}
|
||||
|
||||
if (ptp_data->extts_enabled)
|
||||
|
Loading…
x
Reference in New Issue
Block a user