diff options
author | Jaegeuk Kim <jaegeuk@kernel.org> | 2014-07-26 02:47:17 +0400 |
---|---|---|
committer | Jaegeuk Kim <jaegeuk@kernel.org> | 2014-07-29 18:45:54 +0400 |
commit | 6451e041c8d39daf39c71eefe839641c2093713e (patch) | |
tree | 971f0c3ab382126d3d584c5fbe235a6d03cc8965 /fs/f2fs/super.c | |
parent | 953e6cc6bcb615dfa373320ffa62b574c6be608a (diff) | |
download | linux-6451e041c8d39daf39c71eefe839641c2093713e.tar.xz |
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.c | 2 |
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); |