diff options
author | Jiri Pirko <jiri@resnulli.us> | 2014-01-22 09:05:55 +0100 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2014-01-22 21:57:05 -0800 |
commit | ba7d49b1f0f8e5f24294a880ed576964059af5ef (patch) | |
tree | dbd5c9c4418d4a72fe44a5f9af0e51e0d2be747a /include/uapi | |
parent | df7dbcbbafc0b8f3fb31a40c6f3c4a7e15cb0b40 (diff) |
rtnetlink: provide api for getting and setting slave info
Recent patch
bonding: add netlink attributes to slave link dev (1d3ee88ae0d6)
Introduced yet another device specific way to access slave information
over rtnetlink. There is one already there for bridge.
This patch introduces generic way to do this, for getting and setting
info as well by extending link_ops. Later on, this new interface will
be used for bridge ports as well.
Signed-off-by: Jiri Pirko <jiri@resnulli.us>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'include/uapi')
-rw-r--r-- | include/uapi/linux/if_link.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/uapi/linux/if_link.h b/include/uapi/linux/if_link.h index 1f30b85ebf9d..b8fb352b58f6 100644 --- a/include/uapi/linux/if_link.h +++ b/include/uapi/linux/if_link.h @@ -241,6 +241,8 @@ enum { IFLA_INFO_KIND, IFLA_INFO_DATA, IFLA_INFO_XSTATS, + IFLA_INFO_SLAVE_KIND, + IFLA_INFO_SLAVE_DATA, __IFLA_INFO_MAX, }; |