On Saturday 08 March 2003 14:13, Theodore Ts'o wrote:
Hi Theodore,
> like subsecond timestamps. The patches also add support for setting
> default mount options via tune2fs, and the improved Orlov block
> allocator.
The Orlov patch is missing ext3 mount option support (orlov|oldalloc)
Patch attached.
ciao, Marc
diff -u 2.4/fs/ext3/super.c.old 2.4/fs/ext3/super.c
--- 2.4/fs/ext3/super.c.old Fri Nov 29 14:01:51 2002
+++ 2.4/fs/ext3/super.c Sat Mar 08 23:59:22 2003
@@ -582,6 +583,10 @@
return 0;
sbi->s_resuid = v;
}
+ else if (!strcmp (this_char, "oldalloc"))
+ set_opt (sbi->s_mount_opt, OLDALLOC);
+ else if (!strcmp (this_char, "orlov"))
+ clear_opt (sbi->s_mount_opt, OLDALLOC);
#ifdef CONFIG_JBD_DEBUG
else if (!strcmp (this_char, "ro-after")) {
unsigned long v;