f2fs: support fs shutdown
authorJaegeuk Kim <jaegeuk@kernel.org>
Fri, 9 Jan 2015 03:15:53 +0000 (19:15 -0800)
committerJaegeuk Kim <jaegeuk@kernel.org>
Fri, 10 Apr 2015 22:07:57 +0000 (15:07 -0700)
commit1abff93d01eddaab7ccdcf15f8cda4d91cbbcd9a
tree786074cc5ef7729f9ceaf0f7dd48e9c94b7a0149
parent8fbc418f99caf65a53f3921ac2a32a0a0af7aba2
f2fs: support fs shutdown

This patch introduces a generic ioctl for fs shutdown, which was used by xfs.

If this shutdown is triggered, filesystem stops any further IOs according to the
following options.

1. FS_GOING_DOWN_FULLSYNC
 : this will flush all the data and dentry blocks, and do checkpoint before
   shutdown.

2. FS_GOING_DOWN_METASYNC
 : this will do checkpoint before shutdown.

3. FS_GOING_DOWN_NOSYNC
 : this will trigger shutdown as is.

Signed-off-by: Jaegeuk Kim <jaegeuk@kernel.org>
fs/f2fs/f2fs.h
fs/f2fs/file.c
This page took 0.025882 seconds and 5 git commands to generate.