aboutsummaryrefslogtreecommitdiff
path: root/fs/dlm/netlink.c
diff options
context:
space:
mode:
authorGravatar Linus Torvalds <torvalds@linux-foundation.org> 2016-12-14 08:31:37 -0800
committerGravatar Linus Torvalds <torvalds@linux-foundation.org> 2016-12-14 08:31:37 -0800
commit19d37ce2a7159ee30bd59d14fe5fe13c932bd5b7 (patch)
treefe92aedc62b5283b2473cd1506ef760285d94f7a /fs/dlm/netlink.c
parentMerge tag 'jfs-4.10' of git://github.com/kleikamp/linux-shaggy (diff)
parentdlm: fix error return code in sctp_accept_from_sock() (diff)
downloadlinux-19d37ce2a7159ee30bd59d14fe5fe13c932bd5b7.tar.gz
linux-19d37ce2a7159ee30bd59d14fe5fe13c932bd5b7.tar.bz2
linux-19d37ce2a7159ee30bd59d14fe5fe13c932bd5b7.zip
Merge tag 'dlm-4.10' of git://git.kernel.org/pub/scm/linux/kernel/git/teigland/linux-dlm
Pull dlm fixes from David Teigland: "This set fixes error reporting for dlm sockets, removes the unbound property on the dlm callback workqueue to improve performance, and includes a couple trivial changes" * tag 'dlm-4.10' of git://git.kernel.org/pub/scm/linux/kernel/git/teigland/linux-dlm: dlm: fix error return code in sctp_accept_from_sock() dlm: don't specify WQ_UNBOUND for the ast callback workqueue dlm: remove lock_sock to avoid scheduling while atomic dlm: don't save callbacks after accept dlm: audit and remove any unnecessary uses of module.h dlm: make genl_ops const
Diffstat (limited to 'fs/dlm/netlink.c')
-rw-r--r--fs/dlm/netlink.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/dlm/netlink.c b/fs/dlm/netlink.c
index 0643ae44f342..43a96c330570 100644
--- a/fs/dlm/netlink.c
+++ b/fs/dlm/netlink.c
@@ -65,7 +65,7 @@ static int user_cmd(struct sk_buff *skb, struct genl_info *info)
return 0;
}
-static struct genl_ops dlm_nl_ops[] = {
+static const struct genl_ops dlm_nl_ops[] = {
{
.cmd = DLM_CMD_HELLO,
.doit = user_cmd,