Lines Matching defs:root
67 static int ext4_show_options(struct seq_file *seq, struct dentry *root);
1473 * Encrypting the root directory is not allowed because e2fsck expects
1474 * lost+found to exist and be unencrypted, and encrypting the root
1858 "quotafile must be on filesystem root");
2632 static int ext4_show_options(struct seq_file *seq, struct dentry *root)
2634 return _ext4_show_options(seq, root->d_sb, 0);
4013 struct inode *root;
4778 * root first: it may be modified in the journal!
4950 root = ext4_iget(sb, EXT4_ROOT_INO, EXT4_IGET_SPECIAL);
4951 if (IS_ERR(root)) {
4952 ext4_msg(sb, KERN_ERR, "get root inode failed");
4953 ret = PTR_ERR(root);
4954 root = NULL;
4957 if (!S_ISDIR(root->i_mode) || !root->i_blocks || !root->i_size) {
4958 ext4_msg(sb, KERN_ERR, "corrupt root inode, run e2fsck");
4959 iput(root);
4968 sb->s_root = d_make_root(root);
4970 ext4_msg(sb, KERN_ERR, "get root dentry failed");
5518 * write time when we are mounting the root file system
6372 /* Quotafile not in fs root? */
6375 "Quota file not on filesystem root. "