diff options
author | Gu Zheng <guz.fnst@cn.fujitsu.com> | 2014-03-07 05:43:28 -0500 |
---|---|---|
committer | Jaegeuk Kim <jaegeuk.kim@samsung.com> | 2014-03-10 05:45:14 -0400 |
commit | e8512d2e0c4eb38cd78b1499bb08d7d8eea6c723 (patch) | |
tree | 9c5f2990b8f14b14ba82cb2469f9afd9f12e976b /fs/f2fs/gc.c | |
parent | b6ce391e615175029cb8496f03afc9905e0957cc (diff) |
f2fs: remove the unused ctor argument of f2fs_kmem_cache_create()
Signed-off-by: Gu Zheng <guz.fnst@cn.fujitsu.com>
Signed-off-by: Jaegeuk Kim <jaegeuk.kim@samsung.com>
Diffstat (limited to 'fs/f2fs/gc.c')
-rw-r--r-- | fs/f2fs/gc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/f2fs/gc.c b/fs/f2fs/gc.c index d94acbc3d928..b90dbe55403a 100644 --- a/fs/f2fs/gc.c +++ b/fs/f2fs/gc.c | |||
@@ -742,7 +742,7 @@ void build_gc_manager(struct f2fs_sb_info *sbi) | |||
742 | int __init create_gc_caches(void) | 742 | int __init create_gc_caches(void) |
743 | { | 743 | { |
744 | winode_slab = f2fs_kmem_cache_create("f2fs_gc_inodes", | 744 | winode_slab = f2fs_kmem_cache_create("f2fs_gc_inodes", |
745 | sizeof(struct inode_entry), NULL); | 745 | sizeof(struct inode_entry)); |
746 | if (!winode_slab) | 746 | if (!winode_slab) |
747 | return -ENOMEM; | 747 | return -ENOMEM; |
748 | return 0; | 748 | return 0; |