hsr: set .netnsok flag
authorTaehee Yoo <ap420073@gmail.com>
Fri, 13 Mar 2020 06:50:33 +0000 (06:50 +0000)
committerDavid S. Miller <davem@davemloft.net>
Mon, 16 Mar 2020 08:46:09 +0000 (01:46 -0700)
The hsr module has been supporting the list and status command.
(HSR_C_GET_NODE_LIST and HSR_C_GET_NODE_STATUS)
These commands send node information to the user-space via generic netlink.
But, in the non-init_net namespace, these commands are not allowed
because .netnsok flag is false.
So, there is no way to get node information in the non-init_net namespace.

Fixes: f421436a591d ("net/hsr: Add support for the High-availability Seamless Redundancy protocol (HSRv0)")
Signed-off-by: Taehee Yoo <ap420073@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
net/hsr/hsr_netlink.c

index 726bfe9..fae21c8 100644 (file)
@@ -470,6 +470,7 @@ static struct genl_family hsr_genl_family __ro_after_init = {
        .version = 1,
        .maxattr = HSR_A_MAX,
        .policy = hsr_genl_policy,
+       .netnsok = true,
        .module = THIS_MODULE,
        .ops = hsr_ops,
        .n_ops = ARRAY_SIZE(hsr_ops),