f2fs: introduce f2fs_has_inline_xattr for better readability
This patch introduces a help function f2fs_has_inline_xattr for better readability. Signed-off-by: Chao Yu <chao2.yu@samsung.com> Signed-off-by: Jaegeuk Kim <jaegeuk.kim@samsung.com>
This commit is contained in:
parent
28cdce0459
commit
987c7c3112
2 changed files with 8 additions and 3 deletions
|
@ -991,9 +991,14 @@ static inline void set_raw_inline(struct f2fs_inode_info *fi,
|
||||||
ri->i_inline |= F2FS_INLINE_DATA;
|
ri->i_inline |= F2FS_INLINE_DATA;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static inline int f2fs_has_inline_xattr(struct inode *inode)
|
||||||
|
{
|
||||||
|
return is_inode_flag_set(F2FS_I(inode), FI_INLINE_XATTR);
|
||||||
|
}
|
||||||
|
|
||||||
static inline unsigned int addrs_per_inode(struct f2fs_inode_info *fi)
|
static inline unsigned int addrs_per_inode(struct f2fs_inode_info *fi)
|
||||||
{
|
{
|
||||||
if (is_inode_flag_set(fi, FI_INLINE_XATTR))
|
if (f2fs_has_inline_xattr(&fi->vfs_inode))
|
||||||
return DEF_ADDRS_PER_INODE - F2FS_INLINE_XATTR_ADDRS;
|
return DEF_ADDRS_PER_INODE - F2FS_INLINE_XATTR_ADDRS;
|
||||||
return DEF_ADDRS_PER_INODE;
|
return DEF_ADDRS_PER_INODE;
|
||||||
}
|
}
|
||||||
|
@ -1007,7 +1012,7 @@ static inline void *inline_xattr_addr(struct page *page)
|
||||||
|
|
||||||
static inline int inline_xattr_size(struct inode *inode)
|
static inline int inline_xattr_size(struct inode *inode)
|
||||||
{
|
{
|
||||||
if (is_inode_flag_set(F2FS_I(inode), FI_INLINE_XATTR))
|
if (f2fs_has_inline_xattr(inode))
|
||||||
return F2FS_INLINE_XATTR_ADDRS << 2;
|
return F2FS_INLINE_XATTR_ADDRS << 2;
|
||||||
else
|
else
|
||||||
return 0;
|
return 0;
|
||||||
|
|
|
@ -1501,7 +1501,7 @@ void recover_inline_xattr(struct inode *inode, struct page *page)
|
||||||
struct page *ipage;
|
struct page *ipage;
|
||||||
struct f2fs_inode *ri;
|
struct f2fs_inode *ri;
|
||||||
|
|
||||||
if (!is_inode_flag_set(F2FS_I(inode), FI_INLINE_XATTR))
|
if (!f2fs_has_inline_xattr(inode))
|
||||||
return;
|
return;
|
||||||
|
|
||||||
if (!IS_INODE(page))
|
if (!IS_INODE(page))
|
||||||
|
|
Loading…
Add table
Reference in a new issue