CFS review

Previous message: [thread] [date] [author]
Next message: [thread] [date] [author]
From: Roman Zippel
Subject: CFS review
Date: Tuesday, July 31, 2007 - 8:41 pm

Hi,

On Sat, 14 Jul 2007, Mike Galbraith wrote:


I more meant serious attempts. At this point I'm not that much interested 
in a few localized optimizations, what I'm interested in is how can this 
optimized at the design level (e.g. how can arch information be used to 
simplify things). So I spent quite a bit of time looking through cfs and 
experimenting with some ideas. I want to put the main focus on the 
performance aspect, but there are a few other issues as well.


But first something else (especially for Ingo): I tried to be very careful 
with any claims made in this mail, but this of course doesn't exclude the 
possibility of errors, in which case I'd appreciate any corrections. Any 
explanations done in this mail don't imply that anyone needs any such 
explanations, they're done to keep things in context, so that interested 
readers have a chance to follow even if they don't have the complete 
background information. Any suggestions made don't imply that they have to 
be implemented like this, there are more an incentive for further 
discussion and I'm always interested in better solutions.


A first indication that something may not be quite right is the increase
in code size:

2.6.22:
   text    data     bss     dec     hex filename
  10150      24    3344   13518    34ce kernel/sched.o

recent git:
   text    data     bss     dec     hex filename
  14724     228    2020   16972    424c kernel/sched.o

That's i386 without stats/debug. A lot of the new code is in regularly
executed regions and it's often not exactly trivial code as cfs added
lots of heavy 64bit calculations. With the increased text comes
increased runtime memory usage, e.g. task_struct increased so that only
5 of them instead 6 fit now into 8KB.

Since sched-design-CFS.txt doesn't really go into any serious detail, so
the EEVDF paper was more helpful and after playing with the ideas a
little I noticed that the whole idea of fair scheduling can be explained
somewhat simpler and I'm a little surprised not finding it mentioned
anywhere.
So a different view on this is that the runtime of a task is simply
normalized and the virtual time (or fair_clock) is the weighted average of
these normalized runtimes. The advantage of normalization is that it
makes things comparable, once the normalized time values are equal each
task got its fair share. It's more obvious in the EEVDF paper, cfs makes
it a bit more complicated, as it uses the virtual time to calculate the
eligible runtime, but it doesn't maintain a per process virtual time
(fair_key is not quite the same).

Here we get to the first problem, cfs is not overly accurate at
maintaining a precise balance. First there a lot of rounding errors due
to constant conversion between normalized and non-normalized values and
the higher the update frequency the bigger the error. The effect of
this can be seen by running:

	while (1)
		sched_yield();

and watching the sched_debug output and watch the underrun counter go 
crazy. cfs thus needs the limiting to keep this misbehaviour under
control. The problem here is that it's not that difficult to hit one of
the many limits, which may change the behaviour and makes cfs hard to
predict how it will behave under different situations.

The next issue is scheduler granularity, here I don't quite understand
why the actual running time has no influence at all, which makes it
difficult to predict how much cpu time a process will get at a time
(even the comments only refer to the vmstat output). What is basically
used instead is the normalized time since it was enqueued and
practically it's a bit more complicated, as fair_key is not entirely a
normalized time value. If the wait_runtime value is positive, higher
prioritized tasks are given even more priority than they already get
from their larger wait_runtime value. The problem here is that this
triggers underruns and lower priority tasks get even less time.

Another issue is the sleep bonus given to sleeping tasks. A problem here
is that this can be exploited, if a job is spread over a few threads,
they can get more time relativ to other tasks, e.g. in this example
there are three tasks that run only for about 1ms every 3ms, but they
get far more time than should have gotten fairly:

 4544 roman     20   0  1796  520  432 S 32.1  0.4   0:21.08 lt
 4545 roman     20   0  1796  344  256 R 32.1  0.3   0:21.07 lt
 4546 roman     20   0  1796  344  256 R 31.7  0.3   0:21.07 lt
 4547 roman     20   0  1532  272  216 R  3.3  0.2   0:01.94 l

The debug output for this is also interesting:

            task   PID        tree-key         delta       waiting  switches  prio        sum-exec        sum-wait       sum-sleep    wait-overrun   wait-underrun
