fallocate-implementation-on-i86-x86_64-and-powerpc.patch (was: re: -mm merge plans for 2.6.23)

Previous message: [thread] [date] [author]
Next message: [thread] [date] [author]
From: Theodore Tso
Date: Tuesday, July 10, 2007 - 4:52 am

On Tue, Jul 10, 2007 at 01:31:52AM -0700, Andrew Morton wrote:

Andrew,

Could you replace the comment/header section of
fallocate-implementation-on-i86-x86_64-and-powerpc.patch with the
following (attached below) ?  This is from the ext4 patches, where
Amit had cleaned up description, which will make for a cleaner and
easier to understand submission into the git tree.

I've reviewed the other fallocate patches, noting the request to drop
the s390 patches since Martin has said he will wire up it up after
this hits mainline, and the only other change that I've found between
what we have in the ext4 tree and -mm is that we have 

	fallocate-on-ia64.patch
and
	fallocate-on-ia64-fix.patch 

merged into a single patch.  It probably would be better to merge them
before sending it off to Linus, in the interests of cleanliness and
making the tree more git-bisect friendly.

Regards,

						- Ted


From: Amit Arora <aarora@in.ibm.com>

sys_fallocate() implementation on i386, x86_64 and powerpc

fallocate() is a new system call being proposed here which will allow
applications to preallocate space to any file(s) in a file system.
Each file system implementation that wants to use this feature will need
to support an inode operation called ->fallocate().
Applications can use this feature to avoid fragmentation to certain
level and thus get faster access speed. With preallocation, applications
also get a guarantee of space for particular file(s) - even if later the
the system becomes full.

Currently, glibc provides an interface called posix_fallocate() which
can be used for similar cause. Though this has the advantage of working
on all file systems, but it is quite slow (since it writes zeroes to
each block that has to be preallocated). Without a doubt, file systems
can do this more efficiently within the kernel, by implementing
the proposed fallocate() system call. It is expected that
posix_fallocate() will be modified to call this new system call first
and incase the kernel/filesystem does not implement it, it should fall
back to the current implementation of writing zeroes to the new blocks.
ToDos:
1. Implementation on other architectures (other than i386, x86_64,
ppc64 and s390(x)). David Chinner has already posted a patch for ia64.
2. A generic file system operation to handle fallocate
(generic_fallocate), for filesystems that do _not_ have the fallocate
inode operation implemented.
3. Changes to glibc,
   a) to support fallocate() system call
   b) to make posix_fallocate() and posix_fallocate64() call fallocate()


Signed-off-by: Amit Arora <aarora@in.ibm.com>
Cc: Andi Kleen <ak@suse.de>
Cc: Paul Mackerras <paulus@samba.org>
Cc: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Cc: Arnd Bergmann <arnd@arndb.de>
Cc: "Luck, Tony" <tony.luck@intel.com>
Cc: Heiko Carstens <heiko.carstens@de.ibm.com>
Cc: Martin Schwidefsky <schwidefsky@de.ibm.com>
Cc: Theodore Ts'o <tytso@mit.edu>
Cc: Mark Fasheh <mark.fasheh@oracle.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
-
Previous message: [thread] [date] [author]
Next message: [thread] [date] [author]

