Home
last modified time | relevance | path

Searched refs:root_ino (Results 1 - 16 of 16) sorted by relevance

/kernel/linux/linux-5.10/fs/hmdfs/
H A Dinode.c321 struct inode *hmdfs_iget_locked_root(struct super_block *sb, uint64_t root_ino, in hmdfs_iget_locked_root() argument
330 .ino.ino_raw = root_ino, in hmdfs_iget_locked_root()
335 if (unlikely(root_ino < 0 || root_ino >= HMDFS_ROOT_INVALID)) { in hmdfs_iget_locked_root()
336 hmdfs_err("Root %llu is invalid", root_ino); in hmdfs_iget_locked_root()
339 if (unlikely(root_ino == HMDFS_ROOT_DEV_REMOTE && !peer)) { in hmdfs_iget_locked_root()
340 hmdfs_err("Root %llu received a invalid peer", root_ino); in hmdfs_iget_locked_root()
H A Dinode.h235 struct inode *hmdfs_iget_locked_root(struct super_block *sb, uint64_t root_ino,
/kernel/linux/linux-6.6/fs/hmdfs/
H A Dinode.c321 struct inode *hmdfs_iget_locked_root(struct super_block *sb, uint64_t root_ino, in hmdfs_iget_locked_root() argument
330 .ino.ino_raw = root_ino, in hmdfs_iget_locked_root()
335 if (unlikely(root_ino < 0 || root_ino >= HMDFS_ROOT_INVALID)) { in hmdfs_iget_locked_root()
336 hmdfs_err("Root %llu is invalid", root_ino); in hmdfs_iget_locked_root()
339 if (unlikely(root_ino == HMDFS_ROOT_DEV_REMOTE && !peer)) { in hmdfs_iget_locked_root()
340 hmdfs_err("Root %llu received a invalid peer", root_ino); in hmdfs_iget_locked_root()
H A Dinode.h235 struct inode *hmdfs_iget_locked_root(struct super_block *sb, uint64_t root_ino,
/kernel/linux/linux-5.10/fs/ntfs/
H A Dsuper.c1273 inode_lock(vol->root_ino); in check_windows_hibernation_status()
1274 mref = ntfs_lookup_inode_by_name(NTFS_I(vol->root_ino), hiberfil, 12, in check_windows_hibernation_status()
1276 inode_unlock(vol->root_ino); in check_windows_hibernation_status()
1974 vol->root_ino = ntfs_iget(sb, FILE_root); in load_system_files()
1975 if (IS_ERR(vol->root_ino) || is_bad_inode(vol->root_ino)) { in load_system_files()
1976 if (!IS_ERR(vol->root_ino)) in load_system_files()
1977 iput(vol->root_ino); in load_system_files()
2202 iput(vol->root_ino); in load_system_files()
2280 ntfs_commit_inode(vol->root_ino); in ntfs_put_super()
[all...]
H A Dvolume.h103 struct inode *root_ino; /* The VFS inode of the root member
/kernel/linux/linux-6.6/fs/ntfs/
H A Dsuper.c1281 inode_lock(vol->root_ino); in check_windows_hibernation_status()
1282 mref = ntfs_lookup_inode_by_name(NTFS_I(vol->root_ino), hiberfil, 12, in check_windows_hibernation_status()
1284 inode_unlock(vol->root_ino); in check_windows_hibernation_status()
1982 vol->root_ino = ntfs_iget(sb, FILE_root); in load_system_files()
1983 if (IS_ERR(vol->root_ino) || is_bad_inode(vol->root_ino)) { in load_system_files()
1984 if (!IS_ERR(vol->root_ino)) in load_system_files()
1985 iput(vol->root_ino); in load_system_files()
2210 iput(vol->root_ino); in load_system_files()
2288 ntfs_commit_inode(vol->root_ino); in ntfs_put_super()
[all...]
H A Dvolume.h103 struct inode *root_ino; /* The VFS inode of the root member
/kernel/linux/linux-5.10/fs/hostfs/
H A Dhostfs_kern.c38 static char *root_ino = ""; variable
54 root_ino = options; in hostfs_args()
251 size_t offset = strlen(root_ino) + 1; in hostfs_show_options()
927 kasprintf(GFP_KERNEL, "%s/%s", root_ino, req_root); in hostfs_fill_sb_common()
/kernel/linux/linux-6.6/fs/hostfs/
H A Dhostfs_kern.c42 static char *root_ino = ""; variable
58 root_ino = options; in hostfs_args()
249 size_t offset = strlen(root_ino) + 1; in hostfs_show_options()
946 kasprintf(GFP_KERNEL, "%s/%s", root_ino, req_root); in hostfs_fill_sb_common()
/kernel/linux/linux-5.10/fs/f2fs/
H A Dnamei.c502 unsigned int root_ino = F2FS_ROOT_INO(F2FS_I_SB(dir)); in f2fs_lookup() local
538 if ((dir->i_ino == root_ino) && f2fs_has_inline_dots(dir)) { in f2fs_lookup()
539 err = __recover_dot_dentries(dir, root_ino); in f2fs_lookup()
H A Dsuper.c2998 le32_to_cpu(raw_super->root_ino) != 3) { in sanity_check_raw_super()
3002 le32_to_cpu(raw_super->root_ino)); in sanity_check_raw_super()
3183 sbi->root_ino_num = le32_to_cpu(raw_super->root_ino); in init_sb_info()
/kernel/linux/linux-6.6/fs/f2fs/
H A Dnamei.c524 unsigned int root_ino = F2FS_ROOT_INO(F2FS_I_SB(dir)); in f2fs_lookup() local
561 if ((dir->i_ino == root_ino) && f2fs_has_inline_dots(dir)) { in f2fs_lookup()
562 err = __recover_dot_dentries(dir, root_ino); in f2fs_lookup()
H A Dsuper.c3619 le32_to_cpu(raw_super->root_ino) != 3) { in sanity_check_raw_super()
3623 le32_to_cpu(raw_super->root_ino)); in sanity_check_raw_super()
3814 F2FS_ROOT_INO(sbi) = le32_to_cpu(raw_super->root_ino); in init_sb_info()
/kernel/linux/linux-5.10/include/linux/
H A Df2fs_fs.h100 __le32 root_ino; /* root inode number */ member
/kernel/linux/linux-6.6/include/linux/
H A Df2fs_fs.h139 __le32 root_ino; /* root inode number */ member

Completed in 26 milliseconds