aboutsummaryrefslogtreecommitdiffstats
path: root/net/tipc/netlink.c
diff options
context:
space:
mode:
authorRichard Alpe <richard.alpe@ericsson.com>2014-11-20 04:29:18 -0500
committerDavid S. Miller <davem@davemloft.net>2014-11-21 15:01:31 -0500
commitfd3cf2ad519f73c2f7a46460ebedf32ad246520c (patch)
tree805def541890ad8d3343fff208f43d3d747c56a9 /net/tipc/netlink.c
parent3e4b6ab58d614934e7ca99bdf448089695d34ffa (diff)
tipc: add net dump to new netlink api
Add TIPC_NL_NET_GET command to the new tipc netlink API. This command dumps the network id of the node. Netlink logical layout of returned network data: -> net -> id 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.c9
1 files changed, 8 insertions, 1 deletions
diff --git a/net/tipc/netlink.c b/net/tipc/netlink.c
index 5b0e3c8457d2..c143f9c20f61 100644
--- a/net/tipc/netlink.c
+++ b/net/tipc/netlink.c
@@ -40,6 +40,7 @@
40#include "bearer.h" 40#include "bearer.h"
41#include "link.h" 41#include "link.h"
42#include "node.h" 42#include "node.h"
43#include "net.h"
43#include <net/genetlink.h> 44#include <net/genetlink.h>
44 45
45static int handle_cmd(struct sk_buff *skb, struct genl_info *info) 46static int handle_cmd(struct sk_buff *skb, struct genl_info *info)
@@ -79,7 +80,8 @@ static const struct nla_policy tipc_nl_policy[TIPC_NLA_MAX + 1] = {
79 [TIPC_NLA_PUBL] = { .type = NLA_NESTED, }, 80 [TIPC_NLA_PUBL] = { .type = NLA_NESTED, },
80 [TIPC_NLA_LINK] = { .type = NLA_NESTED, }, 81 [TIPC_NLA_LINK] = { .type = NLA_NESTED, },
81 [TIPC_NLA_MEDIA] = { .type = NLA_NESTED, }, 82 [TIPC_NLA_MEDIA] = { .type = NLA_NESTED, },
82 [TIPC_NLA_NODE] = { .type = NLA_NESTED, } 83 [TIPC_NLA_NODE] = { .type = NLA_NESTED, },
84 [TIPC_NLA_NET] = { .type = NLA_NESTED, }
83}; 85};
84 86
85/* Legacy ASCII API */ 87/* Legacy ASCII API */
@@ -173,6 +175,11 @@ static const struct genl_ops tipc_genl_v2_ops[] = {
173 .cmd = TIPC_NL_NODE_GET, 175 .cmd = TIPC_NL_NODE_GET,
174 .dumpit = tipc_nl_node_dump, 176 .dumpit = tipc_nl_node_dump,
175 .policy = tipc_nl_policy, 177 .policy = tipc_nl_policy,
178 },
179 {
180 .cmd = TIPC_NL_NET_GET,
181 .dumpit = tipc_nl_net_dump,
182 .policy = tipc_nl_policy,
176 } 183 }
177}; 184};
178 185