projects
/
openwrt
/
staging
/
blogic.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
bab5c80
)
ocfs2: fix a GCC warning
author
zhong jiang
<
[email protected]
>
Sat, 13 Oct 2018 04:34:26 +0000
(21:34 -0700)
committer
Greg Kroah-Hartman
<
[email protected]
>
Sat, 13 Oct 2018 07:31:02 +0000
(09:31 +0200)
Fix the following compile warning:
fs/ocfs2/dlmglue.c:99:30: warning:
\91
lockdep_keys
\92
defined but not used [-Wunused-variable]
static struct lock_class_key lockdep_keys[OCFS2_NUM_LOCK_TYPES];
Link:
http://lkml.kernel.org/r/
[email protected]
Signed-off-by: zhong jiang <
[email protected]
>
Reviewed-by: Andrew Morton <
[email protected]
>
Signed-off-by: Andrew Morton <
[email protected]
>
Signed-off-by: Greg Kroah-Hartman <
[email protected]
>
fs/ocfs2/dlmglue.c
patch
|
blob
|
history
diff --git
a/fs/ocfs2/dlmglue.c
b/fs/ocfs2/dlmglue.c
index 8e712b614e6e2ac541528d90cc75ea6f850a0e1e..933aac5da193415643b34a33e14db4fdb6fc29b5 100644
(file)
--- a/
fs/ocfs2/dlmglue.c
+++ b/
fs/ocfs2/dlmglue.c
@@
-96,7
+96,9
@@
struct ocfs2_unblock_ctl {
};
/* Lockdep class keys */
+#ifdef CONFIG_DEBUG_LOCK_ALLOC
static struct lock_class_key lockdep_keys[OCFS2_NUM_LOCK_TYPES];
+#endif
static int ocfs2_check_meta_downconvert(struct ocfs2_lock_res *lockres,
int new_level);