diff options
author | Fabian Frederick <fabf@skynet.be> | 2014-04-17 19:51:06 +0400 |
---|---|---|
committer | Jaegeuk Kim <jaegeuk.kim@samsung.com> | 2014-05-07 05:21:55 +0400 |
commit | b49ad51e6d4fa665a0ab587798d36bebfdfa54a9 (patch) | |
tree | 8a106fe69c67c70ff3dd9660b902461ba0baceeb /fs/f2fs/checkpoint.c | |
parent | 94dac22e72e891b16e8e8abbdb6df10f322d20e0 (diff) | |
download | linux-b49ad51e6d4fa665a0ab587798d36bebfdfa54a9.tar.xz |
f2fs: add static to get_max_meta_blks
inline get_max_meta_blks is only used in checkpoint.c
Use standard static inline format.
Cc: Jaegeuk Kim <jaegeuk.kim@samsung.com>
Cc: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Fabian Frederick <fabf@skynet.be>
Signed-off-by: Jaegeuk Kim <jaegeuk.kim@samsung.com>
Diffstat (limited to 'fs/f2fs/checkpoint.c')
-rw-r--r-- | fs/f2fs/checkpoint.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/f2fs/checkpoint.c b/fs/f2fs/checkpoint.c index 744c68be2e15..1346ce916b84 100644 --- a/fs/f2fs/checkpoint.c +++ b/fs/f2fs/checkpoint.c @@ -73,7 +73,7 @@ out: return page; } -inline int get_max_meta_blks(struct f2fs_sb_info *sbi, int type) +static inline int get_max_meta_blks(struct f2fs_sb_info *sbi, int type) { switch (type) { case META_NAT: |