Skip to content

Commit

Permalink
net: dsa: Implement ndo_get_phys_port_id
Browse files Browse the repository at this point in the history
Implement ndo_get_phys_port_id() by returning the physical port number
of the switch this per-port DSA created network interface corresponds
to.

Signed-off-by: Florian Fainelli <f.fainelli@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
  • Loading branch information
Florian Fainelli authored and David S. Miller committed Dec 30, 2016
1 parent 3d48b53 commit 3a543ef
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions net/dsa/slave.c
Original file line number Diff line number Diff line change
Expand Up @@ -984,6 +984,17 @@ static void dsa_slave_poll_controller(struct net_device *dev)
}
#endif

static int dsa_slave_get_phys_port_id(struct net_device *dev,
struct netdev_phys_item_id *ppid)
{
struct dsa_slave_priv *p = netdev_priv(dev);

ppid->id_len = sizeof(p->port);
memcpy(ppid->id, &p->port, ppid->id_len);

return 0;
}

void dsa_cpu_port_ethtool_init(struct ethtool_ops *ops)
{
ops->get_sset_count = dsa_cpu_port_get_sset_count;
Expand Down Expand Up @@ -1031,6 +1042,7 @@ static const struct net_device_ops dsa_slave_netdev_ops = {
.ndo_bridge_getlink = switchdev_port_bridge_getlink,
.ndo_bridge_setlink = switchdev_port_bridge_setlink,
.ndo_bridge_dellink = switchdev_port_bridge_dellink,
.ndo_get_phys_port_id = dsa_slave_get_phys_port_id,
};

static const struct switchdev_ops dsa_slave_switchdev_ops = {
Expand Down

0 comments on commit 3a543ef

Please sign in to comment.