diff options
author | Chao Yu <chao2.yu@samsung.com> | 2015-12-15 13:29:47 +0800 |
---|---|---|
committer | Jaegeuk Kim <jaegeuk@kernel.org> | 2015-12-15 13:23:43 -0800 |
commit | a49324f127dec918f5a3b3f145d0bf2fb81f4588 (patch) | |
tree | b779dbb8912eb946aa6b8f70eaaf604c963b2e82 /fs/f2fs/super.c | |
parent | a11fac3776fc4db6a9fa1104b1d0477809c677e0 (diff) | |
download | blackbird-op-linux-a49324f127dec918f5a3b3f145d0bf2fb81f4588.tar.gz blackbird-op-linux-a49324f127dec918f5a3b3f145d0bf2fb81f4588.zip |
f2fs: rename {add,remove,release}_dirty_inode to {add,remove,release}_ino_entry
remove_dirty_dir_inode will be renamed to remove_dirty_inode as a generic
function in following patch for removing directory/regular/symlink inode
in global dirty list.
Here rename ino management related functions for readability, also in
order to avoid name conflict.
Signed-off-by: Chao Yu <chao2.yu@samsung.com>
Signed-off-by: Jaegeuk Kim <jaegeuk@kernel.org>
Diffstat (limited to 'fs/f2fs/super.c')
-rw-r--r-- | fs/f2fs/super.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/f2fs/super.c b/fs/f2fs/super.c index a6f2beda22b9..9ee7144c5367 100644 --- a/fs/f2fs/super.c +++ b/fs/f2fs/super.c @@ -548,7 +548,7 @@ static void f2fs_put_super(struct super_block *sb) * normally superblock is clean, so we need to release this. * In addition, EIO will skip do checkpoint, we need this as well. */ - release_dirty_inode(sbi); + release_ino_entry(sbi); release_discard_addrs(sbi); f2fs_leave_shrinker(sbi); |