diff options
author | Jiri Pirko <jiri@mellanox.com> | 2016-02-26 17:32:23 +0100 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2016-03-01 16:07:29 -0500 |
commit | bfcd3a46617209454cfc0947ab093e37fd1e84ef (patch) | |
tree | 95eeb37695a1b78d4b99f4c4c4a616deed26825a /net/core/Makefile | |
parent | bd070e212688c0d95c68dfe7d54a5aa2a60a8f11 (diff) | |
download | talos-op-linux-bfcd3a46617209454cfc0947ab093e37fd1e84ef.tar.gz talos-op-linux-bfcd3a46617209454cfc0947ab093e37fd1e84ef.zip |
Introduce devlink infrastructure
Introduce devlink infrastructure for drivers to register and expose to
userspace via generic Netlink interface.
There are two basic objects defined:
devlink - one instance for every "parent device", for example switch ASIC
devlink port - one instance for every physical port of the device.
This initial portion implements basic get/dump of objects to userspace.
Also, port splitter and port type setting is implemented.
Signed-off-by: Jiri Pirko <jiri@mellanox.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/core/Makefile')
-rw-r--r-- | net/core/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/net/core/Makefile b/net/core/Makefile index 7a8fb8aef992..014422e2561f 100644 --- a/net/core/Makefile +++ b/net/core/Makefile @@ -25,3 +25,4 @@ obj-$(CONFIG_CGROUP_NET_PRIO) += netprio_cgroup.o obj-$(CONFIG_CGROUP_NET_CLASSID) += netclassid_cgroup.o obj-$(CONFIG_LWTUNNEL) += lwtunnel.o obj-$(CONFIG_DST_CACHE) += dst_cache.o +obj-$(CONFIG_NET_DEVLINK) += devlink.o |