summaryrefslogtreecommitdiffstats
path: root/fs/f2fs/trace.c
diff options
context:
space:
mode:
authorJaegeuk Kim2015-02-11 01:23:12 +0100
committerJaegeuk Kim2015-02-12 02:04:49 +0100
commit29e7043f405c4c4c3a82f61222790f3ea8c0bf13 (patch)
tree9c47e10c3d04c74224718d99159c495e0806e3ce /fs/f2fs/trace.c
parentf2fs: allocate data blocks in advance for f2fs_direct_IO (diff)
downloadkernel-qcow2-linux-29e7043f405c4c4c3a82f61222790f3ea8c0bf13.tar.gz
kernel-qcow2-linux-29e7043f405c4c4c3a82f61222790f3ea8c0bf13.tar.xz
kernel-qcow2-linux-29e7043f405c4c4c3a82f61222790f3ea8c0bf13.zip
f2fs: fix sparse warnings
This patch resolves the following warnings. include/trace/events/f2fs.h:150:1: warning: expression using sizeof bool include/trace/events/f2fs.h:180:1: warning: expression using sizeof bool include/trace/events/f2fs.h:990:1: warning: expression using sizeof bool include/trace/events/f2fs.h:990:1: warning: expression using sizeof bool include/trace/events/f2fs.h:150:1: warning: odd constant _Bool cast (ffffffffffffffff becomes 1) include/trace/events/f2fs.h:180:1: warning: odd constant _Bool cast (ffffffffffffffff becomes 1) include/trace/events/f2fs.h:990:1: warning: odd constant _Bool cast (ffffffffffffffff becomes 1) include/trace/events/f2fs.h:990:1: warning: odd constant _Bool cast (ffffffffffffffff becomes 1) fs/f2fs/checkpoint.c:27:19: warning: symbol 'inode_entry_slab' was not declared. Should it be static? fs/f2fs/checkpoint.c:577:15: warning: cast to restricted __le32 fs/f2fs/checkpoint.c:592:15: warning: cast to restricted __le32 fs/f2fs/trace.c:19:1: warning: symbol 'pids' was not declared. Should it be static? fs/f2fs/trace.c:21:21: warning: symbol 'last_io' was not declared. Should it be static? Signed-off-by: Jaegeuk Kim <jaegeuk@kernel.org>
Diffstat (limited to 'fs/f2fs/trace.c')
-rw-r--r--fs/f2fs/trace.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/fs/f2fs/trace.c b/fs/f2fs/trace.c
index ce01a2c903bd..875aa8179bc1 100644
--- a/fs/f2fs/trace.c
+++ b/fs/f2fs/trace.c
@@ -16,9 +16,9 @@
#include "f2fs.h"
#include "trace.h"
-RADIX_TREE(pids, GFP_ATOMIC);
+static RADIX_TREE(pids, GFP_ATOMIC);
static spinlock_t pids_lock;
-struct last_io_info last_io;
+static struct last_io_info last_io;
static inline void __print_last_io(void)
{