mirror of
https://github.com/Fishwaldo/Star64_linux.git
synced 2025-04-05 05:54:25 +00:00
vlan: also check phy_driver ts_info for vlan's real device
Just like function ethtool_get_ts_info(), we should also consider the
phy_driver ts_info call back. For example, driver dp83640.
Fixes: 37dd9255b2
("vlan: Pass ethtool get_ts_info queries to real device.")
Acked-by: Richard Cochran <richardcochran@gmail.com>
Signed-off-by: Hangbin Liu <liuhangbin@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
c0b458a946
commit
ec1d8ccb07
1 changed files with 5 additions and 1 deletions
|
@ -29,6 +29,7 @@
|
||||||
#include <linux/net_tstamp.h>
|
#include <linux/net_tstamp.h>
|
||||||
#include <linux/etherdevice.h>
|
#include <linux/etherdevice.h>
|
||||||
#include <linux/ethtool.h>
|
#include <linux/ethtool.h>
|
||||||
|
#include <linux/phy.h>
|
||||||
#include <net/arp.h>
|
#include <net/arp.h>
|
||||||
#include <net/switchdev.h>
|
#include <net/switchdev.h>
|
||||||
|
|
||||||
|
@ -665,8 +666,11 @@ static int vlan_ethtool_get_ts_info(struct net_device *dev,
|
||||||
{
|
{
|
||||||
const struct vlan_dev_priv *vlan = vlan_dev_priv(dev);
|
const struct vlan_dev_priv *vlan = vlan_dev_priv(dev);
|
||||||
const struct ethtool_ops *ops = vlan->real_dev->ethtool_ops;
|
const struct ethtool_ops *ops = vlan->real_dev->ethtool_ops;
|
||||||
|
struct phy_device *phydev = vlan->real_dev->phydev;
|
||||||
|
|
||||||
if (ops->get_ts_info) {
|
if (phydev && phydev->drv && phydev->drv->ts_info) {
|
||||||
|
return phydev->drv->ts_info(phydev, info);
|
||||||
|
} else if (ops->get_ts_info) {
|
||||||
return ops->get_ts_info(vlan->real_dev, info);
|
return ops->get_ts_info(vlan->real_dev, info);
|
||||||
} else {
|
} else {
|
||||||
info->so_timestamping = SOF_TIMESTAMPING_RX_SOFTWARE |
|
info->so_timestamping = SOF_TIMESTAMPING_RX_SOFTWARE |
|
||||||
|
|
Loading…
Add table
Reference in a new issue