summaryrefslogtreecommitdiffstats
path: root/fs/f2fs/super.c
diff options
context:
space:
mode:
authorJaegeuk Kim2014-07-26 00:47:17 +0200
committerJaegeuk Kim2014-07-29 16:45:54 +0200
commit6451e041c8d39daf39c71eefe839641c2093713e (patch)
tree971f0c3ab382126d3d584c5fbe235a6d03cc8965 /fs/f2fs/super.c
parentf2fs: punch the core function for inode management (diff)
downloadkernel-qcow2-linux-6451e041c8d39daf39c71eefe839641c2093713e.tar.gz
kernel-qcow2-linux-6451e041c8d39daf39c71eefe839641c2093713e.tar.xz
kernel-qcow2-linux-6451e041c8d39daf39c71eefe839641c2093713e.zip
f2fs: add infra for ino management
This patch changes the naming of orphan-related data structures to use as inode numbers managed globally. Later, we can use this facility for managing any inode number lists. Reviewed-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.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/f2fs/super.c b/fs/f2fs/super.c
index 93593ceec175..f253e222dcea 100644
--- a/fs/f2fs/super.c
+++ b/fs/f2fs/super.c
@@ -1003,7 +1003,7 @@ static int f2fs_fill_super(struct super_block *sb, void *data, int silent)
INIT_LIST_HEAD(&sbi->dir_inode_list);
spin_lock_init(&sbi->dir_inode_lock);
- init_orphan_info(sbi);
+ init_ino_entry_info(sbi);
/* setup f2fs internal modules */
err = build_segment_manager(sbi);