cf20238
From 5f7b9d139d64117abc4dcd66d2fbac99c070d7ce Mon Sep 17 00:00:00 2001
cf20238
From: =?UTF-8?q?Petr=20P=C3=ADsa=C5=99?= <ppisar@redhat.com>
cf20238
Date: Thu, 31 Jan 2013 12:58:59 +0100
cf20238
Subject: [PATCH] Do not fiddle with quota files on XFS and GFS
cf20238
MIME-Version: 1.0
cf20238
Content-Type: text/plain; charset=UTF-8
cf20238
Content-Transfer-Encoding: 8bit
cf20238
cf20238
XFS and GFS have no quota files. Skip unnecessary examination and
cf20238
rename of these files when running quotacheck.
cf20238
cf20238
Signed-off-by: Petr Písař <ppisar@redhat.com>
cf20238
Signed-off-by: Jan Kara <jack@suse.cz>
cf20238
---
cf20238
 quotacheck.c | 7 +++++++
cf20238
 1 file changed, 7 insertions(+)
cf20238
cf20238
diff --git a/quotacheck.c b/quotacheck.c
cf20238
index 0d0d4b2..e047825 100644
cf20238
--- a/quotacheck.c
cf20238
+++ b/quotacheck.c
cf20238
@@ -828,6 +828,9 @@ static int dump_to_file(struct mount_entry *mnt, int type)
cf20238
 		return -1;
cf20238
 	}
cf20238
 	debug(FL_DEBUG, _("Data dumped.\n"));
cf20238
+	/* Moving of quota files doesn't apply to GFS2 or XFS */
cf20238
+	if (cfmt == QF_XFS)
cf20238
+		return 0;
cf20238
 	if (kern_quota_on(mnt, type, cfmt) >= 0) {	/* Quota turned on? */
cf20238
 		char *filename;
cf20238
 
cf20238
@@ -871,6 +874,10 @@ static int sub_quota_file(struct mount_entry *mnt, int qtype, int ftype)
cf20238
 	struct dquot *d;
cf20238
 	qid_t id;
cf20238
 
cf20238
+	/* GFS2 and XFS do not have quota files. */
cf20238
+	if (cfmt == QF_XFS)
cf20238
+		return 0;
cf20238
+
cf20238
 	debug(FL_DEBUG, _("Substracting space used by old %s quota file.\n"), _(type2name(ftype)));
cf20238
 	if (get_qf_name(mnt, ftype, cfmt, 0, &filename) < 0) {
cf20238
 		debug(FL_VERBOSE, _("Old %s file name could not been determined. Usage will not be subtracted.\n"), _(type2name(ftype)));
cf20238
-- 
cf20238
1.8.1.2
cf20238