Displaying 5 results from an estimated 5 matches for "oldalloc".
Did you mean:
old_alloc
2005 Feb 22
2
ext3 compatibility between 2.4 and 2.6 kernels
...nel 2.6 on
the central server is that the 2.4 kernel in the embedded system
cannot read the root filesystem, and panics with a message about not
being able to find init.
The scenario is -- running FC3:
1. "mkfs -t ext3 -O none <device>" on removable disk
2. "mount -Onoacl,oldalloc,nouser_xattr <device> <mountpoint>"
3. "tar xf" onto mountpoint
4. "umount <mountpoint>"
(repeat for each of /boot and / filesystems)
I've tried various combinations of mkfs options and mount options,
with no luck.
Furthermore, I've tried...
2005 Oct 31
2
What is the history of CONFIG_EXT{2,3}_CHECK?
Can anyone tell me the history of CONFIG_EXT{2,3}_CHECK?
There is code for a "check" option for mount if these options are
enabled, but there's no way to enable them.
TIA
Adrian
--
"Is there not promise of rain?" Ling Tan asked suddenly out
of the darkness. There had been need of rain for many days.
"Only a promise," Lao Er said.
2005 Dec 02
1
[PATCH] ext3 doc: user_xattr and acl options are not on by default
Documentation/ext3.txt suggests that the "user_xattr" and "acl" mount options
are on by default. This doesn't seem to be the case, as the kernel deduces the
default mount options from the filesystem superblock, and mke2fs does not
appear to write any default mount options there.
This error was spotted by Jacques de Mer.
Signed-off-by: Daniel Drake <dsd at
2003 Mar 08
3
Updated 2.4 htree patches available for 2.4.21rc5
I've backported all of the bugfixes to the 2.5 dxdir/htree patches to
2.4, and have created a new set of patches for Linux 2.4.21rc5. At this
point it *looks* like we've fixed all of the htree bugs that people have
reported, including the brelse bug, the memory leak bugs, and the NFS
compatibility problems.
I've done *very* light testing, and things seem to work, but I'm now
2006 Apr 02
1
Zeroing freed blocks
...opt(sb, ZEROFREE) ) {
+ zero_block(sb, block+i);
+ }
}
}
--- linux-2.6.16/fs/ext2/super.c.zerofree 2006-03-20 05:53:29.000000000 +0000
+++ linux-2.6.16/fs/ext2/super.c 2006-04-02 09:21:52.000000000 +0100
@@ -289,7 +289,7 @@ enum {
Opt_err_ro, Opt_nouid32, Opt_nocheck, Opt_debug,
Opt_oldalloc, Opt_orlov, Opt_nobh, Opt_user_xattr, Opt_nouser_xattr,
Opt_acl, Opt_noacl, Opt_xip, Opt_ignore, Opt_err, Opt_quota,
- Opt_usrquota, Opt_grpquota
+ Opt_usrquota, Opt_grpquota, Opt_zerofree
};
static match_table_t tokens = {
@@ -312,6 +312,7 @@ static match_table_t tokens = {
{Opt_oldalloc,...