mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-11 12:28:41 +08:00
f2fs: specify extent cache for read explicitly
Let's descrbie it's read extent cache. Reviewed-by: Chao Yu <chao@kernel.org> Signed-off-by: Jaegeuk Kim <jaegeuk@kernel.org>
This commit is contained in:
parent
ed8ac22b6b
commit
12607c1ba7
@ -383,7 +383,7 @@ static void __f2fs_init_extent_tree(struct inode *inode, struct page *ipage)
|
|||||||
if (!i_ext || !i_ext->len)
|
if (!i_ext || !i_ext->len)
|
||||||
return;
|
return;
|
||||||
|
|
||||||
get_extent_info(&ei, i_ext);
|
get_read_extent_info(&ei, i_ext);
|
||||||
|
|
||||||
write_lock(&et->lock);
|
write_lock(&et->lock);
|
||||||
if (atomic_read(&et->node_cnt))
|
if (atomic_read(&et->node_cnt))
|
||||||
@ -710,7 +710,7 @@ unsigned int f2fs_shrink_extent_tree(struct f2fs_sb_info *sbi, int nr_shrink)
|
|||||||
unsigned int node_cnt = 0, tree_cnt = 0;
|
unsigned int node_cnt = 0, tree_cnt = 0;
|
||||||
int remained;
|
int remained;
|
||||||
|
|
||||||
if (!test_opt(sbi, EXTENT_CACHE))
|
if (!test_opt(sbi, READ_EXTENT_CACHE))
|
||||||
return 0;
|
return 0;
|
||||||
|
|
||||||
if (!atomic_read(&sbi->total_zombie_tree))
|
if (!atomic_read(&sbi->total_zombie_tree))
|
||||||
|
@ -92,7 +92,7 @@ extern const char *f2fs_fault_name[FAULT_MAX];
|
|||||||
#define F2FS_MOUNT_FLUSH_MERGE 0x00000400
|
#define F2FS_MOUNT_FLUSH_MERGE 0x00000400
|
||||||
#define F2FS_MOUNT_NOBARRIER 0x00000800
|
#define F2FS_MOUNT_NOBARRIER 0x00000800
|
||||||
#define F2FS_MOUNT_FASTBOOT 0x00001000
|
#define F2FS_MOUNT_FASTBOOT 0x00001000
|
||||||
#define F2FS_MOUNT_EXTENT_CACHE 0x00002000
|
#define F2FS_MOUNT_READ_EXTENT_CACHE 0x00002000
|
||||||
#define F2FS_MOUNT_DATA_FLUSH 0x00008000
|
#define F2FS_MOUNT_DATA_FLUSH 0x00008000
|
||||||
#define F2FS_MOUNT_FAULT_INJECTION 0x00010000
|
#define F2FS_MOUNT_FAULT_INJECTION 0x00010000
|
||||||
#define F2FS_MOUNT_USRQUOTA 0x00080000
|
#define F2FS_MOUNT_USRQUOTA 0x00080000
|
||||||
@ -600,7 +600,7 @@ enum {
|
|||||||
#define F2FS_MIN_EXTENT_LEN 64 /* minimum extent length */
|
#define F2FS_MIN_EXTENT_LEN 64 /* minimum extent length */
|
||||||
|
|
||||||
/* number of extent info in extent cache we try to shrink */
|
/* number of extent info in extent cache we try to shrink */
|
||||||
#define EXTENT_CACHE_SHRINK_NUMBER 128
|
#define READ_EXTENT_CACHE_SHRINK_NUMBER 128
|
||||||
|
|
||||||
#define RECOVERY_MAX_RA_BLOCKS BIO_MAX_VECS
|
#define RECOVERY_MAX_RA_BLOCKS BIO_MAX_VECS
|
||||||
#define RECOVERY_MIN_RA_BLOCKS 1
|
#define RECOVERY_MIN_RA_BLOCKS 1
|
||||||
@ -830,7 +830,7 @@ struct f2fs_inode_info {
|
|||||||
loff_t original_i_size; /* original i_size before atomic write */
|
loff_t original_i_size; /* original i_size before atomic write */
|
||||||
};
|
};
|
||||||
|
|
||||||
static inline void get_extent_info(struct extent_info *ext,
|
static inline void get_read_extent_info(struct extent_info *ext,
|
||||||
struct f2fs_extent *i_ext)
|
struct f2fs_extent *i_ext)
|
||||||
{
|
{
|
||||||
ext->fofs = le32_to_cpu(i_ext->fofs);
|
ext->fofs = le32_to_cpu(i_ext->fofs);
|
||||||
@ -838,7 +838,7 @@ static inline void get_extent_info(struct extent_info *ext,
|
|||||||
ext->len = le32_to_cpu(i_ext->len);
|
ext->len = le32_to_cpu(i_ext->len);
|
||||||
}
|
}
|
||||||
|
|
||||||
static inline void set_raw_extent(struct extent_info *ext,
|
static inline void set_raw_read_extent(struct extent_info *ext,
|
||||||
struct f2fs_extent *i_ext)
|
struct f2fs_extent *i_ext)
|
||||||
{
|
{
|
||||||
i_ext->fofs = cpu_to_le32(ext->fofs);
|
i_ext->fofs = cpu_to_le32(ext->fofs);
|
||||||
@ -4407,7 +4407,7 @@ static inline bool f2fs_may_extent_tree(struct inode *inode)
|
|||||||
{
|
{
|
||||||
struct f2fs_sb_info *sbi = F2FS_I_SB(inode);
|
struct f2fs_sb_info *sbi = F2FS_I_SB(inode);
|
||||||
|
|
||||||
if (!test_opt(sbi, EXTENT_CACHE) ||
|
if (!test_opt(sbi, READ_EXTENT_CACHE) ||
|
||||||
is_inode_flag_set(inode, FI_NO_EXTENT) ||
|
is_inode_flag_set(inode, FI_NO_EXTENT) ||
|
||||||
(is_inode_flag_set(inode, FI_COMPRESSED_FILE) &&
|
(is_inode_flag_set(inode, FI_COMPRESSED_FILE) &&
|
||||||
!f2fs_sb_has_readonly(sbi)))
|
!f2fs_sb_has_readonly(sbi)))
|
||||||
|
@ -629,7 +629,7 @@ void f2fs_update_inode(struct inode *inode, struct page *node_page)
|
|||||||
|
|
||||||
if (et) {
|
if (et) {
|
||||||
read_lock(&et->lock);
|
read_lock(&et->lock);
|
||||||
set_raw_extent(&et->largest, &ri->i_ext);
|
set_raw_read_extent(&et->largest, &ri->i_ext);
|
||||||
read_unlock(&et->lock);
|
read_unlock(&et->lock);
|
||||||
} else {
|
} else {
|
||||||
memset(&ri->i_ext, 0, sizeof(ri->i_ext));
|
memset(&ri->i_ext, 0, sizeof(ri->i_ext));
|
||||||
|
@ -85,7 +85,7 @@ bool f2fs_available_free_memory(struct f2fs_sb_info *sbi, int type)
|
|||||||
sizeof(struct ino_entry);
|
sizeof(struct ino_entry);
|
||||||
mem_size >>= PAGE_SHIFT;
|
mem_size >>= PAGE_SHIFT;
|
||||||
res = mem_size < ((avail_ram * nm_i->ram_thresh / 100) >> 1);
|
res = mem_size < ((avail_ram * nm_i->ram_thresh / 100) >> 1);
|
||||||
} else if (type == EXTENT_CACHE) {
|
} else if (type == READ_EXTENT_CACHE) {
|
||||||
mem_size = (atomic_read(&sbi->total_ext_tree) *
|
mem_size = (atomic_read(&sbi->total_ext_tree) *
|
||||||
sizeof(struct extent_tree) +
|
sizeof(struct extent_tree) +
|
||||||
atomic_read(&sbi->total_ext_node) *
|
atomic_read(&sbi->total_ext_node) *
|
||||||
|
@ -146,7 +146,7 @@ enum mem_type {
|
|||||||
NAT_ENTRIES, /* indicates the cached nat entry */
|
NAT_ENTRIES, /* indicates the cached nat entry */
|
||||||
DIRTY_DENTS, /* indicates dirty dentry pages */
|
DIRTY_DENTS, /* indicates dirty dentry pages */
|
||||||
INO_ENTRIES, /* indicates inode entries */
|
INO_ENTRIES, /* indicates inode entries */
|
||||||
EXTENT_CACHE, /* indicates extent cache */
|
READ_EXTENT_CACHE, /* indicates read extent cache */
|
||||||
DISCARD_CACHE, /* indicates memory of cached discard cmds */
|
DISCARD_CACHE, /* indicates memory of cached discard cmds */
|
||||||
COMPRESS_PAGE, /* indicates memory of cached compressed pages */
|
COMPRESS_PAGE, /* indicates memory of cached compressed pages */
|
||||||
BASE_CHECK, /* check kernel status */
|
BASE_CHECK, /* check kernel status */
|
||||||
|
@ -449,8 +449,8 @@ void f2fs_balance_fs_bg(struct f2fs_sb_info *sbi, bool from_bg)
|
|||||||
return;
|
return;
|
||||||
|
|
||||||
/* try to shrink extent cache when there is no enough memory */
|
/* try to shrink extent cache when there is no enough memory */
|
||||||
if (!f2fs_available_free_memory(sbi, EXTENT_CACHE))
|
if (!f2fs_available_free_memory(sbi, READ_EXTENT_CACHE))
|
||||||
f2fs_shrink_extent_tree(sbi, EXTENT_CACHE_SHRINK_NUMBER);
|
f2fs_shrink_extent_tree(sbi, READ_EXTENT_CACHE_SHRINK_NUMBER);
|
||||||
|
|
||||||
/* check the # of cached NAT entries */
|
/* check the # of cached NAT entries */
|
||||||
if (!f2fs_available_free_memory(sbi, NAT_ENTRIES))
|
if (!f2fs_available_free_memory(sbi, NAT_ENTRIES))
|
||||||
|
@ -814,10 +814,10 @@ static int parse_options(struct super_block *sb, char *options, bool is_remount)
|
|||||||
set_opt(sbi, FASTBOOT);
|
set_opt(sbi, FASTBOOT);
|
||||||
break;
|
break;
|
||||||
case Opt_extent_cache:
|
case Opt_extent_cache:
|
||||||
set_opt(sbi, EXTENT_CACHE);
|
set_opt(sbi, READ_EXTENT_CACHE);
|
||||||
break;
|
break;
|
||||||
case Opt_noextent_cache:
|
case Opt_noextent_cache:
|
||||||
clear_opt(sbi, EXTENT_CACHE);
|
clear_opt(sbi, READ_EXTENT_CACHE);
|
||||||
break;
|
break;
|
||||||
case Opt_noinline_data:
|
case Opt_noinline_data:
|
||||||
clear_opt(sbi, INLINE_DATA);
|
clear_opt(sbi, INLINE_DATA);
|
||||||
@ -1954,7 +1954,7 @@ static int f2fs_show_options(struct seq_file *seq, struct dentry *root)
|
|||||||
seq_puts(seq, ",barrier");
|
seq_puts(seq, ",barrier");
|
||||||
if (test_opt(sbi, FASTBOOT))
|
if (test_opt(sbi, FASTBOOT))
|
||||||
seq_puts(seq, ",fastboot");
|
seq_puts(seq, ",fastboot");
|
||||||
if (test_opt(sbi, EXTENT_CACHE))
|
if (test_opt(sbi, READ_EXTENT_CACHE))
|
||||||
seq_puts(seq, ",extent_cache");
|
seq_puts(seq, ",extent_cache");
|
||||||
else
|
else
|
||||||
seq_puts(seq, ",noextent_cache");
|
seq_puts(seq, ",noextent_cache");
|
||||||
@ -2076,7 +2076,7 @@ static void default_options(struct f2fs_sb_info *sbi)
|
|||||||
set_opt(sbi, INLINE_XATTR);
|
set_opt(sbi, INLINE_XATTR);
|
||||||
set_opt(sbi, INLINE_DATA);
|
set_opt(sbi, INLINE_DATA);
|
||||||
set_opt(sbi, INLINE_DENTRY);
|
set_opt(sbi, INLINE_DENTRY);
|
||||||
set_opt(sbi, EXTENT_CACHE);
|
set_opt(sbi, READ_EXTENT_CACHE);
|
||||||
set_opt(sbi, NOHEAP);
|
set_opt(sbi, NOHEAP);
|
||||||
clear_opt(sbi, DISABLE_CHECKPOINT);
|
clear_opt(sbi, DISABLE_CHECKPOINT);
|
||||||
set_opt(sbi, MERGE_CHECKPOINT);
|
set_opt(sbi, MERGE_CHECKPOINT);
|
||||||
@ -2218,7 +2218,7 @@ static int f2fs_remount(struct super_block *sb, int *flags, char *data)
|
|||||||
bool need_restart_ckpt = false, need_stop_ckpt = false;
|
bool need_restart_ckpt = false, need_stop_ckpt = false;
|
||||||
bool need_restart_flush = false, need_stop_flush = false;
|
bool need_restart_flush = false, need_stop_flush = false;
|
||||||
bool need_restart_discard = false, need_stop_discard = false;
|
bool need_restart_discard = false, need_stop_discard = false;
|
||||||
bool no_extent_cache = !test_opt(sbi, EXTENT_CACHE);
|
bool no_read_extent_cache = !test_opt(sbi, READ_EXTENT_CACHE);
|
||||||
bool enable_checkpoint = !test_opt(sbi, DISABLE_CHECKPOINT);
|
bool enable_checkpoint = !test_opt(sbi, DISABLE_CHECKPOINT);
|
||||||
bool no_io_align = !F2FS_IO_ALIGNED(sbi);
|
bool no_io_align = !F2FS_IO_ALIGNED(sbi);
|
||||||
bool no_atgc = !test_opt(sbi, ATGC);
|
bool no_atgc = !test_opt(sbi, ATGC);
|
||||||
@ -2308,7 +2308,7 @@ static int f2fs_remount(struct super_block *sb, int *flags, char *data)
|
|||||||
}
|
}
|
||||||
|
|
||||||
/* disallow enable/disable extent_cache dynamically */
|
/* disallow enable/disable extent_cache dynamically */
|
||||||
if (no_extent_cache == !!test_opt(sbi, EXTENT_CACHE)) {
|
if (no_read_extent_cache == !!test_opt(sbi, READ_EXTENT_CACHE)) {
|
||||||
err = -EINVAL;
|
err = -EINVAL;
|
||||||
f2fs_warn(sbi, "switch extent_cache option is not allowed");
|
f2fs_warn(sbi, "switch extent_cache option is not allowed");
|
||||||
goto restore_opts;
|
goto restore_opts;
|
||||||
|
Loading…
Reference in New Issue
Block a user