linux/fs/f2fs
Jaegeuk Kim 02a1335f25 f2fs: support volatile operations for transient data
This patch adds support for volatile writes which keep data pages in memory
until f2fs_evict_inode is called by iput.

For instance, we can use this feature for the sqlite database as follows.
While supporting atomic writes for main database file, we can keep its journal
data temporarily in the page cache by the following sequence.

1. open
 -> ioctl(F2FS_IOC_START_VOLATILE_WRITE);
2. writes
 : keep all the data in the page cache.
3. flush to the database file with atomic writes
  a. ioctl(F2FS_IOC_START_ATOMIC_WRITE);
  b. writes
  c. ioctl(F2FS_IOC_COMMIT_ATOMIC_WRITE);
4. close
 -> drop the cached data

Signed-off-by: Jaegeuk Kim <jaegeuk@kernel.org>
2014-10-07 11:54:41 -07:00
..
acl.c
acl.h
checkpoint.c
data.c f2fs: support volatile operations for transient data 2014-10-07 11:54:41 -07:00
debug.c
dir.c
f2fs.h f2fs: support volatile operations for transient data 2014-10-07 11:54:41 -07:00
file.c f2fs: support volatile operations for transient data 2014-10-07 11:54:41 -07:00
gc.c
gc.h
hash.c
inline.c f2fs: support atomic writes 2014-10-06 17:39:50 -07:00
inode.c f2fs: support volatile operations for transient data 2014-10-07 11:54:41 -07:00
Kconfig
Makefile
namei.c
node.c
node.h
recovery.c
segment.c f2fs: support atomic writes 2014-10-06 17:39:50 -07:00
segment.h f2fs: support atomic writes 2014-10-06 17:39:50 -07:00
super.c f2fs: support atomic writes 2014-10-06 17:39:50 -07:00
xattr.c
xattr.h