提交 7b3cd7d6 编写于 作者: J Jaegeuk Kim

f2fs: introduce f2fs_dentry_ptr structure for code clean-up

This patch introduces f2fs_dentry_ptr structure for the use of a function
parameter in inline_dentry operations.
Signed-off-by: NJaegeuk Kim <jaegeuk@kernel.org>
上级 5ab18570
...@@ -95,13 +95,13 @@ static struct f2fs_dir_entry *find_in_block(struct page *dentry_page, ...@@ -95,13 +95,13 @@ static struct f2fs_dir_entry *find_in_block(struct page *dentry_page,
{ {
struct f2fs_dentry_block *dentry_blk; struct f2fs_dentry_block *dentry_blk;
struct f2fs_dir_entry *de; struct f2fs_dir_entry *de;
struct f2fs_dentry_ptr d;
*max_slots = NR_DENTRY_IN_BLOCK;
dentry_blk = (struct f2fs_dentry_block *)kmap(dentry_page); dentry_blk = (struct f2fs_dentry_block *)kmap(dentry_page);
de = find_target_dentry(name, max_slots, &dentry_blk->dentry_bitmap,
dentry_blk->dentry, make_dentry_ptr(&d, (void *)dentry_blk, 1);
dentry_blk->filename); de = find_target_dentry(name, max_slots, &d);
if (de) if (de)
*res_page = dentry_page; *res_page = dentry_page;
else else
...@@ -111,50 +111,49 @@ static struct f2fs_dir_entry *find_in_block(struct page *dentry_page, ...@@ -111,50 +111,49 @@ static struct f2fs_dir_entry *find_in_block(struct page *dentry_page,
* For the most part, it should be a bug when name_len is zero. * For the most part, it should be a bug when name_len is zero.
* We stop here for figuring out where the bugs has occurred. * We stop here for figuring out where the bugs has occurred.
*/ */
f2fs_bug_on(F2FS_P_SB(dentry_page), *max_slots < 0); f2fs_bug_on(F2FS_P_SB(dentry_page), d.max < 0);
return de; return de;
} }
struct f2fs_dir_entry *find_target_dentry(struct qstr *name, int *max_slots, struct f2fs_dir_entry *find_target_dentry(struct qstr *name, int *max_slots,
const void *bitmap, struct f2fs_dir_entry *dentry, struct f2fs_dentry_ptr *d)
__u8 (*filenames)[F2FS_SLOT_LEN])
{ {
struct f2fs_dir_entry *de; struct f2fs_dir_entry *de;
unsigned long bit_pos = 0; unsigned long bit_pos = 0;
f2fs_hash_t namehash = f2fs_dentry_hash(name); f2fs_hash_t namehash = f2fs_dentry_hash(name);
int max_bits = *max_slots;
int max_len = 0; int max_len = 0;
*max_slots = 0; if (max_slots)
while (bit_pos < max_bits) { *max_slots = 0;
if (!test_bit_le(bit_pos, bitmap)) { while (bit_pos < d->max) {
if (!test_bit_le(bit_pos, d->bitmap)) {
if (bit_pos == 0) if (bit_pos == 0)
max_len = 1; max_len = 1;
else if (!test_bit_le(bit_pos - 1, bitmap)) else if (!test_bit_le(bit_pos - 1, d->bitmap))
max_len++; max_len++;
bit_pos++; bit_pos++;
continue; continue;
} }
de = &dentry[bit_pos]; de = &d->dentry[bit_pos];
if (early_match_name(name->len, namehash, de) && if (early_match_name(name->len, namehash, de) &&
!memcmp(filenames[bit_pos], name->name, name->len)) !memcmp(d->filename[bit_pos], name->name, name->len))
goto found; goto found;
if (*max_slots >= 0 && max_len > *max_slots) { if (max_slots && *max_slots >= 0 && max_len > *max_slots) {
*max_slots = max_len; *max_slots = max_len;
max_len = 0; max_len = 0;
} }
/* remain bug on condition */ /* remain bug on condition */
if (unlikely(!de->name_len)) if (unlikely(!de->name_len))
*max_slots = -1; d->max = -1;
bit_pos += GET_DENTRY_SLOTS(le16_to_cpu(de->name_len)); bit_pos += GET_DENTRY_SLOTS(le16_to_cpu(de->name_len));
} }
de = NULL; de = NULL;
found: found:
if (max_len > *max_slots) if (max_slots && max_len > *max_slots)
*max_slots = max_len; *max_slots = max_len;
return de; return de;
} }
...@@ -706,28 +705,26 @@ bool f2fs_empty_dir(struct inode *dir) ...@@ -706,28 +705,26 @@ bool f2fs_empty_dir(struct inode *dir)
return true; return true;
} }
bool f2fs_fill_dentries(struct dir_context *ctx, bool f2fs_fill_dentries(struct dir_context *ctx, struct f2fs_dentry_ptr *d,
const void *bitmap, struct f2fs_dir_entry *dentry, unsigned int start_pos)
__u8 (*filenames)[F2FS_SLOT_LEN], int max,
unsigned int start_pos)
{ {
unsigned char d_type = DT_UNKNOWN; unsigned char d_type = DT_UNKNOWN;
unsigned int bit_pos; unsigned int bit_pos;
struct f2fs_dir_entry *de = NULL; struct f2fs_dir_entry *de = NULL;
bit_pos = ((unsigned long)ctx->pos % max); bit_pos = ((unsigned long)ctx->pos % d->max);
while (bit_pos < max) { while (bit_pos < d->max) {
bit_pos = find_next_bit_le(bitmap, max, bit_pos); bit_pos = find_next_bit_le(d->bitmap, d->max, bit_pos);
if (bit_pos >= max) if (bit_pos >= d->max)
break; break;
de = &dentry[bit_pos]; de = &d->dentry[bit_pos];
if (de->file_type < F2FS_FT_MAX) if (de->file_type < F2FS_FT_MAX)
d_type = f2fs_filetype_table[de->file_type]; d_type = f2fs_filetype_table[de->file_type];
else else
d_type = DT_UNKNOWN; d_type = DT_UNKNOWN;
if (!dir_emit(ctx, filenames[bit_pos], if (!dir_emit(ctx, d->filename[bit_pos],
le16_to_cpu(de->name_len), le16_to_cpu(de->name_len),
le32_to_cpu(de->ino), d_type)) le32_to_cpu(de->ino), d_type))
return true; return true;
...@@ -746,6 +743,7 @@ static int f2fs_readdir(struct file *file, struct dir_context *ctx) ...@@ -746,6 +743,7 @@ static int f2fs_readdir(struct file *file, struct dir_context *ctx)
struct page *dentry_page = NULL; struct page *dentry_page = NULL;
struct file_ra_state *ra = &file->f_ra; struct file_ra_state *ra = &file->f_ra;
unsigned int n = ((unsigned long)ctx->pos / NR_DENTRY_IN_BLOCK); unsigned int n = ((unsigned long)ctx->pos / NR_DENTRY_IN_BLOCK);
struct f2fs_dentry_ptr d;
if (f2fs_has_inline_dentry(inode)) if (f2fs_has_inline_dentry(inode))
return f2fs_read_inline_dir(file, ctx); return f2fs_read_inline_dir(file, ctx);
...@@ -762,10 +760,9 @@ static int f2fs_readdir(struct file *file, struct dir_context *ctx) ...@@ -762,10 +760,9 @@ static int f2fs_readdir(struct file *file, struct dir_context *ctx)
dentry_blk = kmap(dentry_page); dentry_blk = kmap(dentry_page);
if (f2fs_fill_dentries(ctx, make_dentry_ptr(&d, (void *)dentry_blk, 1);
&dentry_blk->dentry_bitmap, dentry_blk->dentry,
dentry_blk->filename, if (f2fs_fill_dentries(ctx, &d, n * NR_DENTRY_IN_BLOCK))
NR_DENTRY_IN_BLOCK, n * NR_DENTRY_IN_BLOCK))
goto stop; goto stop;
ctx->pos = (n + 1) * NR_DENTRY_IN_BLOCK; ctx->pos = (n + 1) * NR_DENTRY_IN_BLOCK;
......
...@@ -212,6 +212,32 @@ static inline bool __has_cursum_space(struct f2fs_summary_block *sum, int size, ...@@ -212,6 +212,32 @@ static inline bool __has_cursum_space(struct f2fs_summary_block *sum, int size,
/* /*
* For INODE and NODE manager * For INODE and NODE manager
*/ */
/* for directory operations */
struct f2fs_dentry_ptr {
const void *bitmap;
struct f2fs_dir_entry *dentry;
__u8 (*filename)[F2FS_SLOT_LEN];
int max;
};
static inline void make_dentry_ptr(struct f2fs_dentry_ptr *d,
void *src, int type)
{
if (type == 1) {
struct f2fs_dentry_block *t = (struct f2fs_dentry_block *)src;
d->max = NR_DENTRY_IN_BLOCK;
d->bitmap = &t->dentry_bitmap;
d->dentry = t->dentry;
d->filename = t->filename;
} else {
struct f2fs_inline_dentry *t = (struct f2fs_inline_dentry *)src;
d->max = NR_INLINE_DENTRY;
d->bitmap = &t->dentry_bitmap;
d->dentry = t->dentry;
d->filename = t->filename;
}
}
/* /*
* XATTR_NODE_OFFSET stores xattrs to one node block per file keeping -1 * XATTR_NODE_OFFSET stores xattrs to one node block per file keeping -1
* as its node offset to distinguish from index node blocks. * as its node offset to distinguish from index node blocks.
...@@ -1245,11 +1271,10 @@ struct dentry *f2fs_get_parent(struct dentry *child); ...@@ -1245,11 +1271,10 @@ struct dentry *f2fs_get_parent(struct dentry *child);
*/ */
extern unsigned char f2fs_filetype_table[F2FS_FT_MAX]; extern unsigned char f2fs_filetype_table[F2FS_FT_MAX];
void set_de_type(struct f2fs_dir_entry *, struct inode *); void set_de_type(struct f2fs_dir_entry *, struct inode *);
struct f2fs_dir_entry *find_target_dentry(struct qstr *, int *, const void *, struct f2fs_dir_entry *find_target_dentry(struct qstr *, int *,
struct f2fs_dir_entry *, __u8 (*)[F2FS_SLOT_LEN]); struct f2fs_dentry_ptr *);
bool f2fs_fill_dentries(struct dir_context *, bool f2fs_fill_dentries(struct dir_context *, struct f2fs_dentry_ptr *,
const void *, struct f2fs_dir_entry *, unsigned int);
__u8 (*)[F2FS_SLOT_LEN], int, unsigned int);
struct page *init_inode_metadata(struct inode *, struct inode *, struct page *init_inode_metadata(struct inode *, struct inode *,
const struct qstr *, struct page *); const struct qstr *, struct page *);
void update_parent_metadata(struct inode *, struct inode *, unsigned int); void update_parent_metadata(struct inode *, struct inode *, unsigned int);
......
...@@ -265,8 +265,8 @@ struct f2fs_dir_entry *find_in_inline_dir(struct inode *dir, ...@@ -265,8 +265,8 @@ struct f2fs_dir_entry *find_in_inline_dir(struct inode *dir,
struct f2fs_sb_info *sbi = F2FS_SB(dir->i_sb); struct f2fs_sb_info *sbi = F2FS_SB(dir->i_sb);
struct f2fs_inline_dentry *inline_dentry; struct f2fs_inline_dentry *inline_dentry;
struct f2fs_dir_entry *de; struct f2fs_dir_entry *de;
struct f2fs_dentry_ptr d;
struct page *ipage; struct page *ipage;
int max_slots = NR_INLINE_DENTRY;
ipage = get_node_page(sbi, dir->i_ino); ipage = get_node_page(sbi, dir->i_ino);
if (IS_ERR(ipage)) if (IS_ERR(ipage))
...@@ -274,9 +274,9 @@ struct f2fs_dir_entry *find_in_inline_dir(struct inode *dir, ...@@ -274,9 +274,9 @@ struct f2fs_dir_entry *find_in_inline_dir(struct inode *dir,
inline_dentry = inline_data_addr(ipage); inline_dentry = inline_data_addr(ipage);
de = find_target_dentry(name, &max_slots, &inline_dentry->dentry_bitmap, make_dentry_ptr(&d, (void *)inline_dentry, 2);
inline_dentry->dentry, de = find_target_dentry(name, NULL, &d);
inline_dentry->filename);
unlock_page(ipage); unlock_page(ipage);
if (de) if (de)
*res_page = ipage; *res_page = ipage;
...@@ -287,7 +287,7 @@ struct f2fs_dir_entry *find_in_inline_dir(struct inode *dir, ...@@ -287,7 +287,7 @@ struct f2fs_dir_entry *find_in_inline_dir(struct inode *dir,
* For the most part, it should be a bug when name_len is zero. * For the most part, it should be a bug when name_len is zero.
* We stop here for figuring out where the bugs has occurred. * We stop here for figuring out where the bugs has occurred.
*/ */
f2fs_bug_on(sbi, max_slots < 0); f2fs_bug_on(sbi, d.max < 0);
return de; return de;
} }
...@@ -519,6 +519,7 @@ int f2fs_read_inline_dir(struct file *file, struct dir_context *ctx) ...@@ -519,6 +519,7 @@ int f2fs_read_inline_dir(struct file *file, struct dir_context *ctx)
struct inode *inode = file_inode(file); struct inode *inode = file_inode(file);
struct f2fs_inline_dentry *inline_dentry = NULL; struct f2fs_inline_dentry *inline_dentry = NULL;
struct page *ipage = NULL; struct page *ipage = NULL;
struct f2fs_dentry_ptr d;
if (ctx->pos == NR_INLINE_DENTRY) if (ctx->pos == NR_INLINE_DENTRY)
return 0; return 0;
...@@ -529,10 +530,9 @@ int f2fs_read_inline_dir(struct file *file, struct dir_context *ctx) ...@@ -529,10 +530,9 @@ int f2fs_read_inline_dir(struct file *file, struct dir_context *ctx)
inline_dentry = inline_data_addr(ipage); inline_dentry = inline_data_addr(ipage);
if (!f2fs_fill_dentries(ctx, &inline_dentry->dentry_bitmap, make_dentry_ptr(&d, (void *)inline_dentry, 2);
inline_dentry->dentry,
inline_dentry->filename, if (!f2fs_fill_dentries(ctx, &d, 0))
NR_INLINE_DENTRY, 0))
ctx->pos = NR_INLINE_DENTRY; ctx->pos = NR_INLINE_DENTRY;
f2fs_put_page(ipage, 1); f2fs_put_page(ipage, 1);
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册