https://bugzilla.kernel.org/show_bug.cgi?id=214927 Theodore Tso (tytso@xxxxxxx) changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |tytso@xxxxxxx --- Comment #3 from Theodore Tso (tytso@xxxxxxx) --- In the case when there is a I/O error while trying to write to the journal, there's nothing that can be done safely other than to force the file system to be read-only. When there is a file system which has aborted or otherwise has run into errors, you have to unmount the file system before it is safe to remount it read/write. In fact, the ideal procedure is to umount the file system, run fsck, and then remount the file system. In the case of the root file system, you can't unmount the file system, so it is acceptable to remount it read/only (if that hasn't been done automatically), run fsck, and then reboot. The reason for this because while the file system is mounted, there may be file system corruption which was fixed by fsck, but for which some corruption (for example, a corrupted refcount) is still present in memory. So it is not safe to take a mounted root file system, and modify it using fsck, and then remount it read/write. You have to reboot so it can be freshly mounted on the reboot. -- You may reply to this email to add a comment. You are receiving this mail because: You are watching the assignee of the bug.