diff options
author | Richard Alpe <richard.alpe@ericsson.com> | 2014-11-20 04:29:08 -0500 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2014-11-21 15:01:29 -0500 |
commit | 35b9dd7607f049466a66427e58818b29aeae9ea7 (patch) | |
tree | a196d3a4323d4fe9bf265858fad61e7b5aebcb85 /net/tipc/netlink.c | |
parent | 0655f6a8635b1b66f2434d5556b1044c14b1ccaf (diff) |
tipc: add bearer get/dump to new netlink api
Add TIPC_NL_BEARER_GET command to the new tipc netlink API.
This command supports dumping all data about all bearers or getting
all information about a specific bearer.
The information about a bearer includes name, link priorities and
domain.
Netlink logical layout of bearer get message:
-> bearer
-> name
Netlink logical layout of returned bearer information:
-> bearer
-> name
-> link properties
-> priority
-> tolerance
-> window
-> domain
Signed-off-by: Richard Alpe <richard.alpe@ericsson.com>
Reviewed-by: Erik Hugne <erik.hugne@ericsson.com>
Reviewed-by: Jon Maloy <jon.maloy@ericsson.com>
Acked-by: Ying Xue <ying.xue@windriver.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/tipc/netlink.c')
-rw-r--r-- | net/tipc/netlink.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/net/tipc/netlink.c b/net/tipc/netlink.c index af506ae0a129..0c00422512fa 100644 --- a/net/tipc/netlink.c +++ b/net/tipc/netlink.c | |||
@@ -112,6 +112,12 @@ static const struct genl_ops tipc_genl_v2_ops[] = { | |||
112 | .cmd = TIPC_NL_BEARER_ENABLE, | 112 | .cmd = TIPC_NL_BEARER_ENABLE, |
113 | .doit = tipc_nl_bearer_enable, | 113 | .doit = tipc_nl_bearer_enable, |
114 | .policy = tipc_nl_policy, | 114 | .policy = tipc_nl_policy, |
115 | }, | ||
116 | { | ||
117 | .cmd = TIPC_NL_BEARER_GET, | ||
118 | .doit = tipc_nl_bearer_get, | ||
119 | .dumpit = tipc_nl_bearer_dump, | ||
120 | .policy = tipc_nl_policy, | ||
115 | } | 121 | } |
116 | }; | 122 | }; |
117 | 123 | ||