diff options
Diffstat (limited to 'fs')
-rw-r--r-- | fs/dquot.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/fs/dquot.c b/fs/dquot.c index 05b60283c9c2..2a62b3dc20ec 100644 --- a/fs/dquot.c +++ b/fs/dquot.c | |||
@@ -1513,10 +1513,16 @@ int vfs_quota_on_mount(struct super_block *sb, char *qf_name, | |||
1513 | if (IS_ERR(dentry)) | 1513 | if (IS_ERR(dentry)) |
1514 | return PTR_ERR(dentry); | 1514 | return PTR_ERR(dentry); |
1515 | 1515 | ||
1516 | if (!dentry->d_inode) { | ||
1517 | error = -ENOENT; | ||
1518 | goto out; | ||
1519 | } | ||
1520 | |||
1516 | error = security_quota_on(dentry); | 1521 | error = security_quota_on(dentry); |
1517 | if (!error) | 1522 | if (!error) |
1518 | error = vfs_quota_on_inode(dentry->d_inode, type, format_id); | 1523 | error = vfs_quota_on_inode(dentry->d_inode, type, format_id); |
1519 | 1524 | ||
1525 | out: | ||
1520 | dput(dentry); | 1526 | dput(dentry); |
1521 | return error; | 1527 | return error; |
1522 | } | 1528 | } |