diff options
author | Chao Yu <yuchao0@huawei.com> | 2016-09-18 11:30:03 -0400 |
---|---|---|
committer | Jaegeuk Kim <jaegeuk@kernel.org> | 2016-09-22 14:43:04 -0400 |
commit | ebfa732217fd1dba7118aa5d37455fbf2f94c6b7 (patch) | |
tree | b8dd449fb856c74567242d544a48f3bbfa9f48b0 /fs/f2fs/dir.c | |
parent | 5905f9afa27234f74423f7276d0833fed6a9a415 (diff) |
f2fs: make f2fs_filetype_table static
There is no more user of f2fs_filetype_table outside of dir.c, make it
static.
Signed-off-by: Chao Yu <yuchao0@huawei.com>
Signed-off-by: Jaegeuk Kim <jaegeuk@kernel.org>
Diffstat (limited to 'fs/f2fs/dir.c')
-rw-r--r-- | fs/f2fs/dir.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/f2fs/dir.c b/fs/f2fs/dir.c index 2fb20fc58346..39a850b76bfe 100644 --- a/fs/f2fs/dir.c +++ b/fs/f2fs/dir.c | |||
@@ -37,7 +37,7 @@ static unsigned int bucket_blocks(unsigned int level) | |||
37 | return 4; | 37 | return 4; |
38 | } | 38 | } |
39 | 39 | ||
40 | unsigned char f2fs_filetype_table[F2FS_FT_MAX] = { | 40 | static unsigned char f2fs_filetype_table[F2FS_FT_MAX] = { |
41 | [F2FS_FT_UNKNOWN] = DT_UNKNOWN, | 41 | [F2FS_FT_UNKNOWN] = DT_UNKNOWN, |
42 | [F2FS_FT_REG_FILE] = DT_REG, | 42 | [F2FS_FT_REG_FILE] = DT_REG, |
43 | [F2FS_FT_DIR] = DT_DIR, | 43 | [F2FS_FT_DIR] = DT_DIR, |