All of lore.kernel.org
 help / color / mirror / Atom feed
From: Ingo Molnar <mingo@elte.hu>
To: Linus Torvalds <torvalds@linux-foundation.org>
Cc: Roman Zippel <zippel@linux-m68k.org>,
	Andi Kleen <andi@firstfloor.org>, Mike Galbraith <efault@gmx.de>,
	Andrew Morton <akpm@linux-foundation.org>,
	linux-kernel@vger.kernel.org
Subject: Re: CFS review
Date: Thu, 2 Aug 2007 18:09:06 +0200	[thread overview]
Message-ID: <20070802160906.GA20377@elte.hu> (raw)
In-Reply-To: <alpine.LFD.0.999.0708011903300.3582@woody.linux-foundation.org>


* Linus Torvalds <torvalds@linux-foundation.org> wrote:

> It would be better, I suspect, to make the scheduler clock totally 
> distinct from the other clock sources (many architectures have per-cpu 
> cycle counters), and *not* try to even necessarily force it to be a 
> "time-based" one.

yeah. Note that i largely detached sched_clock() from the GTOD 
clocksources already in CFS, so part of this is already implemented and 
the intention is clear. For example, when the following happens:

   Marking TSC unstable due to: possible TSC halt in C2.
   Clocksource tsc unstable (delta = -71630388 ns)

sched_clock() does _not_ stop using the TSC. It is very careful with the 
TSC value, it checks against wraps, jumping, etc. (the whole rq_clock() 
wrapper around sched_clock()), but still tries to use the highest 
resolution time source possible, even if that time source is not good 
enough for GTOD's purposes anymore. So the scheduler clock is already 
largely detached from other clocksources in the system.

> It would still be true that something that is purely based on timer 
> ticks will always be liable to have rounding errors that will 
> inevitably mean that you don't get good fairness - tuning threads to 
> run less than a timer tick at a time would effectively "hide" them 
> from the scheduler accounting. However, in the end, I think that's 
> pretty much unavoidable.

Note that there is a relatively easy way of reducing the effects of such 
intentional coupling: turn on CONFIG_HIGH_RES_TIMERS. That decouples the 
scheduler tick from the jiffy tick and works against such 'exploits' - 
_even_ if the scheduler clock is otherwise low resolution. Also enable 
CONFIG_NO_HZ and the whole thing (of when the scheduler tick kicks in) 
becomes very hard to predict.

[ So while in a low-res clock situation scheduling will always be less 
  precise, with hres-timers and dynticks we have a natural 'random 
  sampler' mechanism so that no task can couple to the scheduler tick - 
  accidentally or even intentionally.

  The only 'unavoidable coupling' scenario is when the hardware has only 
  a single, low-resolution time sampling method. (that is pretty rare 
  though, even in the ultra-embedded space. If a box has two independent 
  hw clocks, even if they are low resolution, the timer tick can be
  decoupled from the scheduler tick.) ]

> I have to say, it would be interesting to try to use 32-bit 
> arithmetic.

yeah. We tried to do as much of that as possible, please read on below 
for (many) more details. There's no short summary i'm afraid :-/

Most importantly, CFS _already_ includes a number of measures that act 
against too frequent math. So even though you can see 64-bit math code 
in it, it's only rarely called if your clock has a low resolution - and 
that happens all automatically! (see below the details of this buffered 
delta math)

I have not seen Roman notice and mention any of these important details 
(perhaps because he was concentrating on finding faults in CFS - which a 
reviewer should do), but those measures are still very important for a 
complete, balanced picture, especially if one focuses on overhead on 
small boxes where the clock is low-resolution.

As Peter has said it in his detailed review of Roman's suggested 
algorithm, our main focus is on keeping total complexity down - and we 
are (of course) fundamentally open to changing the math behind CFS, we 
ourselves tweaked it numerous times, it's not cast into stone in any 
way, shape or form.

> I also think it's likely a mistake to do a nanosecond resolution. 
> That's part of what forces us to 64 bits, and it's just not even an 
> *interesting* resolution.

yes, very much not interesting, and we did not pick nanoseconds because 
we find anything "interesting" in that timescale. Firstly, before i go 
into the thinking behind nanoseconds, microseconds indeed have 
advantages too, so the choice was not easy, see the arguments in favor 
of microseconds below at: [*].

There are two fundamental reasons for nanoseconds:

 1) they _automatically_ act as a 'carry-over' for fractional math and
    thus reduce rounding errors. As Roman has noticed we dont care much
    about math rounding errors in the algorithm: _exactly_ because we
    *dont have to* care about rounding errors: we've got extra 10
    "uninteresting" bits in the time variables to offset the effects of 
    rounding errors and to carry over fractionals.

    ( Sidenote: in fact we had some simple extra anti-rounding-error 
      code in CFS and removed it because it made no measurable 
      difference. So even in the current structure there's additional 
      design reserves that we could tap before having to go to another 
      math model. All we need is a testcase that demonstrates rounding 
      errors. Roman's testcase was _not_ a demonstration of math 
      rounding errors, it was about clock granularity! )

 2) i tried microseconds resolution once (it's easy) but on fast hw it 
    already showed visible accounting/rounding artifacts in 
    high-frequency scheduling workloads, which, if hw gets just a little 
    bit faster, will become pain.

    ( Sidenote: if a workload is rescheduling once every few 
      microseconds, then it very much matters to the balance of things 
      whether there's a fundamental +- 1 microsecond skew on who gets 
      accounted what. In fact the placement of sched_clock() call within 
      schedule() is already visible in practice in some testcases, 
      whether the runqueue-spinlock acquire spinning time is accounted 
      to the 'previous' or the 'next' task - despite that time being 
      sub-microsecond on average. Going to microseconds makes this too 
      coarse. )

I.e. microseconds are on the limit today on fast hardware, and 
nanoseconds give us an automatic buffer against rounding errors.

On _slow_ hardware, with a low-resolution clock, i very much agree that 
we should not do too frequent math, and there are already four 
independent measures that we did in CFS to keep the math overhead down:

Firstly, CFS fundamentally "buffers the math" via deltas, _everywhere_ 
in the fastpath:

        if (unlikely(curr->delta_exec > sysctl_sched_stat_granularity)) {
                __update_curr(cfs_rq, curr, now);
                curr->delta_exec = 0;
        }

I.e. we only call the math routines if there was any delta. The beauty 
is that this "math buffering" works _automatically_ if there is a 
low-resolution sched_clock() present, because with a low-resolution 
clock a delta is only observed if a tick happens. I.e. in a 
high-frequency scheduling workload (the only place where scheduler 
overhead would be noticeable) all the CFS math is in a rare _slowpath_, 
that gets triggered only every 10 msecs or so! (if HZ=1000)

I.e. we didnt have to go down the (very painful) path of ktime_t 
split-model math and we didnt have to introduce a variable precision 
model for "scheduler time" either, because the delta math itself 
automatically buffers on slow boxes.

Secondly, note that all the key fastpath variables are already 32-bit 
(on 32-bit platforms):

        long                    wait_runtime;
        unsigned long           delta_fair_run;
        unsigned long           delta_fair_sleep;
        unsigned long           delta_exec;

The _timestamps_ are still 64-bit, but most of the actual math goes on 
in 32-bit delta variables. That's one of the advantages of doing deltas 
instead of absolute values.

Thirdly, if even this amount of buffering is not enough for an 
architecture, CFS also includes the sched_stat_granularity_ns tunable 
that allows the further reduction of the sampling frequency (and the 
frequency of us having to do the math) - so if the math overhead is a 
problem an architecture can set it.

Fourthly, in CFS there is a _single_ 64-bit division, and even for that 
division, the actual values passed to it are typically in a 32-bit 
range. Hence we've introduced the following optimization:

  static u64 div64_likely32(u64 divident, unsigned long divisor)
  {
  #if BITS_PER_LONG == 32
          if (likely(divident <= 0xffffffffULL))
                  return (u32)divident / divisor;
          do_div(divident, divisor);

          return divident;
  #else
          return divident / divisor;
  #endif
  }

Which, if the divident is in 32-bit range, does a 32-bit division.

About math related rounding errors mentioned by Roman (not to be 
confused with clock granularity rounding), in our analysis and in our 
experience rounding errors of the math were never an issue in CFS, due 
to the extra buffering that nanosecs gives - i tweaked it a bit around 
CFSv10 but it was unprovable to have any effect. That's one of the 
advantages of working with nanoseconds: the fundamental time unit 
includes about 10 "low bits" that can carry over much of the error and 
reduce rounding artifacts. And even that math rounding errors we believe 
centers around 0.

In Roman's variant of CFS's algorithm the variables are 32-bit, but the 
error is rolled forward in separate fract_* (fractional) 32-bit 
variables, so we still have 32+32==64 bit of stuff to handle. So we 
think that in the end such a 32+32 scheme would be more complex (and 
anyone who took a look at fs2.c would i think agree - it took Peter a 
day to decypher the math!) - but we'll be happy to be surprised with 
patches of course :-)

	Ingo

