Lines Matching refs:ino

133 	__le32 ino = node->footer.ino;
140 chksum = f2fs_chksum(sbi, sbi->s_chksum_seed, (__u8 *)&ino,
141 sizeof(ino));
197 "%s: inode (ino=%lx) has unsupported compress algorithm: %u, run fsck to fix",
204 "%s: inode (ino=%lx) has inconsistent i_compr_blocks:%llu, i_blocks:%llu, run fsck to fix",
212 "%s: inode (ino=%lx) has unsupported log cluster size: %u, run fsck to fix",
256 f2fs_warn(sbi, "%s: inode (ino=%lx) has unsupported compress level: %u, run fsck to fix",
276 f2fs_warn(sbi, "%s: corrupted inode footer i_ino=%lx, ino,nid: [%u, %u] run fsck to fix.",
284 f2fs_warn(sbi, "%s: inode (ino=%lx) is with extra_attr, but extra_attr feature is off",
291 f2fs_warn(sbi, "%s: inode (ino=%lx) has corrupted i_extra_isize: %d, max: %zu",
300 f2fs_warn(sbi, "%s: inode (ino=%lx) has corrupted i_inline_xattr_size: %d, max: %lu",
313 f2fs_warn(sbi, "%s: corrupted inode ino=%lx, run fsck to fix.",
320 f2fs_warn(sbi, "%s: corrupted inode ino=%lx, wrong feature flag: %u, run fsck to fix.",
325 f2fs_warn(sbi, "%s: corrupted inode ino=%lx, wrong feature flag: %u, run fsck to fix.",
330 f2fs_warn(sbi, "%s: corrupted inode ino=%lx, wrong feature flag: %u, run fsck to fix.",
335 f2fs_warn(sbi, "%s: corrupted inode ino=%lx, wrong feature flag: %u, run fsck to fix.",
340 f2fs_warn(sbi, "%s: corrupted inode ino=%lx, wrong feature flag: %u, run fsck to fix.",
347 f2fs_warn(sbi, "%s: inode (ino=%lx, mode=%u) should not have inline_data, run fsck to fix",
353 f2fs_warn(sbi, "%s: inode (ino=%lx, mode=%u) should not have inline_dentry, run fsck to fix",
359 f2fs_warn(sbi, "%s: inode (ino=%lx) has casefold flag, but casefold feature is off",
384 /* Check if ino is within scope */
526 static bool is_meta_ino(struct f2fs_sb_info *sbi, unsigned int ino)
528 return ino == F2FS_NODE_INO(sbi) || ino == F2FS_META_INO(sbi) ||
529 ino == F2FS_COMPRESS_INO(sbi);
532 struct inode *f2fs_iget(struct super_block *sb, unsigned long ino)
538 inode = iget_locked(sb, ino);
543 if (is_meta_ino(sbi, ino)) {
544 f2fs_err(sbi, "inaccessible inode: %lu, run fsck to repair", ino);
557 if (is_meta_ino(sbi, ino))
564 if (ino == F2FS_NODE_INO(sbi)) {
567 } else if (ino == F2FS_META_INO(sbi)) {
570 } else if (ino == F2FS_COMPRESS_INO(sbi)) {
626 struct inode *f2fs_iget_retry(struct super_block *sb, unsigned long ino)
630 inode = f2fs_iget(sb, ino);
871 "f2fs_evict_inode: inconsistent node id, ino:%lu",