Displaying 1 result from an estimated 1 matches for "orphan_cleanup".
2003 Jan 29
0
Ext3, orphans and read-only
...- /] fsck.ext3 -a /dev/sda1
[FAILED]
*** An error occurred during the file system check.
*** Dropping you to a shell; the system will reboot
*** when you leave the shell.
Give root password for maintenance
(or type Control-D for normal startup):
Below is a simple fix that reorders the tests in orphan_cleanup. It
works on 2.4.9-e.10 and 2.4.18-19. A very similar patch should work on
2.5.59.
--- linux-as/fs/ext3/super.c.orig Wed Jan 29 08:53:59 2003
+++ linux-as/fs/ext3/super.c Wed Jan 29 08:57:51 2003
@@ -815,12 +815,6 @@
return;
}
- if (s_flags & MS_RDONLY) {
- printk(KERN_INFO "EXT...