Re: [f2fs-dev] [PATCH 08/13] f2fs: do checkpoint at f2fs_put_super

2014-08-15 Thread Jaegeuk Kim
.kernel.org; > > linux-f2fs-de...@lists.sourceforge.net > > Cc: Jaegeuk Kim > > Subject: [f2fs-dev] [PATCH 08/13] f2fs: do checkpoint at f2fs_put_super > > > > The generic_shutdown_super calls sync_filesystem, evict_inode, and then > > f2fs_put_super. In f2fs_ev

RE: [f2fs-dev] [PATCH 08/13] f2fs: do checkpoint at f2fs_put_super

2014-08-13 Thread Chao Yu
2fs-dev] [PATCH 08/13] f2fs: do checkpoint at f2fs_put_super > > The generic_shutdown_super calls sync_filesystem, evict_inode, and then > f2fs_put_super. In f2fs_evict_inode, we remain some dirty inode information > so we should release them at f2fs_put_super. > > But normally, it&

[PATCH 08/13] f2fs: do checkpoint at f2fs_put_super

2014-08-12 Thread Jaegeuk Kim
The generic_shutdown_super calls sync_filesystem, evict_inode, and then f2fs_put_super. In f2fs_evict_inode, we remain some dirty inode information so we should release them at f2fs_put_super. But normally, it's more reasonable to set its superblock as dirty when evict_inode is called. Signed-off