[*] the main advantage of microseconds would be that we could use "u32"
    throughout to carry around the "now" variable (timestamp). That 
    property of microseconds _is_ tempting and would reduce the 
    task_struct footprint as well. But if we did that it would have
    ripple effects: we'd have to resort to (pretty complex and 
    non-obvious) math to act against rounding errors. We'd either have 
    to carry the rounding error with us in separate 32-bit variables (in 
    essence creating 32+32 bit 64-bit variable), or we'd have to shift 
    up the microseconds by say ... 10 binary positions ... in essence 
    bringing us back into the same nanoseconds range. And then the 
    wraparound problem of microseconds - 72 hours is not _that_ 
    unrealistic to trigger intentionally, so we have to do _something_
    about it to inhibit infinite starvation. We experimented
    around with all this and the overwhelming conclusion (so far) was 
    that trying to reduce timestamps back to 32 bits is just not worth 
    it. _Deltas_ should, can and _are_ 32-bit values already, even in 
    the nanosecond model. So all the buffering and delta logic gives us
    most of the 32-bit advantages already, without the disadvantages of
    microseconds.

  parent reply	other threads:[~2007-08-02 16:09 UTC|newest]

Thread overview: 750+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2007-07-10  8:31 -mm merge plans for 2.6.23 Andrew Morton
2007-07-10  9:04 ` intel iommu (Re: -mm merge plans for 2.6.23) Jan Engelhardt
2007-07-10  9:07 ` -mm merge plans for 2.6.23 -- sys_fallocate Heiko Carstens
2007-07-10  9:22   ` Andrew Morton
2007-07-10 15:45     ` Theodore Tso
2007-07-10 17:27       ` Andrew Morton
2007-07-10 18:05       ` Heiko Carstens
2007-07-10 18:39         ` Amit K. Arora
2007-07-10 18:41         ` Andrew Morton
2007-07-11  9:36           ` testcases, was " Christoph Hellwig
2007-07-11  9:40             ` Nick Piggin
2007-07-11 10:36               ` Michael Kerrisk
2007-07-11  9:40           ` Andi Kleen
2007-07-10 18:20       ` Mark Fasheh
2007-07-10 20:28         ` Amit K. Arora
2007-07-10  9:17 ` cpuset-remove-sched-domain-hooks-from-cpusets Paul Jackson
2007-07-10 10:15 ` -mm merge plans for 2.6.23 Con Kolivas
2007-07-10 10:15   ` Con Kolivas
2007-07-11  1:02   ` Matthew Hawkins
2007-07-11  1:14     ` [ck] " Andrew Morton
2007-07-11  1:14       ` Andrew Morton
2007-07-11  1:52       ` André Goddard Rosa
2007-07-11  1:53         ` Fwd: [ck] " André Goddard Rosa
2007-07-11  4:25         ` André Goddard Rosa
2007-07-11  2:21       ` Ira Snyder
2007-07-11  3:37         ` timotheus
2007-07-11  2:54       ` Matthew Hawkins
2007-07-11  2:54         ` Matthew Hawkins
2007-07-11  5:18         ` Nick Piggin
2007-07-11  5:18           ` Nick Piggin
2007-07-11  5:47           ` Ray Lee
2007-07-11  5:47             ` Ray Lee
2007-07-11  5:54             ` Nick Piggin
2007-07-11  5:54               ` Nick Piggin
2007-07-11  6:04               ` Ray Lee
2007-07-11  6:04                 ` Ray Lee
2007-07-11  6:24                 ` Nick Piggin
2007-07-11  6:24                   ` Nick Piggin
2007-07-11  7:50                   ` swap prefetch (Re: -mm merge plans for 2.6.23) Ingo Molnar
2007-07-11  7:50                     ` Ingo Molnar
2007-07-11  6:00             ` [ck] Re: -mm merge plans for 2.6.23 Nick Piggin
2007-07-11  6:00               ` Nick Piggin
2007-07-11  3:59       ` Grzegorz Kulewski
2007-07-11  3:59         ` Grzegorz Kulewski
2007-07-11 12:26       ` Kevin Winchester
2007-07-11 12:36         ` Jesper Juhl
2007-07-11 12:36           ` Jesper Juhl
2007-07-12 12:06       ` Kacper Wysocki
2007-07-12 12:06         ` Kacper Wysocki
2007-07-12 12:35         ` Avuton Olrich
2007-07-12 12:35           ` Avuton Olrich
2007-07-22 23:11   ` Con Kolivas
2007-07-23 23:08   ` Jesper Juhl
2007-07-23 23:08     ` Jesper Juhl
2007-07-24  3:22     ` Nick Piggin
2007-07-24  3:22       ` Nick Piggin
2007-07-24  4:53       ` Ray Lee
2007-07-24  4:53         ` Ray Lee
2007-07-24  5:10         ` Jeremy Fitzhardinge
2007-07-24  5:10           ` Jeremy Fitzhardinge
2007-07-24  5:18           ` Ray Lee
2007-07-24  5:18             ` Ray Lee
2007-07-24  5:16         ` Nick Piggin
2007-07-24  5:16           ` Nick Piggin
2007-07-24 16:11           ` -mm merge plans for 2.6.23 - Completely Fair Swap Prefetch Frank Kingswood
2007-07-25  0:59             ` [ck] " Matthew Hawkins
2007-07-24 16:15           ` -mm merge plans for 2.6.23 Ray Lee
2007-07-24 16:15             ` Ray Lee
2007-07-24 17:46             ` [ck] " Rashkae
2007-07-25  4:06             ` Nick Piggin
2007-07-25  4:06               ` Nick Piggin
2007-07-25  4:55               ` Rene Herman
2007-07-25  4:55                 ` Rene Herman
2007-07-25  5:00                 ` Nick Piggin
2007-07-25  5:00                   ` Nick Piggin
2007-07-25  5:12                 ` david
2007-07-25  5:12                   ` david
2007-07-25  5:30                   ` Rene Herman
2007-07-25  5:30                     ` Rene Herman
2007-07-25  5:51                     ` david
2007-07-25  5:51                       ` david
2007-07-25  7:14                     ` Valdis.Kletnieks
2007-07-25  8:18                       ` Rene Herman
2007-07-25  8:18                         ` Rene Herman
2007-07-25  8:28                         ` Ingo Molnar
2007-07-25  8:28                           ` Ingo Molnar
2007-07-25  8:43                           ` Rene Herman
2007-07-25  8:43                             ` Rene Herman
2007-07-25 10:53                             ` [ck] " Jos Poortvliet
2007-07-25 11:06                               ` Nick Piggin
2007-07-25 11:06                                 ` Nick Piggin
2007-07-25 12:39                                 ` Jos Poortvliet
2007-07-25 13:30                               ` Rene Herman
2007-07-25 13:30                                 ` Rene Herman
2007-07-25 13:50                                 ` Ingo Molnar
2007-07-25 13:50                                   ` Ingo Molnar
2007-07-25 17:33                                   ` Satyam Sharma
2007-07-25 17:33                                     ` Satyam Sharma
2007-07-25 20:35                                     ` Ingo Molnar
2007-07-25 20:35                                       ` Ingo Molnar
2007-07-26  2:32                                       ` Bartlomiej Zolnierkiewicz
2007-07-26  2:32                                         ` Bartlomiej Zolnierkiewicz
2007-07-26  4:13                                         ` Jeff Garzik
2007-07-26  4:13                                           ` Jeff Garzik
2007-07-26 10:22                                           ` Bartlomiej Zolnierkiewicz
2007-07-26 10:22                                             ` Bartlomiej Zolnierkiewicz
2007-07-25 11:34                             ` Ingo Molnar
2007-07-25 11:34                               ` Ingo Molnar
2007-07-25 11:40                               ` Rene Herman
2007-07-25 11:40                                 ` Rene Herman
2007-07-25 11:50                                 ` Ingo Molnar
2007-07-25 11:50                                   ` Ingo Molnar
2007-07-25 16:08                               ` Valdis.Kletnieks
2007-07-25 22:05                               ` Paul Jackson
2007-07-25 22:05                                 ` Paul Jackson
2007-07-25 22:22                                 ` Zan Lynx
2007-07-25 22:27                                 ` Jesper Juhl
2007-07-25 22:27                                   ` Jesper Juhl
2007-07-25 22:28                                 ` [ck] " Michael Chang
2007-07-25 22:28                                   ` Michael Chang
2007-07-25 23:45                                 ` André Goddard Rosa
2007-07-25 23:45                                   ` André Goddard Rosa
2007-07-25 16:02                     ` Ray Lee
2007-07-25 16:02                       ` Ray Lee
2007-07-25 20:55                       ` Zan Lynx
2007-07-25 21:28                         ` Ray Lee
2007-07-25 21:28                           ` Ray Lee
2007-07-26  1:15                       ` [ck] " Matthew Hawkins
2007-07-26  1:15                         ` Matthew Hawkins
2007-07-26  1:32                         ` Ray Lee
2007-07-26  1:32                           ` Ray Lee
2007-07-26  3:16                           ` Matthew Hawkins
2007-07-26  3:16                             ` Matthew Hawkins
2007-07-26 22:30                         ` Michael Chang
2007-07-26 22:30                           ` Michael Chang
2007-07-25  5:30                 ` Eric St-Laurent
2007-07-25  5:30                   ` Eric St-Laurent
2007-07-25  5:37                   ` Nick Piggin
2007-07-25  5:37                     ` Nick Piggin
2007-07-25  5:53                     ` david
2007-07-25  5:53                       ` david
2007-07-25  6:04                       ` Nick Piggin
2007-07-25  6:04                         ` Nick Piggin
2007-07-25  6:23                         ` david
2007-07-25  6:23                           ` david
2007-07-25  7:25                           ` Nick Piggin
2007-07-25  7:25                             ` Nick Piggin
2007-07-25  7:49                             ` Ingo Molnar
2007-07-25  7:49                               ` Ingo Molnar
2007-07-25  7:58                               ` Nick Piggin
2007-07-25  7:58                                 ` Nick Piggin
2007-07-25  8:15                                 ` Ingo Molnar
2007-07-25  8:15                                   ` Ingo Molnar
2007-07-25 10:41                         ` Jesper Juhl
2007-07-25 10:41                           ` Jesper Juhl
2007-07-25  6:19                     ` [ck] " Matthew Hawkins
2007-07-25  6:19                       ` Matthew Hawkins
2007-07-25  6:30                       ` Nick Piggin
2007-07-25  6:30                         ` Nick Piggin
2007-07-25  6:47                       ` Mike Galbraith
2007-07-25  6:47                         ` Mike Galbraith
2007-07-25  7:19                         ` Eric St-Laurent
2007-07-25  7:19                           ` Eric St-Laurent
2007-07-25  6:44                     ` Eric St-Laurent
2007-07-25  6:44                       ` Eric St-Laurent
2007-07-25 16:09                     ` Ray Lee
2007-07-25 16:09                       ` Ray Lee
2007-07-26  4:57                       ` Andrew Morton
2007-07-26  4:57                         ` Andrew Morton
2007-07-26  5:53                         ` Nick Piggin
2007-07-26  5:53                           ` Nick Piggin
2007-07-26  6:06                           ` Andrew Morton
2007-07-26  6:06                             ` Andrew Morton
2007-07-26  6:17                             ` Nick Piggin
2007-07-26  6:17                               ` Nick Piggin
2007-07-26  6:33                         ` Ray Lee
2007-07-26  6:33                           ` Ray Lee
2007-07-26  6:50                           ` Andrew Morton
2007-07-26  6:50                             ` Andrew Morton
2007-07-26  7:43                             ` Ray Lee
2007-07-26  7:43                               ` Ray Lee
2007-07-26  7:59                               ` Nick Piggin
2007-07-26  7:59                                 ` Nick Piggin
2007-07-28  0:24                             ` Matt Mackall
2007-07-28  0:24                               ` Matt Mackall
2007-07-26 14:19                         ` [ck] " Michael Chang
2007-07-26 14:19                           ` Michael Chang
2007-07-26 18:13                           ` Andrew Morton
2007-07-26 18:13                             ` Andrew Morton
2007-07-26 22:04                             ` Dirk Schoebel
2007-07-26 22:33                               ` Dirk Schoebel
2007-07-26 23:27                                 ` Jeff Garzik
2007-07-26 23:27                                   ` Jeff Garzik
2007-07-26 23:29                                   ` david
2007-07-26 23:29                                     ` david
2007-07-26 23:39                                     ` Jeff Garzik
2007-07-26 23:39                                       ` Jeff Garzik
2007-07-27  0:12                                       ` david
2007-07-27  0:12                                         ` david
2007-07-28  0:12                         ` Matt Mackall
2007-07-28  0:12                           ` Matt Mackall
2007-07-28  3:42                         ` Daniel Cheng
2007-07-28  3:42                           ` Daniel Cheng
2007-07-28  9:35                           ` Stefan Richter
2007-07-28  9:35                             ` Stefan Richter
2007-07-25 17:55                     ` Frank A. Kingswood
2007-07-25 17:55                       ` Frank A. Kingswood
2007-07-25  6:09               ` [ck] " Matthew Hawkins
2007-07-25  6:09                 ` Matthew Hawkins
2007-07-25  6:18                 ` Nick Piggin
2007-07-25  6:18                   ` Nick Piggin
2007-07-25 16:19               ` Ray Lee
2007-07-25 16:19                 ` Ray Lee
2007-07-25 20:46               ` Andi Kleen
2007-07-25 20:46                 ` Andi Kleen
2007-07-26  8:38                 ` Frank Kingswood
2007-07-26  8:38                   ` Frank Kingswood
2007-07-26  9:20                   ` Ingo Molnar
2007-07-26  9:20                     ` Ingo Molnar
2007-07-26  9:34                     ` Andrew Morton
2007-07-26  9:34                       ` Andrew Morton
2007-07-26  9:40                       ` RFT: updatedb "morning after" problem [was: Re: -mm merge plans for 2.6.23] Ingo Molnar
2007-07-26  9:40                         ` Ingo Molnar
2007-07-26 10:09                         ` Andrew Morton
2007-07-26 10:09                           ` Andrew Morton
2007-07-26 10:24                           ` Ingo Molnar
2007-07-26 10:24                             ` Ingo Molnar
2007-07-27  0:33                             ` [ck] " Matthew Hawkins
2007-07-27  0:33                               ` Matthew Hawkins
2007-07-30  9:33                               ` Helge Hafting
2007-07-30  9:33                                 ` Helge Hafting
2007-07-26 10:27                           ` Ingo Molnar
2007-07-26 10:27                             ` Ingo Molnar
2007-07-26 10:38                             ` Andrew Morton
2007-07-26 10:38                               ` Andrew Morton
2007-07-26 12:46                           ` Mike Galbraith
2007-07-26 12:46                             ` Mike Galbraith
2007-07-26 18:05                             ` Andrew Morton
2007-07-26 18:05                               ` Andrew Morton
2007-07-27  5:12                               ` Mike Galbraith
2007-07-27  5:12                                 ` Mike Galbraith
2007-07-27  7:23                                 ` Mike Galbraith
2007-07-27  7:23                                   ` Mike Galbraith
2007-07-27  8:47                                   ` Andrew Morton
2007-07-27  8:47                                     ` Andrew Morton
2007-07-27  8:54                                     ` Al Viro
2007-07-27  8:54                                       ` Al Viro
2007-07-27  9:02                                       ` Andrew Morton
2007-07-27  9:02                                         ` Andrew Morton
2007-07-27  9:40                                     ` Mike Galbraith
2007-07-27  9:40                                       ` Mike Galbraith
2007-07-27 10:00                                     ` Andrew Morton
2007-07-27 10:00                                       ` Andrew Morton
2007-07-27 10:25                                       ` Mike Galbraith
2007-07-27 10:25                                         ` Mike Galbraith
2007-07-27 17:45                                         ` Daniel Hazelton
2007-07-27 17:45                                           ` Daniel Hazelton
2007-07-27 18:16                                           ` Rene Herman
2007-07-27 18:16                                             ` Rene Herman
2007-07-27 19:43                                             ` david
2007-07-27 19:43                                               ` david
2007-07-28  7:19                                               ` Rene Herman
2007-07-28  7:19                                                 ` Rene Herman
2007-07-28  8:55                                                 ` david
2007-07-28  8:55                                                   ` david
2007-07-28 10:11                                                   ` Rene Herman
2007-07-28 10:11                                                     ` Rene Herman
2007-07-28 11:21                                                     ` Alan Cox
2007-07-28 11:21                                                       ` Alan Cox
2007-07-28 16:29                                                       ` Ray Lee
2007-07-28 16:29                                                         ` Ray Lee
2007-07-28 21:03                                                       ` david
2007-07-28 21:03                                                         ` david
2007-07-29  8:11                                                       ` Rene Herman
2007-07-29  8:11                                                         ` Rene Herman
2007-07-29 13:12                                                         ` Alan Cox
2007-07-29 13:12                                                           ` Alan Cox
2007-07-29 14:07                                                           ` Rene Herman
2007-07-29 14:07                                                             ` Rene Herman
2007-07-29 14:58                                                             ` Ray Lee
2007-07-29 14:58                                                               ` Ray Lee
2007-07-29 14:59                                                               ` Rene Herman
2007-07-29 14:59                                                                 ` Rene Herman
2007-07-29 15:20                                                                 ` Ray Lee
2007-07-29 15:20                                                                   ` Ray Lee
2007-07-29 15:36                                                                   ` Rene Herman
2007-07-29 15:36                                                                     ` Rene Herman
2007-07-29 16:04                                                                     ` Ray Lee
2007-07-29 16:04                                                                       ` Ray Lee
2007-07-29 16:59                                                                       ` Rene Herman
2007-07-29 16:59                                                                         ` Rene Herman
2007-07-29 17:19                                                                         ` Ray Lee
2007-07-29 17:19                                                                           ` Ray Lee
2007-07-29 17:33                                                                           ` Rene Herman
2007-07-29 17:33                                                                             ` Rene Herman
2007-07-29 17:52                                                                             ` Ray Lee
2007-07-29 17:52                                                                               ` Ray Lee
2007-07-29 19:05                                                                               ` Rene Herman
2007-07-29 19:05                                                                                 ` Rene Herman
2007-07-29 17:53                                                                             ` Alan Cox
2007-07-29 17:53                                                                               ` Alan Cox
2007-07-29 19:33                                                                   ` Paul Jackson
2007-07-29 19:33                                                                     ` Paul Jackson
2007-07-29 20:00                                                                     ` Ray Lee
2007-07-29 20:00                                                                       ` Ray Lee
2007-07-29 20:18                                                                       ` Paul Jackson
2007-07-29 20:18                                                                         ` Paul Jackson
2007-07-29 20:23                                                                         ` Ray Lee
2007-07-29 20:23                                                                           ` Ray Lee
2007-07-29 21:06                                                                       ` Daniel Hazelton
2007-07-29 21:06                                                                         ` Daniel Hazelton
2007-07-28 21:00                                                     ` david
2007-07-28 21:00                                                       ` david
2007-07-29 10:09                                                       ` Rene Herman
2007-07-29 10:09                                                         ` Rene Herman
2007-07-29 11:41                                                         ` david
2007-07-29 11:41                                                           ` david
2007-07-29 14:01                                                           ` Rene Herman
2007-07-29 14:01                                                             ` Rene Herman
2007-07-29 21:19                                                             ` david
2007-07-29 21:19                                                               ` david
2007-08-06  2:14                                                               ` Nick Piggin
2007-08-06  2:14                                                                 ` Nick Piggin
2007-08-06  2:22                                                                 ` david
2007-08-06  2:22                                                                   ` david
2007-08-06  9:21                                                                   ` Nick Piggin
2007-08-06  9:21                                                                     ` Nick Piggin
2007-08-06  9:55                                                                     ` Paolo Ciarrocchi
2007-08-06  9:55                                                                       ` Paolo Ciarrocchi
2007-07-28 15:56                                                   ` Daniel Hazelton
2007-07-28 15:56                                                     ` Daniel Hazelton
2007-07-28 21:06                                                     ` david
2007-07-28 21:06                                                       ` david
2007-07-28 21:48                                                       ` Daniel Hazelton
2007-07-28 21:48                                                         ` Daniel Hazelton
2007-07-27 20:28                                             ` Daniel Hazelton
2007-07-27 20:28                                               ` Daniel Hazelton
2007-07-28  5:19                                               ` Rene Herman
2007-07-28  5:19                                                 ` Rene Herman
2007-07-27 23:15                                             ` Björn Steinbrink
2007-07-27 23:15                                               ` Björn Steinbrink
2007-07-27 23:29                                               ` Andi Kleen
2007-07-27 23:29                                                 ` Andi Kleen
2007-07-28  0:08                                                 ` Björn Steinbrink
2007-07-28  0:08                                                   ` Björn Steinbrink
2007-07-28  1:10                                                 ` Daniel Hazelton
2007-07-28  1:10                                                   ` Daniel Hazelton
2007-07-29 12:53                                                 ` Paul Jackson
2007-07-29 12:53                                                   ` Paul Jackson
2007-07-28  7:35                                               ` Rene Herman
2007-07-28  7:35                                                 ` Rene Herman
2007-07-28  8:51                                                 ` Rene Herman
2007-07-28  8:51                                                   ` Rene Herman
2007-07-27 22:08                                           ` Mike Galbraith
2007-07-27 22:08                                             ` Mike Galbraith
2007-07-27 22:51                                             ` Daniel Hazelton
2007-07-27 22:51                                               ` Daniel Hazelton
2007-07-28  7:48                                               ` Mike Galbraith
2007-07-28  7:48                                                 ` Mike Galbraith
2007-07-28 15:36                                                 ` Daniel Hazelton
2007-07-28 15:36                                                   ` Daniel Hazelton
2007-07-29  1:33                                     ` Rik van Riel
2007-07-29  1:33                                       ` Rik van Riel
2007-07-29  3:39                                       ` Andrew Morton
2007-07-29  3:39                                         ` Andrew Morton
2007-07-26 10:20                         ` Al Viro
2007-07-26 10:20                           ` Al Viro
2007-07-26 12:23                           ` Andi Kleen
2007-07-26 12:23                             ` Andi Kleen
2007-07-26 14:59                             ` Al Viro
2007-07-26 14:59                               ` Al Viro
2007-07-11 20:41                               ` Pavel Machek
2007-07-11 20:41                                 ` Pavel Machek
2007-07-27 19:19                           ` Paul Jackson
2007-07-27 19:19                             ` Paul Jackson
2007-07-26 13:05                         ` Fredrik Klasson
2007-07-31 16:37               ` [ck] Re: -mm merge plans for 2.6.23 Matthew Hawkins
2007-08-06  2:11                 ` Nick Piggin
2007-08-06  2:11                   ` Nick Piggin
2007-07-25  4:46             ` david
2007-07-25  4:46               ` david
2007-07-25  8:00               ` Rene Herman
2007-07-25  8:07                 ` david
2007-07-25  8:07                   ` david
2007-07-25  8:29                   ` Rene Herman
2007-07-25  8:29                     ` Rene Herman
2007-07-25  8:31                     ` david
2007-07-25  8:31                       ` david
2007-07-25  8:33                       ` david
2007-07-25  8:33                         ` david
2007-07-25 10:58                         ` Rene Herman
2007-07-25 10:58                           ` Rene Herman
2007-07-25 15:55               ` Ray Lee
2007-07-25 15:55                 ` Ray Lee
2007-07-25 20:16                 ` Al Boldi
2007-07-25 20:16                   ` Al Boldi
2007-07-27  0:28                   ` Magnus Naeslund
2007-07-27  0:28                     ` Magnus Naeslund
2007-07-24  5:18         ` Andrew Morton
2007-07-24  5:18           ` Andrew Morton
2007-07-24  6:01           ` Ray Lee
2007-07-24  6:01             ` Ray Lee
2007-07-24  6:10             ` Andrew Morton
2007-07-24  6:10               ` Andrew Morton
2007-07-24  9:38             ` Tilman Schmidt
2007-07-25  1:26           ` [ck] " Matthew Hawkins
2007-07-25  1:26             ` Matthew Hawkins
2007-07-25  1:35             ` David Miller
2007-07-25  1:35               ` David Miller, Matthew Hawkins
2007-07-24  0:08   ` Con Kolivas
2007-07-24  0:08     ` Con Kolivas
2007-07-10 10:52 ` containers (was Re: -mm merge plans for 2.6.23) Srivatsa Vaddagiri
2007-07-10 11:19   ` Ingo Molnar
2007-07-10 18:34   ` Paul Menage
2007-07-10 18:53     ` Andrew Morton
2007-07-10 19:05       ` Paul Menage
2007-07-11  4:55       ` Srivatsa Vaddagiri
2007-07-11  5:29         ` Andrew Morton
2007-07-11  6:03           ` Srivatsa Vaddagiri
2007-07-11  9:04           ` Ingo Molnar
2007-07-11  9:23             ` Paul Jackson
2007-07-11 10:03               ` Srivatsa Vaddagiri
2007-07-11 10:19                 ` Ingo Molnar
2007-07-11 11:39                   ` Srivatsa Vaddagiri
2007-07-11 11:42                     ` Paul Jackson
2007-07-11 12:06                       ` Peter Zijlstra
2007-07-11 17:03                         ` Paul Jackson
2007-07-11 18:47                           ` Peter Zijlstra
2007-07-11 12:30                     ` Srivatsa Vaddagiri
2007-07-11 11:10                 ` Paul Jackson
2007-07-11 11:24                   ` Peter Zijlstra
2007-07-11 11:30                     ` Peter Zijlstra
2007-07-11 13:14                       ` Srivatsa Vaddagiri
2007-07-11 19:44           ` Paul Menage
2007-07-12  5:39             ` Srivatsa Vaddagiri
2007-07-10 11:52 ` fallocate-implementation-on-i86-x86_64-and-powerpc.patch (was: " Theodore Tso
2007-07-10 17:15   ` Andrew Morton
2007-07-10 17:44     ` fallocate-implementation-on-i86-x86_64-and-powerpc.patch Jeff Garzik
2007-07-10 23:27       ` fallocate-implementation-on-i86-x86_64-and-powerpc.patch Paul Mackerras
2007-07-11  0:16         ` fallocate-implementation-on-i86-x86_64-and-powerpc.patch Andrew Morton
2007-07-11  0:50           ` fallocate-implementation-on-i86-x86_64-and-powerpc.patch Paul Mackerras
2007-07-11 15:39             ` fallocate-implementation-on-i86-x86_64-and-powerpc.patch Theodore Tso
2007-07-11 18:47               ` fallocate-implementation-on-i86-x86_64-and-powerpc.patch Heiko Carstens
2007-07-11 20:32                 ` fallocate-implementation-on-i86-x86_64-and-powerpc.patch Martin Schwidefsky
2007-07-10 19:07     ` fallocate-implementation-on-i86-x86_64-and-powerpc.patch (was: re: -mm merge plans for 2.6.23) Theodore Tso
2007-07-10 19:31       ` Andrew Morton
2007-07-10 12:37 ` clam Andy Whitcroft
2007-07-11  9:34   ` Re: -mm merge plans -- lumpy reclaim Andy Whitcroft
2007-07-11 16:46     ` Andrew Morton
2007-07-11 18:38       ` Andy Whitcroft
2007-07-16 10:37       ` Mel Gorman
2007-07-10 15:08 ` -mm merge plans for 2.6.23 Serge E. Hallyn
2007-07-10 15:11 ` Rafael J. Wysocki
2007-07-10 16:29 ` -mm merge plans for 2.6.23 (pcmcia) Randy Dunlap
2007-07-10 17:30   ` Andrew Morton
2007-07-10 16:31 ` -mm merge plans for 2.6.23 - ioat/dma engine Kok, Auke
2007-07-10 18:05   ` Nelson, Shannon
2007-07-10 18:47     ` Andrew Morton
2007-07-10 21:18       ` Nelson, Shannon
2007-07-10 17:42 ` ata and netdev (was Re: -mm merge plans for 2.6.23) Jeff Garzik
2007-07-10 18:24   ` Andrew Morton
2007-07-10 18:55     ` James Bottomley
2007-07-10 18:57     ` Jeff Garzik
2007-07-10 20:31     ` Sergei Shtylyov
2007-07-10 20:35       ` Andrew Morton
2007-07-11 16:47     ` Dan Faerch
2007-07-10 19:56   ` Sergei Shtylyov
2007-07-10 17:49 ` ext2 reservations (Re: " Alexey Dobriyan
2007-07-10 18:34 ` PCI probing changes Jesse Barnes
2007-07-10 18:55   ` Andrew Morton
2007-07-10 18:44 ` agp / cpufreq Dave Jones
2007-07-10 20:09 ` -mm merge plans for 2.6.23 Christoph Lameter
2007-07-11  9:42   ` Mel Gorman
2007-07-11 17:49     ` Christoph Lameter
2007-07-11 11:35 ` Christoph Hellwig
2007-07-11 11:39   ` David Woodhouse
2007-07-11 17:21     ` Andrew Morton
2007-07-11 17:28       ` Randy Dunlap
2007-07-11 11:37 ` scsi, was " Christoph Hellwig
2007-07-11 17:22   ` Andrew Morton
2007-07-11 11:39 ` buffered write patches, " Christoph Hellwig
2007-07-11 11:39   ` Christoph Hellwig
2007-07-11 17:23   ` Andrew Morton
2007-07-11 17:23     ` Andrew Morton
2007-07-11 11:55 ` Christoph Hellwig
2007-07-11 12:00 ` fallocate, " Christoph Hellwig
2007-07-11 12:23 ` lguest, " Christoph Hellwig
2007-07-11 12:23   ` Christoph Hellwig
2007-07-11 15:45   ` Randy Dunlap
2007-07-11 15:45     ` Randy Dunlap
2007-07-11 18:04   ` Andrew Morton
2007-07-11 18:04     ` Andrew Morton
2007-07-12  1:21   ` Rusty Russell
2007-07-12  1:21     ` Rusty Russell
2007-07-12  2:28     ` David Miller
2007-07-12  2:28       ` David Miller, Rusty Russell
2007-07-12  2:48       ` Rusty Russell
2007-07-12  2:48         ` Rusty Russell
2007-07-12  2:51         ` David Miller
2007-07-12  2:51           ` David Miller, Rusty Russell
2007-07-12  3:15           ` Rusty Russell
2007-07-12  3:15             ` Rusty Russell
2007-07-12  3:35             ` David Miller
2007-07-12  3:35               ` David Miller, Rusty Russell
2007-07-12  4:24         ` Andrew Morton
2007-07-12  4:24           ` Andrew Morton
2007-07-12  4:52           ` Rusty Russell
2007-07-12  4:52             ` Rusty Russell
2007-07-12 11:10             ` Avi Kivity
2007-07-12 11:10               ` Avi Kivity
2007-07-12 23:20               ` Rusty Russell
2007-07-19 17:27             ` Christoph Hellwig
2007-07-19 17:27               ` Christoph Hellwig
2007-07-20  3:27               ` Rusty Russell
2007-07-20  3:27                 ` Rusty Russell
2007-07-20  7:15                 ` Christoph Hellwig
2007-07-20  7:15                   ` Christoph Hellwig
2007-07-11 12:43 ` x86 status was " Andi Kleen
2007-07-11 17:33   ` Jesse Barnes
2007-07-11 17:42   ` Ingo Molnar
2007-07-11 21:02     ` Randy Dunlap
2007-07-11 21:39       ` Thomas Gleixner
2007-07-11 23:21         ` Randy Dunlap
2007-07-11 21:16     ` Andi Kleen
2007-07-11 21:46       ` Valdis.Kletnieks
2007-07-11 21:54         ` Chris Wright
2007-07-11 22:11           ` Valdis.Kletnieks
2007-07-11 22:20             ` Chris Wright
2007-07-11 22:33             ` Linus Torvalds
2007-07-11 22:12         ` Linus Torvalds
2007-07-11 21:46       ` Thomas Gleixner
2007-07-11 21:52         ` Chris Wright
2007-07-11 22:18         ` Andi Kleen
2007-07-11 21:46       ` Andrea Arcangeli
2007-07-11 22:09         ` Linus Torvalds
2007-07-12 15:36           ` Oleg Verych
2007-07-13  2:23           ` Roman Zippel
2007-07-13  4:40             ` Andrew Morton
2007-07-13  4:47             ` Mike Galbraith
2007-07-13 17:23               ` Roman Zippel
2007-07-13 19:43                 ` [PATCH] CFS: Fix missing digit off in wmult table Thomas Gleixner
2007-07-16  6:18                   ` James Bruce
2007-07-16  7:06                     ` Ingo Molnar
2007-07-16  7:41                       ` Ingo Molnar
2007-07-16 15:02                         ` James Bruce
2007-07-16 10:18                       ` Roman Zippel
2007-07-16 11:20                         ` Ingo Molnar
2007-07-16 11:58                           ` Roman Zippel
2007-07-16 12:12                             ` Ingo Molnar
2007-07-16 12:42                               ` Roman Zippel
2007-07-16 13:40                                 ` Ingo Molnar
2007-07-16 14:01                                   ` Roman Zippel
2007-07-16 20:31                                     ` Matt Mackall
2007-07-16 21:18                                       ` Ingo Molnar
2007-07-16 22:13                                         ` Roman Zippel
2007-07-16 22:29                                           ` Ingo Molnar
2007-07-17  0:02                                             ` Roman Zippel
2007-07-17  3:20                                               ` Roman Zippel
2007-07-17  8:02                                                 ` Ingo Molnar
2007-07-17 14:06                                                   ` Roman Zippel
2007-07-18 10:40                                                     ` Ingo Molnar
2007-07-18 12:40                                                       ` Roman Zippel
2007-07-18 16:17                                                         ` Ingo Molnar
2007-07-20 13:38                                                           ` Roman Zippel
2007-07-16 21:25                                       ` Roman Zippel
2007-07-17  7:53                                         ` Ingo Molnar
2007-07-17 15:12                                           ` Roman Zippel
2007-07-16 17:47                             ` Linus Torvalds
2007-07-16 18:12                               ` Roman Zippel
2007-07-18 10:27                               ` Peter Zijlstra
2007-07-18 12:45                                 ` Roman Zippel
2007-07-18 12:52                                   ` Peter Zijlstra
2007-07-18 12:59                                     ` Ingo Molnar
2007-07-18 13:07                                     ` Roman Zippel
2007-07-18 13:27                                       ` Peter Zijlstra
2007-07-18 13:58                                         ` Roman Zippel
2007-07-18 13:48                                       ` Ingo Molnar
2007-07-18 14:14                                         ` Roman Zippel
2007-07-18 16:02                                           ` Ingo Molnar
2007-07-20 15:03                                             ` Roman Zippel
2007-07-18 13:26                                     ` Roman Zippel
2007-07-18 13:31                                       ` Peter Zijlstra
2007-07-14  5:04                 ` x86 status was Re: -mm merge plans for 2.6.23 Mike Galbraith
2007-08-01  3:41                   ` CFS review Roman Zippel
2007-08-01  7:12                     ` Ingo Molnar
2007-08-01  7:26                       ` Mike Galbraith
2007-08-01  7:30                         ` Ingo Molnar
2007-08-01  7:36                           ` Mike Galbraith
2007-08-01  8:49                             ` Mike Galbraith
2007-08-01 13:19                       ` Roman Zippel
2007-08-01 15:07                         ` Ingo Molnar
2007-08-01 17:10                           ` Andi Kleen
2007-08-01 16:27                             ` Linus Torvalds
2007-08-01 17:48                               ` Andi Kleen
2007-08-01 17:50                               ` Ingo Molnar
2007-08-01 18:01                                 ` Roman Zippel
2007-08-01 19:05                                   ` Ingo Molnar
2007-08-09 23:14                                     ` Roman Zippel
2007-08-10  5:49                                       ` Ingo Molnar
2007-08-10 13:52                                         ` Roman Zippel
2007-08-10 14:18                                           ` Ingo Molnar
2007-08-10 16:47                                           ` Mike Galbraith
2007-08-10 17:19                                             ` Roman Zippel
2007-08-10 16:54                                           ` Michael Chang
2007-08-10 17:25                                             ` Roman Zippel
2007-08-10 19:44                                               ` Ingo Molnar
2007-08-10 19:47                                               ` Willy Tarreau
2007-08-10 21:15                                                 ` Roman Zippel
2007-08-10 21:36                                                   ` Ingo Molnar
2007-08-10 22:50                                                     ` Roman Zippel
2007-08-11  5:28                                                       ` Willy Tarreau
2007-08-12  5:17                                                         ` Ingo Molnar
2007-08-11  0:30                                                     ` Ingo Molnar
2007-08-20 22:19                                                       ` Roman Zippel
2007-08-21  7:33                                                         ` Mike Galbraith
2007-08-21  8:35                                                           ` Ingo Molnar
2007-08-21 11:54                                                           ` Roman Zippel
2007-08-11  5:15                                                   ` Willy Tarreau
2007-08-10  7:23                                       ` Mike Galbraith
2007-08-01 11:22                     ` Ingo Molnar
2007-08-01 12:21                       ` Roman Zippel
2007-08-01 12:23                         ` Ingo Molnar
2007-08-01 13:59                         ` Ingo Molnar
2007-08-01 14:04                           ` Arjan van de Ven
2007-08-01 15:44                           ` Roman Zippel
2007-08-01 17:41                             ` Ingo Molnar
2007-08-01 18:14                               ` Roman Zippel
2007-08-03  3:04                       ` Matt Mackall
2007-08-03  3:57                         ` Arjan van de Ven
2007-08-03  4:18                           ` Willy Tarreau
2007-08-03  4:31                             ` Arjan van de Ven
2007-08-03  4:53                               ` Willy Tarreau
2007-08-03  4:38                           ` Matt Mackall
2007-08-03  8:44                             ` Ingo Molnar
2007-08-03  9:29                             ` Andi Kleen
2007-08-01 11:37                     ` Ingo Molnar
2007-08-01 12:27                       ` Roman Zippel
2007-08-01 13:20                     ` Andi Kleen
2007-08-01 13:33                       ` Roman Zippel
2007-08-01 14:36                         ` Ingo Molnar
2007-08-01 16:11                           ` Andi Kleen
2007-08-02  2:17                         ` Linus Torvalds
2007-08-02  4:57                           ` Willy Tarreau
2007-08-02 10:43                             ` Andi Kleen
2007-08-02 10:07                               ` Willy Tarreau
2007-08-02 16:09                           ` Ingo Molnar [this message]
2007-08-02 22:38                             ` Roman Zippel
2007-08-02 19:16                           ` Daniel Phillips
2007-08-02 23:23                           ` Roman Zippel
2007-08-01 14:40                     ` Ingo Molnar
2007-08-01 14:49                     ` Peter Zijlstra
2007-08-02 17:36                       ` Roman Zippel
2007-08-02 15:46                     ` Ingo Molnar
2007-07-11 21:42     ` x86 status was Re: -mm merge plans for 2.6.23 Linus Torvalds
2007-07-11 22:04       ` Thomas Gleixner
2007-07-11 22:20         ` Linus Torvalds
2007-07-11 22:50           ` Thomas Gleixner
2007-07-11 23:03             ` Chris Wright
2007-07-11 23:07             ` Linus Torvalds
2007-07-11 23:29               ` Thomas Gleixner
2007-07-11 23:36               ` Andi Kleen
2007-07-11 23:48                 ` Thomas Gleixner
2007-07-11 23:58                 ` Ingo Molnar
2007-07-12  0:07                   ` Andi Kleen
2007-07-12  0:15                     ` Chris Wright
2007-07-12  0:18                     ` Ingo Molnar
2007-07-12  0:37                       ` Andi Kleen
2007-07-12 20:38             ` Matt Mackall
2007-07-11 22:51           ` Chris Wright
2007-07-11 22:58             ` Linus Torvalds
2007-07-12  2:53               ` Arjan van de Ven
2007-07-11 23:19       ` Ingo Molnar
2007-07-11 23:45         ` Linus Torvalds
2007-07-11 18:14   ` Jeremy Fitzhardinge
2007-07-12 19:33   ` Christoph Lameter
2007-07-12 20:38     ` Andi Kleen
2007-07-11 23:03 ` generic clockevents/ (hr)time(r) patches " Thomas Gleixner
2007-07-11 23:57   ` Andrew Morton
2007-07-12  0:04     ` Thomas Gleixner
2007-07-12  0:17       ` [stable] " Chris Wright
2007-07-12  0:43       ` Andi Kleen
2007-07-12  0:46         ` [stable] " Chris Wright
2007-07-11 23:59   ` Andi Kleen
2007-07-12  0:33     ` Andrew Morton
2007-07-12  0:54 ` fault vs invalidate race (Re: -mm merge plans for 2.6.23) Nick Piggin
2007-07-12  0:54   ` Nick Piggin
2007-07-12  2:31   ` block_page_mkwrite? (Re: fault vs invalidate race (Re: -mm merge plans for 2.6.23)) David Chinner
2007-07-12  2:31     ` David Chinner
2007-07-12  2:42     ` Nick Piggin
2007-07-12  2:42       ` Nick Piggin
2007-07-13  9:46 ` -mm merge plans for 2.6.23 Jan Engelhardt
2007-07-13 23:09   ` Tilman Schmidt
2007-07-14 10:02     ` Jan Engelhardt
     [not found]       ` <20070715131144.3467DFC040@xenon.ts.pxnet.com>
2007-07-18 18:18         ` [PATCH] Use menuconfig objects - CONFIG_ISDN_I4L [v2] Jan Engelhardt
2007-07-18 18:22         ` [more PATCHes] Use menuconfig objects - CONFIG_ISDN_I4L Jan Engelhardt
2007-07-18 18:23           ` [patch 1/2] Use menuconfig objects - ISDN Jan Engelhardt
2007-07-18 18:23           ` [patch 2/2] Use menuconfig objects - ISDN/Gigaset Jan Engelhardt
2007-07-22  0:32           ` [more PATCHes] Use menuconfig objects - CONFIG_ISDN_I4L Tilman Schmidt
2007-07-17  8:55 ` unprivileged mounts (was: Re: -mm merge plans for 2.6.23) Andrew Morton
  -- strict thread matches above, loose matches on Subject: below --
2007-08-11 10:44 CFS review Al Boldi
2007-08-12  4:17 ` Ingo Molnar
2007-08-12 15:27   ` Al Boldi
2007-08-12 15:52     ` Ingo Molnar
2007-08-12 19:43       ` Al Boldi
2007-08-21 10:58         ` Ingo Molnar
2007-08-21 22:27           ` Al Boldi
2007-08-24 13:45             ` Ingo Molnar
2007-08-25 22:27               ` Al Boldi
2007-08-25 23:15                 ` Ingo Molnar
2007-08-26 16:27                   ` Al Boldi
2007-08-26 16:39                     ` Ingo Molnar
2007-08-27  4:06                       ` Al Boldi
2007-08-27 10:53                         ` Ingo Molnar
2007-08-27 14:46                           ` Al Boldi
2007-08-27 20:41                             ` Ingo Molnar
2007-08-28  4:37                               ` Al Boldi
2007-08-28  5:05                                 ` Linus Torvalds
2007-08-28  5:23                                   ` Al Boldi
2007-08-28  7:28                                     ` Mike Galbraith
2007-08-28  7:36                                       ` Ingo Molnar
2007-08-28 16:34                                     ` Linus Torvalds
2007-08-28 16:44                                       ` Arjan van de Ven
2007-08-28 16:45                                       ` Ingo Molnar
2007-08-29  4:19                                         ` Al Boldi
2007-08-29  4:53                                           ` Ingo Molnar
2007-08-29  5:58                                             ` Al Boldi
2007-08-29  6:43                                               ` Ingo Molnar
2007-08-28 20:46                                   ` Valdis.Kletnieks
2007-08-28  7:43                                 ` Xavier Bestel
2007-08-28  8:02                                   ` Ingo Molnar
2007-08-28 19:19                                     ` Willy Tarreau
2007-08-28 19:55                                       ` Ingo Molnar
2007-08-29  4:18                                 ` Ingo Molnar
2007-08-29  4:29                                   ` Keith Packard
2007-08-29  4:46                                     ` Ingo Molnar
2007-08-29  7:57                                       ` Keith Packard
2007-08-29  8:04                                         ` Ingo Molnar
2007-08-29  8:53                                           ` Al Boldi
2007-08-29 15:57                                           ` Keith Packard
2007-08-29 19:56                                             ` Rene Herman
2007-08-30  7:05                                               ` Rene Herman
2007-08-30  7:20                                                 ` Ingo Molnar
2007-08-31  6:46                                                 ` Tilman Sauerbeck
2007-08-30 16:06                                               ` Chuck Ebbert
2007-08-30 16:48                                                 ` Rene Herman
2007-08-29  4:40                                   ` Mike Galbraith
2007-08-29  3:42                   ` Bill Davidsen
2007-08-29  3:37                 ` Bill Davidsen
2007-08-29  3:45                   ` Ingo Molnar
2007-08-29 13:11                     ` Bill Davidsen

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20070802160906.GA20377@elte.hu \
    --to=mingo@elte.hu \
    --cc=akpm@linux-foundation.org \
    --cc=andi@firstfloor.org \
    --cc=efault@gmx.de \
    --cc=linux-kernel@vger.kernel.org \
    --cc=torvalds@linux-foundation.org \
    --cc=zippel@linux-m68k.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.