diff options
author | Wei Yongjun <yongjun_wei@trendmicro.com.cn> | 2014-01-21 15:48:37 -0800 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2014-01-21 16:19:42 -0800 |
commit | 16eac4be46fdd19e4e0bcd06e77e947266d2cf35 (patch) | |
tree | f6ade51c810f7065e728dda2ee110ac1ccf702ec /fs/ocfs2 | |
parent | 1ba2212bb3e9527a4b3d18692f5ffe204f29bb47 (diff) | |
download | linux-16eac4be46fdd19e4e0bcd06e77e947266d2cf35.tar.gz linux-16eac4be46fdd19e4e0bcd06e77e947266d2cf35.tar.bz2 linux-16eac4be46fdd19e4e0bcd06e77e947266d2cf35.zip |
ocfs2: fix sparse non static symbol warning
Fixes the following sparse warning:
fs/ocfs2/stack_user.c:930:32: warning:
symbol 'ocfs2_ls_ops' was not declared. Should it be static?
Signed-off-by: Wei Yongjun <yongjun_wei@trendmicro.com.cn>
Cc: Mark Fasheh <mfasheh@suse.com>
Cc: Joel Becker <jlbec@evilplan.org>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'fs/ocfs2')
-rw-r--r-- | fs/ocfs2/stack_user.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/ocfs2/stack_user.c b/fs/ocfs2/stack_user.c index 673ab40eb81b..13a8537d8e8b 100644 --- a/fs/ocfs2/stack_user.c +++ b/fs/ocfs2/stack_user.c @@ -979,7 +979,7 @@ static void user_recover_done(void *arg, struct dlm_slot *slots, wake_up(&lc->oc_wait); } -const struct dlm_lockspace_ops ocfs2_ls_ops = { +static const struct dlm_lockspace_ops ocfs2_ls_ops = { .recover_prep = user_recover_prep, .recover_slot = user_recover_slot, .recover_done = user_recover_done, |