mirror of
https://gitee.com/openharmony/third_party_f2fs-tools
synced 2025-02-17 01:19:53 +00:00
f2fs-tools: add inline data check
Add inline data check Signed-off-by: Weihong Xu <weihong.xu@intel.com> Signed-off-by: Huajun Li <huajun.li@intel.com> Signed-off-by: Haicheng Li <haicheng.li@linux.intel.com> Signed-off-by: Jaegeuk Kim <jaegeuk.kim@samsung.com>
This commit is contained in:
parent
11d187cdfa
commit
061ee67915
@ -341,6 +341,10 @@ int fsck_chk_inode_blk(struct f2fs_sb_info *sbi,
|
||||
if (ftype == F2FS_FT_CHRDEV || ftype == F2FS_FT_BLKDEV ||
|
||||
ftype == F2FS_FT_FIFO || ftype == F2FS_FT_SOCK)
|
||||
goto check;
|
||||
if((node_blk->i.i_inline & F2FS_INLINE_DATA)){
|
||||
DBG(3, "ino[0x%x] has inline data!\n", nid);
|
||||
goto check;
|
||||
}
|
||||
|
||||
/* check data blocks in inode */
|
||||
for (idx = 0; idx < ADDRS_PER_INODE(&node_blk->i); idx++) {
|
||||
|
@ -360,6 +360,11 @@ struct f2fs_extent {
|
||||
|
||||
#define F2FS_INLINE_XATTR 0x01 /* file inline xattr flag */
|
||||
#define F2FS_INLINE_DATA 0x02 /* file inline data flag */
|
||||
#define MAX_INLINE_DATA (sizeof(__le32) * (DEF_ADDRS_PER_INODE - \
|
||||
F2FS_INLINE_XATTR_ADDRS - 1))
|
||||
|
||||
#define INLINE_DATA_OFFSET (PAGE_CACHE_SIZE - sizeof(struct node_footer) \
|
||||
- sizeof(__le32)*(DEF_ADDRS_PER_INODE + 5 - 1))
|
||||
|
||||
struct f2fs_inode {
|
||||
__le16 i_mode; /* file mode */
|
||||
|
Loading…
x
Reference in New Issue
Block a user