aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJan Kara <jack@suse.cz>2009-02-09 22:22:21 +0100
committerJan Kara <jack@suse.cz>2009-03-26 02:18:37 +0100
commit90c0af05a5a486f7709195e20bb26ad8f67ba5af (patch)
treeaf017a87326c57f95d419477ad12c239882e42ac
parentjfs: Use lowercase names of quota functions (diff)
downloadlinux-dev-90c0af05a5a486f7709195e20bb26ad8f67ba5af.tar.xz
linux-dev-90c0af05a5a486f7709195e20bb26ad8f67ba5af.zip
nfsd: Use lowercase names of quota functions
Use lowercase names of quota functions instead of old uppercase ones. CC: bfields@fieldses.org CC: neilb@suse.de Signed-off-by: Jan Kara <jack@suse.cz>
-rw-r--r--fs/nfsd/vfs.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/fs/nfsd/vfs.c b/fs/nfsd/vfs.c
index 6e50aaa56ca2..ad38fc9e5816 100644
--- a/fs/nfsd/vfs.c
+++ b/fs/nfsd/vfs.c
@@ -356,7 +356,7 @@ nfsd_setattr(struct svc_rqst *rqstp, struct svc_fh *fhp, struct iattr *iap,
put_write_access(inode);
goto out_nfserr;
}
- DQUOT_INIT(inode);
+ vfs_dq_init(inode);
}
/* sanitize the mode change */
@@ -723,7 +723,7 @@ nfsd_open(struct svc_rqst *rqstp, struct svc_fh *fhp, int type,
else
flags = O_WRONLY|O_LARGEFILE;
- DQUOT_INIT(inode);
+ vfs_dq_init(inode);
}
*filp = dentry_open(dget(dentry), mntget(fhp->fh_export->ex_path.mnt),
flags, cred);