------------------------------------------------------------------------------------------------------------------------------------------------------------------
              lt  4544  42958653977764      -2800118       2797765     11753   120     11449444657       201615584     23750292211            9600               0
              lt  4545  42958653767067      -3010815       2759284     11747   120     11442604925       202910051     23746575676            9613               0
               l  4547  42958653330276      -3447606       1332892     32333   120      1035284848       -47628857               0               0           14247

Practically this means a few interactive tasks can steal quite a lot of
time from other tasks, which might try to get some work done. This may
be fine in Desktop environments, but I'm not sure it can be that easily
generalized. This can make cfs quite unfair, if waiting outside the
runqueue has more advantages than waiting in the runqueue.

Finally there is still the issue with the nice levels, where I still
think the massive increase overcompensates for adequate scheduling
classes, e.g. to give audio apps a fixed amount of time instead of a
relative portion.

Overall while cfs has a number of good ideas, I don't think it was
quite ready for a stable release. Maybe it's possible to fix this until
the release, but I certainly would have prefered less time pressure.
It's not just the small inaccuracies, it's also the significantly
increased complexity. In this regard I find the claim that cfs "has no
heuristics whatsoever" interesting, for that to be true I would expect a
little more accuracy, but that wouldn't be a big problem, if cfs were a
really fast and compact scheduler and here it's quite hard to argue that
cfs has been improvement in this particular area. Anyway, before Ingo
starts accussing me now of "negativism", let's look at some
possibilities how this could be improved.


To reduce the inaccuracies it's better to avoid conversion between 
normalized and real time values, so the first example program pretty much 
shows just that and demonstrate the very core of a scheduler. It maintains 
per task normalized times and uses only that to make the scheduling 
decision (it doesn't even need an explicit wait_runtime value). The nice 
thing about this how consistently it gives out time shares - unless there 
is a higher priority task, that task will get the maximum share, which 
makes the scheduling behaviour quite a bit more predictable.

The second example program is more complete (e.g. it demonstrates
adding/removing tasks) but it's based on the same basic idea. First the
floating point values are converted to fixed point values. To maintain
accuracy one has to take overflows into account, cfs currently avoids
overflows by throwing away (possibly important) information, but that
adds checks all over the place instead of dealing with them within the
design, so I consider this overflow avoidance a failed strategy - it
doesn't make anything simpler and creates problems elsewhere. Of course
the example program has its own limits, but in this case I can define
them, so that within them the scheduler will work correctly. The most
important limits are:

max normalized task time delta = max inverse weight * max cpu share
max normalized average time delta = max active tasks * max inverse weight * cpu share base

The first limit is used for comparing individual task and the second one
is used for maintaining the average.  With these limits it's possible to
choose the appropriate data types that can hold these maximum values and
then I don't really have to worry about overflows and I know the
scheduler is accurate without the need for a lot of extra checks.

The second example also adds a normalized average, but contrary to
current cfs it's not central to the design. An average is not needed to
give every task its fair share, but it can be used to make better
scheduling decisions to control _when_ a task gets its share. In this
example I provided two possibilities where it's used to schedule new
tasks, the first divides time into slices and sets a new task to the
start of that slice, the second gives the task a full time share
relative to the current average, but approximating the average (by
looking just at the min/max time) should work as well.
The average here is not a weighted average, a weighted average is a
little more complex to maintain accurately and has issues regarding
overflows, so I'm using a simple average, which is sufficient especially
since it's not a primary part of the scheduler anymore.

BTW above unfairness of sleeping tasks can be easily avoided in this
model by simply making sure that normalized time never goes backward.

The accuracy of this model makes it possible to further optimize the
code (it's really a key element, that's why I'm stressing it so much,
OTOH it's rather difficult to further optimize current cfs without
risking to make it worse).
For example the regular updates aren't really necessary, they can also
be done when necessary (i.e. when scheduling, where an update is
necessary anyway for precise accounting), the next schedule time can be
easily precalculated instead. OTOH the regular updates allow for very
cheap incremental updates, especially if one already knows that
scheduler clock has only limited resolution (because it's based on
jiffies), it becomes possible to use mostly 32bit values.

I hope the code example helps to further improve scheduler, I'm quite
aware that it doesn't implement everything, but this just means some of
the cfs design decisions need more explanation. I'm not really that
much interested in scheduler, I only want a small and fast scheduler and
that's some areas where cfs is no real improvement right now. cfs
practically obliterated my efforts I put into the ntp code to keep the
regular updates both cheap and highly precise...

bye, Roman
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)
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)