netdev: expose DPLL pin handle for netdevice
In case netdevice represents a SyncE port, the user needs to understand the connection between netdevice and associated DPLL pin. There might me multiple netdevices pointing to the same pin, in case of VF/SF implementation. Add a IFLA Netlink attribute to nest the DPLL pin handle, similar to how it is implemented for devlink port. Add a struct dpll_pin pointer to netdev and protect access to it by RTNL. Expose netdev_dpll_pin_set() and netdev_dpll_pin_clear() helpers to the drivers so they can set/clear the DPLL pin relationship to netdev. Note that during the lifetime of struct dpll_pin the pin handle does not change. Therefore it is save to access it lockless. It is drivers responsibility to call netdev_dpll_pin_clear() before dpll_pin_put(). Signed-off-by:Jiri Pirko <jiri@nvidia.com> Signed-off-by:
Arkadiusz Kubalewski <arkadiusz.kubalewski@intel.com> Signed-off-by:
Vadim Fedorenko <vadim.fedorenko@linux.dev> Signed-off-by:
David S. Miller <davem@davemloft.net>
Showing
- drivers/dpll/dpll_netlink.c 14 additions, 2 deletionsdrivers/dpll/dpll_netlink.c
- include/linux/dpll.h 15 additions, 0 deletionsinclude/linux/dpll.h
- include/linux/netdevice.h 21 additions, 0 deletionsinclude/linux/netdevice.h
- include/uapi/linux/if_link.h 1 addition, 1 deletioninclude/uapi/linux/if_link.h
- net/core/dev.c 22 additions, 0 deletionsnet/core/dev.c
- net/core/rtnetlink.c 36 additions, 0 deletionsnet/core/rtnetlink.c
Please register or sign in to comment