diff options
author | Richard Alpe <richard.alpe@ericsson.com> | 2016-03-04 17:04:42 +0100 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2016-03-07 14:56:41 -0500 |
commit | 49cc66eaee19e772997b63b057ea4b4bf7d48db0 (patch) | |
tree | 94239e052435b3c2d505c8be6e2f7582db5d1da8 /net/tipc/udp_media.c | |
parent | 8dfd329fbc240729938d24bf87aca49ea89289c5 (diff) | |
download | linux-49cc66eaee19e772997b63b057ea4b4bf7d48db0.tar.bz2 |
tipc: move netlink policies to netlink.c
Make the c files less cluttered and enable netlink attributes to be
shared between files.
Signed-off-by: Richard Alpe <richard.alpe@ericsson.com>
Reviewed-by: Jon Maloy <jon.maloy@ericsson.com>
Acked-by: Parthasarathy Bhuvaragan <parthasarathy.bhuvaragan@ericsson.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/tipc/udp_media.c')
-rw-r--r-- | net/tipc/udp_media.c | 9 |
1 files changed, 1 insertions, 8 deletions
diff --git a/net/tipc/udp_media.c b/net/tipc/udp_media.c index fb2f7ec68eef..49b3c2ede7ab 100644 --- a/net/tipc/udp_media.c +++ b/net/tipc/udp_media.c @@ -48,20 +48,13 @@ #include <linux/tipc_netlink.h> #include "core.h" #include "bearer.h" +#include "netlink.h" /* IANA assigned UDP port */ #define UDP_PORT_DEFAULT 6118 #define UDP_MIN_HEADROOM 28 -static const struct nla_policy tipc_nl_udp_policy[TIPC_NLA_UDP_MAX + 1] = { - [TIPC_NLA_UDP_UNSPEC] = {.type = NLA_UNSPEC}, - [TIPC_NLA_UDP_LOCAL] = {.type = NLA_BINARY, - .len = sizeof(struct sockaddr_storage)}, - [TIPC_NLA_UDP_REMOTE] = {.type = NLA_BINARY, - .len = sizeof(struct sockaddr_storage)}, -}; - /** * struct udp_media_addr - IP/UDP addressing information * |