Commit 31d5577b authored by David Chinner's avatar David Chinner Committed by Lachlan McIlroy

[XFS] Catch errors resetting quota flags.

Warn to the syslog if we fail to reset the quota flags in the superblock
when a quota check fails.

SGI-PV: 980084
SGI-Modid: xfs-linux-melb:xfs-kern:30789a
Signed-off-by: default avatarDavid Chinner <dgc@sgi.com>
Signed-off-by: default avatarNiv Sardi <xaiki@sgi.com>
Signed-off-by: default avatarLachlan McIlroy <lachlan@sgi.com>
parent 53aa7915
...@@ -1927,7 +1927,10 @@ xfs_qm_quotacheck( ...@@ -1927,7 +1927,10 @@ xfs_qm_quotacheck(
ASSERT(mp->m_quotainfo != NULL); ASSERT(mp->m_quotainfo != NULL);
ASSERT(xfs_Gqm != NULL); ASSERT(xfs_Gqm != NULL);
xfs_qm_destroy_quotainfo(mp); xfs_qm_destroy_quotainfo(mp);
(void)xfs_mount_reset_sbqflags(mp); if (xfs_mount_reset_sbqflags(mp)) {
cmn_err(CE_WARN, "XFS quotacheck %s: "
"Failed to reset quota flags.", mp->m_fsname);
}
} else { } else {
cmn_err(CE_NOTE, "XFS quotacheck %s: Done.", mp->m_fsname); cmn_err(CE_NOTE, "XFS quotacheck %s: Done.", mp->m_fsname);
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment