diff options
author | Jakub Kicinski <kuba@kernel.org> | 2020-03-02 21:05:23 -0800 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2020-03-03 13:28:49 -0800 |
commit | 213320a67962ff6e7b83b704d55cbebc341426db (patch) | |
tree | b38829b8cdca2f042085eb6091b0bb0d3ae53495 /net | |
parent | 669fcd7795900cd1880237cbbb57a7db66cb9ac8 (diff) | |
download | linux-213320a67962ff6e7b83b704d55cbebc341426db.tar.gz linux-213320a67962ff6e7b83b704d55cbebc341426db.tar.bz2 linux-213320a67962ff6e7b83b704d55cbebc341426db.zip |
tipc: add missing attribute validation for MTU property
Add missing attribute validation for TIPC_NLA_PROP_MTU
to the netlink policy.
Fixes: 901271e0403a ("tipc: implement configuration of UDP media MTU")
Signed-off-by: Jakub Kicinski <kuba@kernel.org>
Signed-off-by: Jakub Kicinski <kuba@kernel.org>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net')
-rw-r--r-- | net/tipc/netlink.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/net/tipc/netlink.c b/net/tipc/netlink.c index 7c35094c20b8..bb9862410e68 100644 --- a/net/tipc/netlink.c +++ b/net/tipc/netlink.c @@ -116,6 +116,7 @@ const struct nla_policy tipc_nl_prop_policy[TIPC_NLA_PROP_MAX + 1] = { [TIPC_NLA_PROP_PRIO] = { .type = NLA_U32 }, [TIPC_NLA_PROP_TOL] = { .type = NLA_U32 }, [TIPC_NLA_PROP_WIN] = { .type = NLA_U32 }, + [TIPC_NLA_PROP_MTU] = { .type = NLA_U32 }, [TIPC_NLA_PROP_BROADCAST] = { .type = NLA_U32 }, [TIPC_NLA_PROP_BROADCAST_RATIO] = { .type = NLA_U32 } }; |