aboutsummaryrefslogtreecommitdiffstats
path: root/net/tipc/netlink_compat.c
diff options
context:
space:
mode:
authorArvind Yadav <arvind.yadav.cs@gmail.com>2017-08-23 16:22:20 +0530
committerDavid S. Miller <davem@davemloft.net>2017-08-23 22:31:38 -0700
commit042a90106b09beff4fa9015d1940e45ce10297ab (patch)
tree2a16477b8f38a48f0f84ead5ca27ca9db95ab0aa /net/tipc/netlink_compat.c
parentnet: hinic: make functions set_ctrl0 and set_ctrl1 static (diff)
downloadlinux-dev-042a90106b09beff4fa9015d1940e45ce10297ab.tar.xz
linux-dev-042a90106b09beff4fa9015d1940e45ce10297ab.zip
net: tipc: constify genl_ops
genl_ops are not supposed to change at runtime. All functions working with genl_ops provided by <net/genetlink.h> work with const genl_ops. So mark the non-const structs as const. Signed-off-by: Arvind Yadav <arvind.yadav.cs@gmail.com> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/tipc/netlink_compat.c')
-rw-r--r--net/tipc/netlink_compat.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/net/tipc/netlink_compat.c b/net/tipc/netlink_compat.c
index 750949dfc1d7..e48f0b2c01b9 100644
--- a/net/tipc/netlink_compat.c
+++ b/net/tipc/netlink_compat.c
@@ -1217,7 +1217,7 @@ send:
return err;
}
-static struct genl_ops tipc_genl_compat_ops[] = {
+static const struct genl_ops tipc_genl_compat_ops[] = {
{
.cmd = TIPC_GENL_CMD,
.doit = tipc_nl_compat_recv,