aboutsummaryrefslogtreecommitdiffstats
path: root/fs/f2fs/node.h
diff options
context:
space:
mode:
authorJaegeuk Kim <jaegeuk@kernel.org>2014-12-09 06:08:59 -0800
committerJaegeuk Kim <jaegeuk@kernel.org>2015-01-09 17:02:22 -0800
commit1e84371ffeef451e8532e0cd04c2fe59ff10c514 (patch)
tree83cce972cf37a185f90c4231213c69f84881511f /fs/f2fs/node.h
parentf2fs: don't need to call lock_op and lock_page for abort (diff)
downloadlinux-dev-1e84371ffeef451e8532e0cd04c2fe59ff10c514.tar.xz
linux-dev-1e84371ffeef451e8532e0cd04c2fe59ff10c514.zip
f2fs: change atomic and volatile write policies
This patch adds two new ioctls to release inmemory pages grabbed by atomic writes. o f2fs_ioc_abort_volatile_write - If transaction was failed, all the grabbed pages and data should be written. o f2fs_ioc_release_volatile_write - This is to enhance the performance of PERSIST mode in sqlite. In order to avoid huge memory consumption which causes OOM, this patch changes volatile writes to use normal dirty pages, instead blocked flushing to the disk as long as system does not suffer from memory pressure. Signed-off-by: Jaegeuk Kim <jaegeuk@kernel.org>
Diffstat (limited to 'fs/f2fs/node.h')
-rw-r--r--fs/f2fs/node.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/fs/f2fs/node.h b/fs/f2fs/node.h
index d10b6448a671..036b887176ff 100644
--- a/fs/f2fs/node.h
+++ b/fs/f2fs/node.h
@@ -108,6 +108,7 @@ enum mem_type {
NAT_ENTRIES, /* indicates the cached nat entry */
DIRTY_DENTS, /* indicates dirty dentry pages */
INO_ENTRIES, /* indicates inode entries */
+ BASE_CHECK, /* check kernel status */
};
struct nat_entry_set {