summaryrefslogtreecommitdiff
path: root/fs/quota
diff options
context:
space:
mode:
authorChristoph Hellwig <hch@lst.de>2010-06-04 10:56:01 +0200
committerJan Kara <jack@suse.cz>2010-07-21 16:01:46 +0200
commitade7ce31c22e961dfbe1a6d57fd362c90c187cbd (patch)
tree96a64a3ae76a182e80db8457e49aa30355b54ae3 /fs/quota
parent7af9cce8ae467bb2fcf3b0b6be3898835bdb984c (diff)
downloadlinux-3.10-ade7ce31c22e961dfbe1a6d57fd362c90c187cbd.tar.gz
linux-3.10-ade7ce31c22e961dfbe1a6d57fd362c90c187cbd.tar.bz2
linux-3.10-ade7ce31c22e961dfbe1a6d57fd362c90c187cbd.zip
quota: Clean up the namespace in dqblk_xfs.h
Almost all identifiers use the FS_* namespace, so rename the missing few XFS_* ones to FS_* as well. Without this some people might get upset about having too many XFS names in generic code. Acked-by: Steven Whitehouse <swhiteho@redhat.com> Signed-off-by: Christoph Hellwig <hch@lst.de> Signed-off-by: Jan Kara <jack@suse.cz>
Diffstat (limited to 'fs/quota')
-rw-r--r--fs/quota/dquot.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/quota/dquot.c b/fs/quota/dquot.c
index a5974c49a78..2857fd67ff3 100644
--- a/fs/quota/dquot.c
+++ b/fs/quota/dquot.c
@@ -2281,7 +2281,7 @@ static void do_get_dqblk(struct dquot *dquot, struct fs_disk_quota *di)
memset(di, 0, sizeof(*di));
di->d_version = FS_DQUOT_VERSION;
di->d_flags = dquot->dq_type == USRQUOTA ?
- XFS_USER_QUOTA : XFS_GROUP_QUOTA;
+ FS_USER_QUOTA : FS_GROUP_QUOTA;
di->d_id = dquot->dq_id;
spin_lock(&dq_data_lock);