X-Git-Url: http://pileus.org/git/?a=blobdiff_plain;f=fs%2Fdquot.c;h=9c7feb62eed153ae9ef923c4767d506a14250189;hb=83afdf2464ac17ad6321a68b2fe7528c9aa88016;hp=def4e969df77646192eb6ce96d223a1f78ec4544;hpb=d870ec7281d8429ab17d2e0324f4d8ca3f3de62d;p=~andy%2Flinux diff --git a/fs/dquot.c b/fs/dquot.c index def4e969df7..9c7feb62eed 100644 --- a/fs/dquot.c +++ b/fs/dquot.c @@ -1633,16 +1633,17 @@ int vfs_quota_on(struct super_block *sb, int type, int format_id, char *path) error = path_lookup(path, LOOKUP_FOLLOW, &nd); if (error < 0) return error; - error = security_quota_on(nd.dentry); + error = security_quota_on(nd.path.dentry); if (error) goto out_path; /* Quota file not on the same filesystem? */ - if (nd.mnt->mnt_sb != sb) + if (nd.path.mnt->mnt_sb != sb) error = -EXDEV; else - error = vfs_quota_on_inode(nd.dentry->d_inode, type, format_id); + error = vfs_quota_on_inode(nd.path.dentry->d_inode, type, + format_id); out_path: - path_release(&nd); + path_put(&nd.path); return error; }