Messages in current thread:
-mm merge plans for 2.6.23, Andrew Morton, (Tue Jul 10, 1:31 am)
intel iommu (Re: -mm merge plans for 2.6.23), Jan Engelhardt, (Tue Jul 10, 2:04 am)
Re: -mm merge plans for 2.6.23 -- sys_fallocate, Heiko Carstens, (Tue Jul 10, 2:07 am)
Re: cpuset-remove-sched-domain-hooks-from-cpusets, Paul Jackson, (Tue Jul 10, 2:17 am)
Re: -mm merge plans for 2.6.23 -- sys_fallocate, Andrew Morton, (Tue Jul 10, 2:22 am)
Re: -mm merge plans for 2.6.23, Con Kolivas, (Tue Jul 10, 3:15 am)
containers (was Re: -mm merge plans for 2.6.23), Srivatsa Vaddagiri, (Tue Jul 10, 3:52 am)
Re: containers (was Re: -mm merge plans for 2.6.23), Ingo Molnar, (Tue Jul 10, 4:19 am)
fallocate-implementation-on-i86-x86_64-and-powerpc.patch ( ..., Theodore Tso, (Tue Jul 10, 4:52 am)
clam, Andy Whitcroft, (Tue Jul 10, 5:37 am)
Re: -mm merge plans for 2.6.23, Serge E. Hallyn, (Tue Jul 10, 8:08 am)
Re: -mm merge plans for 2.6.23, Rafael J. Wysocki, (Tue Jul 10, 8:11 am)
Re: -mm merge plans for 2.6.23 -- sys_fallocate, Theodore Tso, (Tue Jul 10, 8:45 am)
Re: -mm merge plans for 2.6.23 (pcmcia), Randy Dunlap, (Tue Jul 10, 9:29 am)
Re: -mm merge plans for 2.6.23 - ioat/dma engine, Kok, Auke, (Tue Jul 10, 9:31 am)
Re: -mm merge plans for 2.6.23 -- sys_fallocate, Andrew Morton, (Tue Jul 10, 10:27 am)
Re: -mm merge plans for 2.6.23 (pcmcia), Andrew Morton, (Tue Jul 10, 10:30 am)
ata and netdev (was Re: -mm merge plans for 2.6.23), Jeff Garzik, (Tue Jul 10, 10:42 am)
ext2 reservations (Re: -mm merge plans for 2.6.23), Alexey Dobriyan, (Tue Jul 10, 10:49 am)
Re: -mm merge plans for 2.6.23 -- sys_fallocate, Heiko Carstens, (Tue Jul 10, 11:05 am)
RE: -mm merge plans for 2.6.23 - ioat/dma engine, Nelson, Shannon, (Tue Jul 10, 11:05 am)
Re: -mm merge plans for 2.6.23 -- sys_fallocate, Mark Fasheh, (Tue Jul 10, 11:20 am)
Re: ata and netdev (was Re: -mm merge plans for 2.6.23), Andrew Morton, (Tue Jul 10, 11:24 am)
Re: PCI probing changes, Jesse Barnes, (Tue Jul 10, 11:34 am)
Re: containers (was Re: -mm merge plans for 2.6.23), Paul Menage, (Tue Jul 10, 11:34 am)
Re: -mm merge plans for 2.6.23 -- sys_fallocate, Amit K. Arora, (Tue Jul 10, 11:39 am)
Re: -mm merge plans for 2.6.23 -- sys_fallocate, Andrew Morton, (Tue Jul 10, 11:41 am)
agp / cpufreq., Dave Jones, (Tue Jul 10, 11:44 am)
Re: -mm merge plans for 2.6.23 - ioat/dma engine, Andrew Morton, (Tue Jul 10, 11:47 am)
Re: containers (was Re: -mm merge plans for 2.6.23), Andrew Morton, (Tue Jul 10, 11:53 am)
Re: ata and netdev (was Re: -mm merge plans for 2.6.23), James Bottomley, (Tue Jul 10, 11:55 am)
Re: PCI probing changes, Andrew Morton, (Tue Jul 10, 11:55 am)
Re: ata and netdev (was Re: -mm merge plans for 2.6.23), Jeff Garzik, (Tue Jul 10, 11:57 am)
Re: containers (was Re: -mm merge plans for 2.6.23), Paul Menage, (Tue Jul 10, 12:05 pm)
Re: ata and netdev (was Re: -mm merge plans for 2.6.23), Sergei Shtylyov, (Tue Jul 10, 12:56 pm)
Re: -mm merge plans for 2.6.23, Christoph Lameter, (Tue Jul 10, 1:09 pm)
Re: -mm merge plans for 2.6.23 -- sys_fallocate, Amit K. Arora, (Tue Jul 10, 1:28 pm)
Re: ata and netdev (was Re: -mm merge plans for 2.6.23), Sergei Shtylyov, (Tue Jul 10, 1:31 pm)
Re: ata and netdev (was Re: -mm merge plans for 2.6.23), Andrew Morton, (Tue Jul 10, 1:35 pm)
RE: -mm merge plans for 2.6.23 - ioat/dma engine, Nelson, Shannon, (Tue Jul 10, 2:18 pm)
Re: containers (was Re: -mm merge plans for 2.6.23), Srivatsa Vaddagiri, (Tue Jul 10, 9:55 pm)
Re: containers (was Re: -mm merge plans for 2.6.23), Andrew Morton, (Tue Jul 10, 10:29 pm)
Re: containers (was Re: -mm merge plans for 2.6.23), Srivatsa Vaddagiri, (Tue Jul 10, 11:03 pm)
Re: containers (was Re: -mm merge plans for 2.6.23), Ingo Molnar, (Wed Jul 11, 2:04 am)
Re: containers (was Re: -mm merge plans for 2.6.23), Paul Jackson, (Wed Jul 11, 2:23 am)
Re: Re: -mm merge plans -- lumpy reclaim, Andy Whitcroft, (Wed Jul 11, 2:34 am)
testcases, was Re: -mm merge plans for 2.6.23 -- sys_fallocate, Christoph Hellwig, (Wed Jul 11, 2:36 am)
Re: -mm merge plans for 2.6.23 -- sys_fallocate, Andi Kleen, (Wed Jul 11, 2:40 am)
Re: -mm merge plans for 2.6.23, Mel Gorman, (Wed Jul 11, 2:42 am)
Re: containers (was Re: -mm merge plans for 2.6.23), Srivatsa Vaddagiri, (Wed Jul 11, 3:03 am)
Re: containers (was Re: -mm merge plans for 2.6.23), Ingo Molnar, (Wed Jul 11, 3:19 am)
Re: containers (was Re: -mm merge plans for 2.6.23), Paul Jackson, (Wed Jul 11, 4:10 am)
Re: containers (was Re: -mm merge plans for 2.6.23), Peter Zijlstra, (Wed Jul 11, 4:24 am)
Re: containers (was Re: -mm merge plans for 2.6.23), Peter Zijlstra, (Wed Jul 11, 4:30 am)
Re: -mm merge plans for 2.6.23, Christoph Hellwig, (Wed Jul 11, 4:35 am)
scsi, was Re: -mm merge plans for 2.6.23, Christoph Hellwig, (Wed Jul 11, 4:37 am)
Re: -mm merge plans for 2.6.23, David Woodhouse, (Wed Jul 11, 4:39 am)
Re: buffered write patches, -mm merge plans for 2.6.23, Christoph Hellwig, (Wed Jul 11, 4:39 am)
Re: containers (was Re: -mm merge plans for 2.6.23), Srivatsa Vaddagiri, (Wed Jul 11, 4:39 am)
Re: containers (was Re: -mm merge plans for 2.6.23), Paul Jackson, (Wed Jul 11, 4:42 am)
Re: -mm merge plans for 2.6.23, Christoph Hellwig, (Wed Jul 11, 4:55 am)
fallocate, Re: -mm merge plans for 2.6.23, Christoph Hellwig, (Wed Jul 11, 5:00 am)
Re: containers (was Re: -mm merge plans for 2.6.23), Peter Zijlstra, (Wed Jul 11, 5:06 am)
lguest, Re: -mm merge plans for 2.6.23, Christoph Hellwig, (Wed Jul 11, 5:23 am)
Re: containers (was Re: -mm merge plans for 2.6.23), Srivatsa Vaddagiri, (Wed Jul 11, 5:30 am)
x86 status was Re: -mm merge plans for 2.6.23, Andi Kleen, (Wed Jul 11, 5:43 am)
Re: containers (was Re: -mm merge plans for 2.6.23), Srivatsa Vaddagiri, (Wed Jul 11, 6:14 am)
Re: lguest, Re: -mm merge plans for 2.6.23, Randy Dunlap, (Wed Jul 11, 8:45 am)
Re: -mm merge plans -- lumpy reclaim, Andrew Morton, (Wed Jul 11, 9:46 am)
Re: containers (was Re: -mm merge plans for 2.6.23), Paul Jackson, (Wed Jul 11, 10:03 am)
Re: -mm merge plans for 2.6.23, Andrew Morton, (Wed Jul 11, 10:21 am)
Re: scsi, was Re: -mm merge plans for 2.6.23, Andrew Morton, (Wed Jul 11, 10:22 am)
Re: buffered write patches, -mm merge plans for 2.6.23, Andrew Morton, (Wed Jul 11, 10:23 am)
Re: -mm merge plans for 2.6.23, Randy Dunlap, (Wed Jul 11, 10:28 am)
Re: x86 status was Re: -mm merge plans for 2.6.23, Jesse Barnes, (Wed Jul 11, 10:33 am)
Re: x86 status was Re: -mm merge plans for 2.6.23, Ingo Molnar, (Wed Jul 11, 10:42 am)
Re: -mm merge plans for 2.6.23, Christoph Lameter, (Wed Jul 11, 10:49 am)
Re: lguest, Re: -mm merge plans for 2.6.23, Andrew Morton, (Wed Jul 11, 11:04 am)
Re: x86 status was Re: -mm merge plans for 2.6.23, Jeremy Fitzhardinge, (Wed Jul 11, 11:14 am)
Re: -mm merge plans -- lumpy reclaim, Andy Whitcroft, (Wed Jul 11, 11:38 am)
Re: fallocate-implementation-on-i86-x86_64-and-powerpc.patch, Heiko Carstens, (Wed Jul 11, 11:47 am)
Re: containers (was Re: -mm merge plans for 2.6.23), Peter Zijlstra, (Wed Jul 11, 11:47 am)
Re: containers (was Re: -mm merge plans for 2.6.23), Paul Menage, (Wed Jul 11, 12:44 pm)
Re: fallocate-implementation-on-i86-x86_64-and-powerpc.patch, Martin Schwidefsky, (Wed Jul 11, 1:32 pm)
Re: x86 status was Re: -mm merge plans for 2.6.23, Randy Dunlap, (Wed Jul 11, 2:02 pm)
Re: x86 status was Re: -mm merge plans for 2.6.23, Andi Kleen, (Wed Jul 11, 2:16 pm)
Re: x86 status was Re: -mm merge plans for 2.6.23, Thomas Gleixner, (Wed Jul 11, 2:39 pm)
Re: x86 status was Re: -mm merge plans for 2.6.23, Linus Torvalds, (Wed Jul 11, 2:42 pm)
Re: x86 status was Re: -mm merge plans for 2.6.23, Valdis.Kletnieks, (Wed Jul 11, 2:46 pm)
Re: x86 status was Re: -mm merge plans for 2.6.23, Thomas Gleixner, (Wed Jul 11, 2:46 pm)
Re: x86 status was Re: -mm merge plans for 2.6.23, Andrea Arcangeli, (Wed Jul 11, 2:46 pm)
Re: x86 status was Re: -mm merge plans for 2.6.23, Chris Wright, (Wed Jul 11, 2:52 pm)
Re: x86 status was Re: -mm merge plans for 2.6.23, Chris Wright, (Wed Jul 11, 2:54 pm)
Re: x86 status was Re: -mm merge plans for 2.6.23, Thomas Gleixner, (Wed Jul 11, 3:04 pm)
Re: x86 status was Re: -mm merge plans for 2.6.23, Linus Torvalds, (Wed Jul 11, 3:09 pm)
Re: x86 status was Re: -mm merge plans for 2.6.23, Valdis.Kletnieks, (Wed Jul 11, 3:11 pm)
Re: x86 status was Re: -mm merge plans for 2.6.23, Linus Torvalds, (Wed Jul 11, 3:12 pm)
Re: x86 status was Re: -mm merge plans for 2.6.23, Andi Kleen, (Wed Jul 11, 3:18 pm)
Re: x86 status was Re: -mm merge plans for 2.6.23, Linus Torvalds, (Wed Jul 11, 3:20 pm)
Re: x86 status was Re: -mm merge plans for 2.6.23, Chris Wright, (Wed Jul 11, 3:20 pm)
Re: x86 status was Re: -mm merge plans for 2.6.23, Linus Torvalds, (Wed Jul 11, 3:33 pm)
Re: x86 status was Re: -mm merge plans for 2.6.23, Thomas Gleixner, (Wed Jul 11, 3:50 pm)
Re: x86 status was Re: -mm merge plans for 2.6.23, Chris Wright, (Wed Jul 11, 3:51 pm)
Re: x86 status was Re: -mm merge plans for 2.6.23, Linus Torvalds, (Wed Jul 11, 3:58 pm)
Re: x86 status was Re: -mm merge plans for 2.6.23, Chris Wright, (Wed Jul 11, 4:03 pm)
Re: x86 status was Re: -mm merge plans for 2.6.23, Linus Torvalds, (Wed Jul 11, 4:07 pm)
Re: x86 status was Re: -mm merge plans for 2.6.23, Ingo Molnar, (Wed Jul 11, 4:19 pm)
Re: x86 status was Re: -mm merge plans for 2.6.23, Randy Dunlap, (Wed Jul 11, 4:21 pm)
Re: x86 status was Re: -mm merge plans for 2.6.23, Thomas Gleixner, (Wed Jul 11, 4:29 pm)
Re: x86 status was Re: -mm merge plans for 2.6.23, Andi Kleen, (Wed Jul 11, 4:36 pm)
Re: x86 status was Re: -mm merge plans for 2.6.23, Linus Torvalds, (Wed Jul 11, 4:45 pm)
Re: x86 status was Re: -mm merge plans for 2.6.23, Thomas Gleixner, (Wed Jul 11, 4:48 pm)
Re: x86 status was Re: -mm merge plans for 2.6.23, Ingo Molnar, (Wed Jul 11, 4:58 pm)
Re: x86 status was Re: -mm merge plans for 2.6.23, Andi Kleen, (Wed Jul 11, 5:07 pm)
Re: x86 status was Re: -mm merge plans for 2.6.23, Chris Wright, (Wed Jul 11, 5:15 pm)
Re: x86 status was Re: -mm merge plans for 2.6.23, Ingo Molnar, (Wed Jul 11, 5:18 pm)
Re: x86 status was Re: -mm merge plans for 2.6.23, Andi Kleen, (Wed Jul 11, 5:37 pm)
Re: lguest, Re: -mm merge plans for 2.6.23, Rusty Russell, (Wed Jul 11, 6:21 pm)
Re: lguest, Re: -mm merge plans for 2.6.23, David Miller, (Wed Jul 11, 7:28 pm)
Re: lguest, Re: -mm merge plans for 2.6.23, Rusty Russell, (Wed Jul 11, 7:48 pm)
Re: lguest, Re: -mm merge plans for 2.6.23, David Miller, (Wed Jul 11, 7:51 pm)
Re: x86 status was Re: -mm merge plans for 2.6.23, Arjan van de Ven, (Wed Jul 11, 7:53 pm)
Re: lguest, Re: -mm merge plans for 2.6.23, Rusty Russell, (Wed Jul 11, 8:15 pm)
Re: lguest, Re: -mm merge plans for 2.6.23, David Miller, (Wed Jul 11, 8:35 pm)
Re: lguest, Re: -mm merge plans for 2.6.23, Andrew Morton, (Wed Jul 11, 9:24 pm)
Re: lguest, Re: -mm merge plans for 2.6.23, Rusty Russell, (Wed Jul 11, 9:52 pm)
Re: containers (was Re: -mm merge plans for 2.6.23), Srivatsa Vaddagiri, (Wed Jul 11, 10:39 pm)
Re: lguest, Re: -mm merge plans for 2.6.23, Avi Kivity, (Thu Jul 12, 4:10 am)
Re: x86 status was Re: -mm merge plans for 2.6.23, Christoph Lameter, (Thu Jul 12, 12:33 pm)
Re: x86 status was Re: -mm merge plans for 2.6.23, Matt Mackall, (Thu Jul 12, 1:38 pm)
Re: x86 status was Re: -mm merge plans for 2.6.23, Andi Kleen, (Thu Jul 12, 1:38 pm)
Re: lguest, Re: -mm merge plans for 2.6.23, Rusty Russell, (Thu Jul 12, 4:20 pm)
Re: x86 status was Re: -mm merge plans for 2.6.23, Roman Zippel, (Thu Jul 12, 7:23 pm)
Re: x86 status was Re: -mm merge plans for 2.6.23, Andrew Morton, (Thu Jul 12, 9:40 pm)
Re: x86 status was Re: -mm merge plans for 2.6.23, Mike Galbraith, (Thu Jul 12, 9:47 pm)
Re: -mm merge plans for 2.6.23, Jan Engelhardt, (Fri Jul 13, 2:46 am)
Re: x86 status was Re: -mm merge plans for 2.6.23, Roman Zippel, (Fri Jul 13, 10:23 am)
[PATCH] CFS: Fix missing digit off in wmult table, Thomas Gleixner, (Fri Jul 13, 12:43 pm)
Re: -mm merge plans for 2.6.23, Tilman Schmidt, (Fri Jul 13, 4:09 pm)
Re: x86 status was Re: -mm merge plans for 2.6.23, Mike Galbraith, (Fri Jul 13, 10:04 pm)
Re: -mm merge plans for 2.6.23, Jan Engelhardt, (Sat Jul 14, 3:02 am)
Re: [PATCH] CFS: Fix missing digit off in wmult table, James Bruce, (Sun Jul 15, 11:18 pm)
Re: [PATCH] CFS: Fix missing digit off in wmult table, Ingo Molnar, (Mon Jul 16, 12:06 am)
Re: [PATCH] CFS: Fix missing digit off in wmult table, Ingo Molnar, (Mon Jul 16, 12:41 am)
Re: [PATCH] CFS: Fix missing digit off in wmult table, Roman Zippel, (Mon Jul 16, 3:18 am)
Re: -mm merge plans -- lumpy reclaim, Mel Gorman, (Mon Jul 16, 3:37 am)
Re: [PATCH] CFS: Fix missing digit off in wmult table, Ingo Molnar, (Mon Jul 16, 4:20 am)
Re: [PATCH] CFS: Fix missing digit off in wmult table, Roman Zippel, (Mon Jul 16, 4:58 am)
Re: [PATCH] CFS: Fix missing digit off in wmult table, Ingo Molnar, (Mon Jul 16, 5:12 am)
Re: [PATCH] CFS: Fix missing digit off in wmult table, Roman Zippel, (Mon Jul 16, 5:42 am)
Re: [PATCH] CFS: Fix missing digit off in wmult table, Ingo Molnar, (Mon Jul 16, 6:40 am)
Re: [PATCH] CFS: Fix missing digit off in wmult table, Roman Zippel, (Mon Jul 16, 7:01 am)
Re: [PATCH] CFS: Fix missing digit off in wmult table, James Bruce, (Mon Jul 16, 8:02 am)
Re: [PATCH] CFS: Fix missing digit off in wmult table, Linus Torvalds, (Mon Jul 16, 10:47 am)
Re: [PATCH] CFS: Fix missing digit off in wmult table, Roman Zippel, (Mon Jul 16, 11:12 am)
Re: [PATCH] CFS: Fix missing digit off in wmult table, Matt Mackall, (Mon Jul 16, 1:31 pm)
Re: [PATCH] CFS: Fix missing digit off in wmult table, Ingo Molnar, (Mon Jul 16, 2:18 pm)
Re: [PATCH] CFS: Fix missing digit off in wmult table, Roman Zippel, (Mon Jul 16, 2:25 pm)
Re: [PATCH] CFS: Fix missing digit off in wmult table, Roman Zippel, (Mon Jul 16, 3:13 pm)
Re: [PATCH] CFS: Fix missing digit off in wmult table, Ingo Molnar, (Mon Jul 16, 3:29 pm)
Re: [PATCH] CFS: Fix missing digit off in wmult table, Roman Zippel, (Mon Jul 16, 5:02 pm)
Re: [PATCH] CFS: Fix missing digit off in wmult table, Roman Zippel, (Mon Jul 16, 8:20 pm)
Re: [PATCH] CFS: Fix missing digit off in wmult table, Ingo Molnar, (Tue Jul 17, 12:53 am)
Re: [PATCH] CFS: Fix missing digit off in wmult table, Ingo Molnar, (Tue Jul 17, 1:02 am)
unprivileged mounts (was: Re: -mm merge plans for 2.6.23), Andrew Morton, (Tue Jul 17, 1:55 am)
Re: [PATCH] CFS: Fix missing digit off in wmult table, Roman Zippel, (Tue Jul 17, 7:06 am)
Re: [PATCH] CFS: Fix missing digit off in wmult table, Roman Zippel, (Tue Jul 17, 8:12 am)
Re: [PATCH] CFS: Fix missing digit off in wmult table, Peter Zijlstra, (Wed Jul 18, 3:27 am)
Re: [PATCH] CFS: Fix missing digit off in wmult table, Ingo Molnar, (Wed Jul 18, 3:40 am)
Re: [PATCH] CFS: Fix missing digit off in wmult table, Roman Zippel, (Wed Jul 18, 5:40 am)
Re: [PATCH] CFS: Fix missing digit off in wmult table, Roman Zippel, (Wed Jul 18, 5:45 am)
Re: [PATCH] CFS: Fix missing digit off in wmult table, Peter Zijlstra, (Wed Jul 18, 5:52 am)
Re: [PATCH] CFS: Fix missing digit off in wmult table, Ingo Molnar, (Wed Jul 18, 5:59 am)
Re: [PATCH] CFS: Fix missing digit off in wmult table, Roman Zippel, (Wed Jul 18, 6:07 am)
Re: [PATCH] CFS: Fix missing digit off in wmult table, Roman Zippel, (Wed Jul 18, 6:26 am)
Re: [PATCH] CFS: Fix missing digit off in wmult table, Peter Zijlstra, (Wed Jul 18, 6:27 am)
Re: [PATCH] CFS: Fix missing digit off in wmult table, Peter Zijlstra, (Wed Jul 18, 6:31 am)
Re: [PATCH] CFS: Fix missing digit off in wmult table, Ingo Molnar, (Wed Jul 18, 6:48 am)
Re: [PATCH] CFS: Fix missing digit off in wmult table, Roman Zippel, (Wed Jul 18, 6:58 am)
Re: [PATCH] CFS: Fix missing digit off in wmult table, Roman Zippel, (Wed Jul 18, 7:14 am)
Re: [PATCH] CFS: Fix missing digit off in wmult table, Ingo Molnar, (Wed Jul 18, 9:02 am)
Re: [PATCH] CFS: Fix missing digit off in wmult table, Ingo Molnar, (Wed Jul 18, 9:17 am)
Re: lguest, Re: -mm merge plans for 2.6.23, Christoph Hellwig, (Thu Jul 19, 10:27 am)
Re: lguest, Re: -mm merge plans for 2.6.23, Rusty Russell, (Thu Jul 19, 8:27 pm)
Re: lguest, Re: -mm merge plans for 2.6.23, Christoph Hellwig, (Fri Jul 20, 12:15 am)
Re: [PATCH] CFS: Fix missing digit off in wmult table, Roman Zippel, (Fri Jul 20, 6:38 am)
Re: [PATCH] CFS: Fix missing digit off in wmult table, Roman Zippel, (Fri Jul 20, 8:03 am)
Re: -mm merge plans for 2.6.23, Jesper Juhl, (Mon Jul 23, 4:08 pm)
Re: -mm merge plans for 2.6.23, Con Kolivas, (Mon Jul 23, 5:08 pm)
Re: -mm merge plans for 2.6.23, Nick Piggin, (Mon Jul 23, 8:22 pm)
Re: -mm merge plans for 2.6.23, Ray Lee, (Mon Jul 23, 9:53 pm)
Re: -mm merge plans for 2.6.23, Jeremy Fitzhardinge, (Mon Jul 23, 10:10 pm)
Re: -mm merge plans for 2.6.23, Nick Piggin, (Mon Jul 23, 10:16 pm)
Re: -mm merge plans for 2.6.23, Ray Lee, (Mon Jul 23, 10:18 pm)
Re: -mm merge plans for 2.6.23, Andrew Morton, (Mon Jul 23, 10:18 pm)
Re: -mm merge plans for 2.6.23, Ray Lee, (Mon Jul 23, 11:01 pm)
Re: -mm merge plans for 2.6.23, Andrew Morton, (Mon Jul 23, 11:10 pm)
Re: -mm merge plans for 2.6.23, Tilman Schmidt, (Tue Jul 24, 2:38 am)
Re: -mm merge plans for 2.6.23, Ray Lee, (Tue Jul 24, 9:15 am)
Re: [ck] Re: -mm merge plans for 2.6.23, Rashkae, (Tue Jul 24, 10:46 am)
Re: [ck] Re: -mm merge plans for 2.6.23, Matthew Hawkins, (Tue Jul 24, 6:26 pm)
Re: [ck] Re: -mm merge plans for 2.6.23, David Miller, (Tue Jul 24, 6:35 pm)
Re: -mm merge plans for 2.6.23, Nick Piggin, (Tue Jul 24, 9:06 pm)
Re: -mm merge plans for 2.6.23, david, (Tue Jul 24, 9:46 pm)
Re: -mm merge plans for 2.6.23, Rene Herman, (Tue Jul 24, 9:55 pm)
Re: -mm merge plans for 2.6.23, Nick Piggin, (Tue Jul 24, 10:00 pm)
Re: -mm merge plans for 2.6.23, david, (Tue Jul 24, 10:12 pm)
Re: -mm merge plans for 2.6.23, Rene Herman, (Tue Jul 24, 10:30 pm)
Re: -mm merge plans for 2.6.23, Eric St-Laurent, (Tue Jul 24, 10:30 pm)
Re: -mm merge plans for 2.6.23, Nick Piggin, (Tue Jul 24, 10:37 pm)
Re: -mm merge plans for 2.6.23, david, (Tue Jul 24, 10:51 pm)
Re: -mm merge plans for 2.6.23, david, (Tue Jul 24, 10:53 pm)
Re: -mm merge plans for 2.6.23, Nick Piggin, (Tue Jul 24, 11:04 pm)
Re: [ck] Re: -mm merge plans for 2.6.23, Matthew Hawkins, (Tue Jul 24, 11:09 pm)
Re: [ck] Re: -mm merge plans for 2.6.23, Nick Piggin, (Tue Jul 24, 11:18 pm)
Re: [ck] Re: -mm merge plans for 2.6.23, Matthew Hawkins, (Tue Jul 24, 11:19 pm)
Re: -mm merge plans for 2.6.23, david, (Tue Jul 24, 11:23 pm)
Re: [ck] Re: -mm merge plans for 2.6.23, Nick Piggin, (Tue Jul 24, 11:30 pm)
Re: -mm merge plans for 2.6.23, Eric St-Laurent, (Tue Jul 24, 11:44 pm)
Re: [ck] Re: -mm merge plans for 2.6.23, Mike Galbraith, (Tue Jul 24, 11:47 pm)
Re: -mm merge plans for 2.6.23, Valdis.Kletnieks, (Wed Jul 25, 12:14 am)
Re: [ck] Re: -mm merge plans for 2.6.23, Eric St-Laurent, (Wed Jul 25, 12:19 am)
Re: -mm merge plans for 2.6.23, Nick Piggin, (Wed Jul 25, 12:25 am)
Re: -mm merge plans for 2.6.23, Ingo Molnar, (Wed Jul 25, 12:49 am)
Re: -mm merge plans for 2.6.23, Nick Piggin, (Wed Jul 25, 12:58 am)
Re: -mm merge plans for 2.6.23, Rene Herman, (Wed Jul 25, 1:00 am)
Re: -mm merge plans for 2.6.23, david, (Wed Jul 25, 1:07 am)
Re: -mm merge plans for 2.6.23, Ingo Molnar, (Wed Jul 25, 1:15 am)
Re: -mm merge plans for 2.6.23, Rene Herman, (Wed Jul 25, 1:18 am)
Re: -mm merge plans for 2.6.23, Ingo Molnar, (Wed Jul 25, 1:28 am)
Re: -mm merge plans for 2.6.23, Rene Herman, (Wed Jul 25, 1:29 am)
Re: -mm merge plans for 2.6.23, david, (Wed Jul 25, 1:31 am)
Re: -mm merge plans for 2.6.23, david, (Wed Jul 25, 1:33 am)
Re: -mm merge plans for 2.6.23, Rene Herman, (Wed Jul 25, 1:43 am)
Re: -mm merge plans for 2.6.23, Jesper Juhl, (Wed Jul 25, 3:41 am)
Re: -mm merge plans for 2.6.23, Rene Herman, (Wed Jul 25, 3:58 am)
Re: -mm merge plans for 2.6.23, Ingo Molnar, (Wed Jul 25, 4:34 am)
Re: -mm merge plans for 2.6.23, Rene Herman, (Wed Jul 25, 4:40 am)
Re: -mm merge plans for 2.6.23, Ingo Molnar, (Wed Jul 25, 4:50 am)
Re: -mm merge plans for 2.6.23, Ray Lee, (Wed Jul 25, 8:55 am)
Re: -mm merge plans for 2.6.23, Ray Lee, (Wed Jul 25, 9:02 am)
Re: -mm merge plans for 2.6.23, Valdis.Kletnieks, (Wed Jul 25, 9:08 am)
Re: -mm merge plans for 2.6.23, Ray Lee, (Wed Jul 25, 9:09 am)
Re: -mm merge plans for 2.6.23, Ray Lee, (Wed Jul 25, 9:19 am)
Re: -mm merge plans for 2.6.23, Frank A. Kingswood, (Wed Jul 25, 10:55 am)
Re: -mm merge plans for 2.6.23, Al Boldi, (Wed Jul 25, 1:16 pm)
Re: -mm merge plans for 2.6.23, Andi Kleen, (Wed Jul 25, 1:46 pm)
Re: -mm merge plans for 2.6.23, Zan Lynx, (Wed Jul 25, 1:55 pm)
Re: -mm merge plans for 2.6.23, Ray Lee, (Wed Jul 25, 2:28 pm)
Re: -mm merge plans for 2.6.23, Paul Jackson, (Wed Jul 25, 3:05 pm)
Re: -mm merge plans for 2.6.23, Zan Lynx, (Wed Jul 25, 3:22 pm)
Re: -mm merge plans for 2.6.23, Jesper Juhl, (Wed Jul 25, 3:27 pm)
Re: [ck] Re: -mm merge plans for 2.6.23, Michael Chang, (Wed Jul 25, 3:28 pm)
Re: [ck] Re: -mm merge plans for 2.6.23, André Goddard Rosa, (Wed Jul 25, 4:45 pm)
Re: [ck] Re: -mm merge plans for 2.6.23, Matthew Hawkins, (Wed Jul 25, 6:15 pm)
Re: [ck] Re: -mm merge plans for 2.6.23, Ray Lee, (Wed Jul 25, 6:32 pm)
Re: [ck] Re: -mm merge plans for 2.6.23, Matthew Hawkins, (Wed Jul 25, 8:16 pm)
Re: -mm merge plans for 2.6.23, Andrew Morton, (Wed Jul 25, 9:57 pm)
Re: -mm merge plans for 2.6.23, Nick Piggin, (Wed Jul 25, 10:53 pm)
Re: -mm merge plans for 2.6.23, Andrew Morton, (Wed Jul 25, 11:06 pm)
Re: -mm merge plans for 2.6.23, Nick Piggin, (Wed Jul 25, 11:17 pm)
Re: -mm merge plans for 2.6.23, Ray Lee, (Wed Jul 25, 11:33 pm)
Re: -mm merge plans for 2.6.23, Andrew Morton, (Wed Jul 25, 11:50 pm)
Re: -mm merge plans for 2.6.23, Ray Lee, (Thu Jul 26, 12:43 am)
Re: -mm merge plans for 2.6.23, Nick Piggin, (Thu Jul 26, 12:59 am)
Re: -mm merge plans for 2.6.23, Frank Kingswood, (Thu Jul 26, 1:38 am)
Re: -mm merge plans for 2.6.23, Ingo Molnar, (Thu Jul 26, 2:20 am)
Re: -mm merge plans for 2.6.23, Andrew Morton, (Thu Jul 26, 2:34 am)
Re: [ck] Re: -mm merge plans for 2.6.23, Michael Chang, (Thu Jul 26, 7:19 am)
Re: [ck] Re: -mm merge plans for 2.6.23, Andrew Morton, (Thu Jul 26, 11:13 am)
Re: [ck] Re: -mm merge plans for 2.6.23, Dirk Schoebel, (Thu Jul 26, 3:04 pm)
Re: -mm merge plans for 2.6.23, Michael Chang, (Thu Jul 26, 3:30 pm)
Re: [ck] Re: -mm merge plans for 2.6.23, Dirk Schoebel, (Thu Jul 26, 3:33 pm)
Re: [ck] Re: -mm merge plans for 2.6.23, Jeff Garzik, (Thu Jul 26, 4:27 pm)
Re: [ck] Re: -mm merge plans for 2.6.23, david, (Thu Jul 26, 4:29 pm)
Re: [ck] Re: -mm merge plans for 2.6.23, Jeff Garzik, (Thu Jul 26, 4:39 pm)
Re: [ck] Re: -mm merge plans for 2.6.23, david, (Thu Jul 26, 5:12 pm)
Re: -mm merge plans for 2.6.23, Magnus Naeslund, (Thu Jul 26, 5:28 pm)
Re: -mm merge plans for 2.6.23, Matt Mackall, (Fri Jul 27, 5:12 pm)
Re: -mm merge plans for 2.6.23, Matt Mackall, (Fri Jul 27, 5:24 pm)
Re: -mm merge plans for 2.6.23, Daniel Cheng, (Fri Jul 27, 8:42 pm)
Re: -mm merge plans for 2.6.23, Stefan Richter, (Sat Jul 28, 2:35 am)
Re: [ck] Re: -mm merge plans for 2.6.23, Matthew Hawkins, (Tue Jul 31, 9:37 am)
CFS review, Roman Zippel, (Tue Jul 31, 8:41 pm)
Re: CFS review, Ingo Molnar, (Wed Aug 1, 12:12 am)
Re: CFS review, Mike Galbraith, (Wed Aug 1, 12:26 am)
Re: CFS review, Ingo Molnar, (Wed Aug 1, 12:30 am)
Re: CFS review, Mike Galbraith, (Wed Aug 1, 12:36 am)
Re: CFS review, Mike Galbraith, (Wed Aug 1, 1:49 am)
Re: CFS review, Ingo Molnar, (Wed Aug 1, 4:22 am)
Re: CFS review, Ingo Molnar, (Wed Aug 1, 4:37 am)
Re: CFS review, Roman Zippel, (Wed Aug 1, 5:21 am)
Re: CFS review, Ingo Molnar, (Wed Aug 1, 5:23 am)
Re: CFS review, Roman Zippel, (Wed Aug 1, 5:27 am)
Re: CFS review, Roman Zippel, (Wed Aug 1, 6:19 am)
Re: CFS review, Andi Kleen, (Wed Aug 1, 6:20 am)
Re: CFS review, Roman Zippel, (Wed Aug 1, 6:33 am)
Re: CFS review, Ingo Molnar, (Wed Aug 1, 6:59 am)
Re: CFS review, Arjan van de Ven, (Wed Aug 1, 7:04 am)
Re: CFS review, Ingo Molnar, (Wed Aug 1, 7:36 am)
Re: CFS review, Ingo Molnar, (Wed Aug 1, 7:40 am)
Re: CFS review, Peter Zijlstra, (Wed Aug 1, 7:49 am)
Re: CFS review, Ingo Molnar, (Wed Aug 1, 8:07 am)
Re: CFS review, Roman Zippel, (Wed Aug 1, 8:44 am)
Re: CFS review, Andi Kleen, (Wed Aug 1, 9:11 am)
Re: CFS review, Linus Torvalds, (Wed Aug 1, 9:27 am)
Re: CFS review, Andi Kleen, (Wed Aug 1, 10:10 am)
Re: CFS review, Ingo Molnar, (Wed Aug 1, 10:41 am)
Re: CFS review, Andi Kleen, (Wed Aug 1, 10:48 am)
Re: CFS review, Ingo Molnar, (Wed Aug 1, 10:50 am)
Re: CFS review, Roman Zippel, (Wed Aug 1, 11:01 am)
Re: CFS review, Roman Zippel, (Wed Aug 1, 11:14 am)
Re: CFS review, Ingo Molnar, (Wed Aug 1, 12:05 pm)
Re: CFS review, Linus Torvalds, (Wed Aug 1, 7:17 pm)
Re: CFS review, Willy Tarreau, (Wed Aug 1, 9:57 pm)
Re: CFS review, Andi Kleen, (Thu Aug 2, 3:43 am)
Re: CFS review, Ingo Molnar, (Thu Aug 2, 8:46 am)
Re: CFS review, Ingo Molnar, (Thu Aug 2, 9:09 am)
Re: CFS review, Roman Zippel, (Thu Aug 2, 10:36 am)
Re: CFS review, Daniel Phillips, (Thu Aug 2, 12:16 pm)
Re: CFS review, Roman Zippel, (Thu Aug 2, 3:38 pm)
Re: CFS review, Roman Zippel, (Thu Aug 2, 4:23 pm)
Re: CFS review, Matt Mackall, (Thu Aug 2, 8:04 pm)
Re: CFS review, Arjan van de Ven, (Thu Aug 2, 8:57 pm)
Re: CFS review, Willy Tarreau, (Thu Aug 2, 9:18 pm)
Re: CFS review, Arjan van de Ven, (Thu Aug 2, 9:31 pm)
Re: CFS review, Matt Mackall, (Thu Aug 2, 9:38 pm)
Re: CFS review, Willy Tarreau, (Thu Aug 2, 9:53 pm)
Re: CFS review, Ingo Molnar, (Fri Aug 3, 1:44 am)
Re: CFS review, Andi Kleen, (Fri Aug 3, 2:29 am)
Re: [ck] Re: -mm merge plans for 2.6.23, Nick Piggin, (Sun Aug 5, 7:11 pm)
Re: CFS review, Roman Zippel, (Thu Aug 9, 4:14 pm)
Re: CFS review, Ingo Molnar, (Thu Aug 9, 10:49 pm)
Re: CFS review, Mike Galbraith, (Fri Aug 10, 12:23 am)
Re: CFS review, Roman Zippel, (Fri Aug 10, 6:52 am)
Re: CFS review, Ingo Molnar, (Fri Aug 10, 7:18 am)
Re: CFS review, Mike Galbraith, (Fri Aug 10, 9:47 am)
Re: CFS review, Michael Chang, (Fri Aug 10, 9:54 am)
Re: CFS review, Roman Zippel, (Fri Aug 10, 10:19 am)
Re: CFS review, Roman Zippel, (Fri Aug 10, 10:25 am)
Re: CFS review, Ingo Molnar, (Fri Aug 10, 12:44 pm)
Re: CFS review, Willy Tarreau, (Fri Aug 10, 12:47 pm)
Re: CFS review, Roman Zippel, (Fri Aug 10, 2:15 pm)
Re: CFS review, Ingo Molnar, (Fri Aug 10, 2:36 pm)
Re: CFS review, Roman Zippel, (Fri Aug 10, 3:50 pm)
Re: CFS review, Ingo Molnar, (Fri Aug 10, 5:30 pm)
Re: CFS review, Willy Tarreau, (Fri Aug 10, 10:15 pm)
Re: CFS review, Willy Tarreau, (Fri Aug 10, 10:28 pm)
Re: CFS review, Ingo Molnar, (Sat Aug 11, 10:17 pm)
Re: CFS review, Roman Zippel, (Mon Aug 20, 3:19 pm)
Re: CFS review, Mike Galbraith, (Tue Aug 21, 12:33 am)
Re: CFS review, Ingo Molnar, (Tue Aug 21, 1:35 am)
Re: CFS review, Roman Zippel, (Tue Aug 21, 4:54 am)