Re: [PATCH 04/16 v2] f2fs: add super block operations

2012-10-28 Thread Vyacheslav Dubeyko
On Oct 23, 2012, at 6:27 AM, Jaegeuk Kim wrote: > This adds the implementation of superblock operations for f2fs, which includes > - init_f2fs_fs/exit_f2fs_fs > - f2fs_mount > - super_operations of f2fs > > Signed-off-by: Jaegeuk Kim > --- > fs/f2fs/super.c | 590 ++

RE: [PATCH 04/16 v2] f2fs: add super block operations

2012-10-23 Thread Jaegeuk Kim
[snip] > > + sb->s_op = &f2fs_sops; > > + sb->s_xattr = f2fs_xattr_handlers; > > + sb->s_magic = F2FS_SUPER_MAGIC; > > + sb->s_fs_info = sbi; > > and s_time_gran? Ok, I'll check this. Thanks, > > Marco --- Jaegeuk Kim Samsung -- To unsubscribe from this list: send t

Re: [PATCH 04/16 v2] f2fs: add super block operations

2012-10-22 Thread Marco Stornelli
2012/10/23 Jaegeuk Kim : > This adds the implementation of superblock operations for f2fs, which includes > - init_f2fs_fs/exit_f2fs_fs > - f2fs_mount > - super_operations of f2fs > > Signed-off-by: Jaegeuk Kim > --- > fs/f2fs/super.c | 590 >

[PATCH 04/16 v2] f2fs: add super block operations

2012-10-22 Thread Jaegeuk Kim
This adds the implementation of superblock operations for f2fs, which includes - init_f2fs_fs/exit_f2fs_fs - f2fs_mount - super_operations of f2fs Signed-off-by: Jaegeuk Kim --- fs/f2fs/super.c | 590 +++ 1 file changed, 590 insertions(+) cre