mirror of
https://github.com/adulau/aha.git
synced 2024-12-28 11:46:19 +00:00
[XFS] Warn on transaction in flight on read-only remount
Till VFS can correctly support read-only remount without racing, use WARN_ON instead of BUG_ON on detecting transaction in flight after quiescing filesystem. Signed-off-by: Felix Blyakher <felixb@sgi.com> Reviewed-by: Christoph Hellwig <hch@lst.de>
This commit is contained in:
parent
6139a23609
commit
43f3f057c5
1 changed files with 5 additions and 1 deletions
|
@ -371,7 +371,11 @@ xfs_quiesce_attr(
|
||||||
/* flush inodes and push all remaining buffers out to disk */
|
/* flush inodes and push all remaining buffers out to disk */
|
||||||
xfs_quiesce_fs(mp);
|
xfs_quiesce_fs(mp);
|
||||||
|
|
||||||
ASSERT_ALWAYS(atomic_read(&mp->m_active_trans) == 0);
|
/*
|
||||||
|
* Just warn here till VFS can correctly support
|
||||||
|
* read-only remount without racing.
|
||||||
|
*/
|
||||||
|
WARN_ON(atomic_read(&mp->m_active_trans) != 0);
|
||||||
|
|
||||||
/* Push the superblock and write an unmount record */
|
/* Push the superblock and write an unmount record */
|
||||||
error = xfs_log_sbcount(mp, 1);
|
error = xfs_log_sbcount(mp, 1);
|
||||||
|
|
Loading…
Reference in a new issue