From: Jaegeuk Kim Date: Sat, 16 Feb 2019 03:04:38 +0000 (-0800) Subject: f2fs: fix wrong #endif X-Git-Tag: v5.1-rc1~25^2~21 X-Git-Url: https://git.kernel.dk/?a=commitdiff_plain;h=0af725fcb77a148b7da249fa01f98ceeaa149eec;p=linux-block.git f2fs: fix wrong #endif We have to cover whole headerfile with last #endif. Reviewed-by: Chao Yu Signed-off-by: Jaegeuk Kim --- diff --git a/fs/f2fs/f2fs.h b/fs/f2fs/f2fs.h index f1f0d2810852..19cbf17550c7 100644 --- a/fs/f2fs/f2fs.h +++ b/fs/f2fs/f2fs.h @@ -3626,8 +3626,6 @@ extern void f2fs_build_fault_attr(struct f2fs_sb_info *sbi, unsigned int rate, #define f2fs_build_fault_attr(sbi, rate, type) do { } while (0) #endif -#endif - static inline bool is_journalled_quota(struct f2fs_sb_info *sbi) { #ifdef CONFIG_QUOTA @@ -3640,3 +3638,5 @@ static inline bool is_journalled_quota(struct f2fs_sb_info *sbi) #endif return false; } + +#endif