On Sun, Oct 07, 2018 at 02:07:28PM -0700, Richard Cochran wrote: > On Sun, Oct 07, 2018 at 01:59:06PM -0700, Richard Cochran wrote: > > On Sun, Oct 07, 2018 at 09:54:00PM +0200, Andrew Lunn wrote: > > > 1) phylink, not phdev. We have been pushing some MAC drivers towards > > > phylink, especially those which support >1Gbp. > > > > If a phylink device appears that wants time stamping, can't we add the > > call to register_mii_timestamper()? > > Actually, I see that 'struct phylink' has a 'struct phy_device *phydev', > and so it can implement the 'struct mii_timestamper' interface directly. Maybe. But you still don't have skb->dev->phydev. And phylink->phydev is much more dynamic, since it can be hot-{un}plugged. You need to handle it going away at any time. However, your timestamper is unlikely to be hot-{un}pluggable. So skb->dev->mii_timestamper seems a lot safer. Andrew