diff options
Diffstat (limited to 'fs/ext4')
| -rw-r--r-- | fs/ext4/super.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/fs/ext4/super.c b/fs/ext4/super.c index 0072da75221f..37117990073d 100644 --- a/fs/ext4/super.c +++ b/fs/ext4/super.c | |||
| @@ -3158,12 +3158,12 @@ static int ext4_quota_on(struct super_block *sb, int type, int format_id, | |||
| 3158 | if (err) | 3158 | if (err) |
| 3159 | return err; | 3159 | return err; |
| 3160 | /* Quotafile not on the same filesystem? */ | 3160 | /* Quotafile not on the same filesystem? */ |
| 3161 | if (nd.mnt->mnt_sb != sb) { | 3161 | if (nd.path.mnt->mnt_sb != sb) { |
| 3162 | path_release(&nd); | 3162 | path_release(&nd); |
| 3163 | return -EXDEV; | 3163 | return -EXDEV; |
| 3164 | } | 3164 | } |
| 3165 | /* Quotafile not of fs root? */ | 3165 | /* Quotafile not of fs root? */ |
| 3166 | if (nd.dentry->d_parent->d_inode != sb->s_root->d_inode) | 3166 | if (nd.path.dentry->d_parent->d_inode != sb->s_root->d_inode) |
| 3167 | printk(KERN_WARNING | 3167 | printk(KERN_WARNING |
| 3168 | "EXT4-fs: Quota file not on filesystem root. " | 3168 | "EXT4-fs: Quota file not on filesystem root. " |
| 3169 | "Journalled quota will not work.\n"); | 3169 | "Journalled quota will not work.\n"); |
