On Fri, 4 May 2001, Linus Torvalds wrote: > Now, if you want to speed up accesses, there are things you can do. You > can lay out the filesystem in the access order - trace the IO accesses at > bootup ("which file, which offset, which metadata block?") and lay out the > blocks of the files in exactly the right order. Then you will get linear > reads _without_ doing any "dd" at all. > > Now, laying out the filesystem that way is _hard_. No question about it. > It's kind of equivalent to doing a filesystem "defreagment" operation, > except you use a different sorting function (instead of sorting blocks > linearly within each file, you sort according to access order). Ehh... There _is_ a way to deal with that, but it's deeply Albertesque: * add pagecache access for block device * put your "real" root on /dev/loop0 (setup from initrd) * dd The last step will populate pagecache for underlying device and later access to root fs will ultimately hit said pagecache, be it from page cache of files or buffer cache of /dev/loop0 - loop_make_request() will take care of that, by copying data from pagecache of /dev/<real_device>. Al, feeling sadistic today... - To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to [EMAIL PROTECTED] More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/
- Re: [PATCH] SMP race in ext2 - metadata corruption. Linus Torvalds
- Re: [PATCH] SMP race in ext2 - metadata corruption. Rogier Wolff
- Re: [PATCH] SMP race in ext2 - metadata corruption. Jens Axboe
- Re: [PATCH] SMP race in ext2 - metadata corruption. Andrea Arcangeli
- Re: [PATCH] SMP race in ext2 - metadata corruption. Linus Torvalds
- Re: [PATCH] SMP race in ext2 - metadata corruption. Andrea Arcangeli
- Re: [PATCH] SMP race in ext2 - metadata corruption. Andrea Arcangeli
- Re: [PATCH] SMP race in ext2 - metadata corruption. Andrea Arcangeli
- Re: [PATCH] SMP race in ext2 - metadata corruption. Marc SCHAEFER
- Re: [PATCH] SMP race in ext2 - metadata corruption. Linus Torvalds
- Re: [PATCH] SMP race in ext2 - metadata corruption. Alexander Viro
- Re: [PATCH] SMP race in ext2 - metadata corruption. Linus Torvalds
- Re: [PATCH] SMP race in ext2 - metadata corruption. Alexander Viro
- Re: [PATCH] SMP race in ext2 - metadata corruption. Linus Torvalds
- Re: [PATCH] SMP race in ext2 - metadata corruption. Albert D. Cahalan
- Re: [PATCH] SMP race in ext2 - metadata corruption. Alexander Viro
- Re: [PATCH] SMP race in ext2 - metadata corruption. Richard Gooch
- Re: [PATCH] SMP race in ext2 - metadata corruption. Alexander Viro
- Re: [PATCH] SMP race in ext2 - metadata corruption. Richard Gooch
- Re: [PATCH] SMP race in ext2 - metadata corruption. Alexander Viro
- Re: [PATCH] SMP race in ext2 - metadata corruption. Richard Gooch