Lines Matching defs:root
304 f2fs_info(sbi, "Reduce reserved blocks for root = %u",
415 f2fs_err(sbi, "quotafile must be on filesystem root");
1603 static int f2fs_show_options(struct seq_file *seq, struct dentry *root)
1605 struct f2fs_sb_info *sbi = F2FS_SB(root->d_sb);
2597 * Encrypting the root directory is not allowed because fsck
2999 f2fs_info(sbi, "Invalid Fs Meta Ino: node(%u) meta(%u) root(%u)",
3589 struct inode *root;
3862 /* read root inode and dentry */
3863 root = f2fs_iget(sb, F2FS_ROOT_INO(sbi));
3864 if (IS_ERR(root)) {
3865 f2fs_err(sbi, "Failed to read root inode");
3866 err = PTR_ERR(root);
3869 if (!S_ISDIR(root->i_mode) || !root->i_blocks ||
3870 !root->i_size || !root->i_nlink) {
3871 iput(root);
3876 sb->s_root = d_make_root(root); /* allocate root dentry */