All of lore.kernel.org
 help / color / mirror / Atom feed
From: Nick Piggin <nickpiggin@yahoo.com.au>
To: Hugh Dickins <hugh@veritas.com>
Cc: Christoph Lameter <clameter@sgi.com>,
	Linus Torvalds <torvalds@osdl.org>, Andrew Morton <akpm@osdl.org>,
	Benjamin Herrenschmidt <benh@kernel.crashing.org>,
	linux-mm@kvack.org, linux-ia64@vger.kernel.org,
	linux-kernel@vger.kernel.org
Subject: Re: page fault scalability patch V12 [0/7]: Overview and performance
Date: Fri, 10 Dec 2004 04:26:15 +0000	[thread overview]
Message-ID: <41B92567.8070809@yahoo.com.au> (raw)
In-Reply-To: <Pine.LNX.4.44.0412091830580.17648-300000@localhost.localdomain>

Hugh Dickins wrote:
> On Wed, 1 Dec 2004, Christoph Lameter wrote:
> 
>>Changes from V11->V12 of this patch:
>>- dump sloppy_rss in favor of list_rss (Linus' proposal)
>>- keep up against current Linus tree (patch is based on 2.6.10-rc2-bk14)
>>
>>This is a series of patches that increases the scalability of
>>the page fault handler for SMP. Here are some performance results
>>on a machine with 512 processors allocating 32 GB with an increasing
>>number of threads (that are assigned a processor each).
> 
> 
> Your V12 patches would apply well to 2.6.10-rc3, except that (as noted
> before) your mailer or whatever is eating trailing whitespace: trivial
> patch attached to apply before yours, removing that whitespace so yours
> apply.  But what your patches need to apply to would be 2.6.10-mm.
> 
> Your i386 HIGHMEM64G 3level ptep_cmpxchg forgets to use cmpxchg8b, would
> have tested out okay up to 4GB but not above: trivial patch attached.
> 

That looks obviously correct. Probably the reason why Martin was
getting crashes.

[snip]

> Moving to the main patch, 1/7, the major issue I see there is the way
> do_anonymous_page does update_mmu_cache after setting the pte, without
> any page_table_lock to bracket them together.  Obviously no problem on
> architectures where update_mmu_cache is a no-op!  But although there's
> been plenty of discussion, particularly with Ben and Nick, I've not
> noticed anything to guarantee that as safe on all architectures.  I do
> think it's fine for you to post your patches before completing hooks in
> all the arches, but isn't this a significant issue which needs to be
> sorted before your patches go into -mm?  You hazily refer to such issues
> in 0/7, but now you need to work with arch maintainers to settle them
> and show the patches.
> 

Yep, the update_mmu_cache issue is real. There is a parallel problem
that is update_mmu_cache can be called on a pte who's page has since
been evicted and reused. Again, that looks safe on IA64, but maybe
not on other architectures.

It can be solved by moving lru_cache_add to after update_mmu_cache in
all cases but the "update accessed bit" type fault. I solved that by
simply defining that out for architectures that don't need it - a raced
fault will simply get repeated if need be.

> A lesser issue with the reordering in do_anonymous_page: don't you need
> to move the lru_cache_add_active after the page_add_anon_rmap, to avoid
> the very slight chance that vmscan will pick the page off the LRU and
> unmap it before you've counted it in, hitting page_remove_rmap's
> BUG_ON(page_mapcount(page) < 0)?
> 

That's what I had been doing too. Seems to be the right way to go.

> (I do wonder why do_anonymous_page calls mark_page_accessed as well as
> lru_cache_add_active.  The other instances of lru_cache_add_active for
> an anonymous page don't mark_page_accessed i.e. SetPageReferenced too,
> why here?  But that's nothing new with your patch, and although you've
> reordered the calls, the final page state is the same as before.)
> 
> Where handle_pte_fault does "entry = *pte" without page_table_lock:
> you're quite right to passing down precisely that entry to the fault
> handlers below, but there's still a problem on the 32bit architectures
> supporting 64bit ptes (i386, mips, ppc), that the upper and lower ints
> of entry may be out of synch.  Not a problem for do_anonymous_page, or
> anything else relying on ptep_cmpxchg to check; but a problem for
> do_wp_page (which could find !pfn_valid and kill the process) and
> probably others (harder to think through).  Your 4/7 patch for i386 has
> an unused atomic get_64bit function from Nick, I think you'll have to
> define a get_pte_atomic macro and use get_64bit in its 64-on-32 cases.
> 

Indeed. This was a real problem for my patch, definitely.

> Hmm, that will only work if you're using atomic set_64bit rather than
> relying on page_table_lock in the complementary places which matter.
> Which I believe you are indeed doing in your 3level set_pte.  Shouldn't
> __set_64bit be using LOCK_PREFIX like __get_64bit, instead of lock?
> 

That's what I was wondering. It could be that the actual 64-bit store is
still atomic without the lock prefix (just not the entire rmw), which I
think would be sufficient.

In that case, get_64bit may be able to drop the lock prefix as well.

WARNING: multiple messages have this Message-ID (diff)
From: Nick Piggin <nickpiggin@yahoo.com.au>
To: Hugh Dickins <hugh@veritas.com>
Cc: Christoph Lameter <clameter@sgi.com>,
	Linus Torvalds <torvalds@osdl.org>, Andrew Morton <akpm@osdl.org>,
	Benjamin Herrenschmidt <benh@kernel.crashing.org>,
	linux-mm@kvack.org, linux-ia64@vger.kernel.org,
	linux-kernel@vger.kernel.org
Subject: Re: page fault scalability patch V12 [0/7]: Overview and performance tests
Date: Fri, 10 Dec 2004 15:26:15 +1100	[thread overview]
Message-ID: <41B92567.8070809@yahoo.com.au> (raw)
In-Reply-To: <Pine.LNX.4.44.0412091830580.17648-300000@localhost.localdomain>

Hugh Dickins wrote:
> On Wed, 1 Dec 2004, Christoph Lameter wrote:
> 
>>Changes from V11->V12 of this patch:
>>- dump sloppy_rss in favor of list_rss (Linus' proposal)
>>- keep up against current Linus tree (patch is based on 2.6.10-rc2-bk14)
>>
>>This is a series of patches that increases the scalability of
>>the page fault handler for SMP. Here are some performance results
>>on a machine with 512 processors allocating 32 GB with an increasing
>>number of threads (that are assigned a processor each).
> 
> 
> Your V12 patches would apply well to 2.6.10-rc3, except that (as noted
> before) your mailer or whatever is eating trailing whitespace: trivial
> patch attached to apply before yours, removing that whitespace so yours
> apply.  But what your patches need to apply to would be 2.6.10-mm.
> 
> Your i386 HIGHMEM64G 3level ptep_cmpxchg forgets to use cmpxchg8b, would
> have tested out okay up to 4GB but not above: trivial patch attached.
> 

That looks obviously correct. Probably the reason why Martin was
getting crashes.

[snip]

> Moving to the main patch, 1/7, the major issue I see there is the way
> do_anonymous_page does update_mmu_cache after setting the pte, without
> any page_table_lock to bracket them together.  Obviously no problem on
> architectures where update_mmu_cache is a no-op!  But although there's
> been plenty of discussion, particularly with Ben and Nick, I've not
> noticed anything to guarantee that as safe on all architectures.  I do
> think it's fine for you to post your patches before completing hooks in
> all the arches, but isn't this a significant issue which needs to be
> sorted before your patches go into -mm?  You hazily refer to such issues
> in 0/7, but now you need to work with arch maintainers to settle them
> and show the patches.
> 

Yep, the update_mmu_cache issue is real. There is a parallel problem
that is update_mmu_cache can be called on a pte who's page has since
been evicted and reused. Again, that looks safe on IA64, but maybe
not on other architectures.

It can be solved by moving lru_cache_add to after update_mmu_cache in
all cases but the "update accessed bit" type fault. I solved that by
simply defining that out for architectures that don't need it - a raced
fault will simply get repeated if need be.

> A lesser issue with the reordering in do_anonymous_page: don't you need
> to move the lru_cache_add_active after the page_add_anon_rmap, to avoid
> the very slight chance that vmscan will pick the page off the LRU and
> unmap it before you've counted it in, hitting page_remove_rmap's
> BUG_ON(page_mapcount(page) < 0)?
> 

That's what I had been doing too. Seems to be the right way to go.

> (I do wonder why do_anonymous_page calls mark_page_accessed as well as
> lru_cache_add_active.  The other instances of lru_cache_add_active for
> an anonymous page don't mark_page_accessed i.e. SetPageReferenced too,
> why here?  But that's nothing new with your patch, and although you've
> reordered the calls, the final page state is the same as before.)
> 
> Where handle_pte_fault does "entry = *pte" without page_table_lock:
> you're quite right to passing down precisely that entry to the fault
> handlers below, but there's still a problem on the 32bit architectures
> supporting 64bit ptes (i386, mips, ppc), that the upper and lower ints
> of entry may be out of synch.  Not a problem for do_anonymous_page, or
> anything else relying on ptep_cmpxchg to check; but a problem for
> do_wp_page (which could find !pfn_valid and kill the process) and
> probably others (harder to think through).  Your 4/7 patch for i386 has
> an unused atomic get_64bit function from Nick, I think you'll have to
> define a get_pte_atomic macro and use get_64bit in its 64-on-32 cases.
> 

Indeed. This was a real problem for my patch, definitely.

> Hmm, that will only work if you're using atomic set_64bit rather than
> relying on page_table_lock in the complementary places which matter.
> Which I believe you are indeed doing in your 3level set_pte.  Shouldn't
> __set_64bit be using LOCK_PREFIX like __get_64bit, instead of lock?
> 

That's what I was wondering. It could be that the actual 64-bit store is
still atomic without the lock prefix (just not the entire rmw), which I
think would be sufficient.

In that case, get_64bit may be able to drop the lock prefix as well.

WARNING: multiple messages have this Message-ID (diff)
From: Nick Piggin <nickpiggin@yahoo.com.au>
To: Hugh Dickins <hugh@veritas.com>
Cc: Christoph Lameter <clameter@sgi.com>,
	Linus Torvalds <torvalds@osdl.org>, Andrew Morton <akpm@osdl.org>,
	Benjamin Herrenschmidt <benh@kernel.crashing.org>,
	linux-mm@kvack.org, linux-ia64@vger.kernel.org,
	linux-kernel@vger.kernel.org
Subject: Re: page fault scalability patch V12 [0/7]: Overview and performance tests
Date: Fri, 10 Dec 2004 15:26:15 +1100	[thread overview]
Message-ID: <41B92567.8070809@yahoo.com.au> (raw)
In-Reply-To: <Pine.LNX.4.44.0412091830580.17648-300000@localhost.localdomain>

Hugh Dickins wrote:
> On Wed, 1 Dec 2004, Christoph Lameter wrote:
> 
>>Changes from V11->V12 of this patch:
>>- dump sloppy_rss in favor of list_rss (Linus' proposal)
>>- keep up against current Linus tree (patch is based on 2.6.10-rc2-bk14)
>>
>>This is a series of patches that increases the scalability of
>>the page fault handler for SMP. Here are some performance results
>>on a machine with 512 processors allocating 32 GB with an increasing
>>number of threads (that are assigned a processor each).
> 
> 
> Your V12 patches would apply well to 2.6.10-rc3, except that (as noted
> before) your mailer or whatever is eating trailing whitespace: trivial
> patch attached to apply before yours, removing that whitespace so yours
> apply.  But what your patches need to apply to would be 2.6.10-mm.
> 
> Your i386 HIGHMEM64G 3level ptep_cmpxchg forgets to use cmpxchg8b, would
> have tested out okay up to 4GB but not above: trivial patch attached.
> 

That looks obviously correct. Probably the reason why Martin was
getting crashes.

[snip]

> Moving to the main patch, 1/7, the major issue I see there is the way
> do_anonymous_page does update_mmu_cache after setting the pte, without
> any page_table_lock to bracket them together.  Obviously no problem on
> architectures where update_mmu_cache is a no-op!  But although there's
> been plenty of discussion, particularly with Ben and Nick, I've not
> noticed anything to guarantee that as safe on all architectures.  I do
> think it's fine for you to post your patches before completing hooks in
> all the arches, but isn't this a significant issue which needs to be
> sorted before your patches go into -mm?  You hazily refer to such issues
> in 0/7, but now you need to work with arch maintainers to settle them
> and show the patches.
> 

Yep, the update_mmu_cache issue is real. There is a parallel problem
that is update_mmu_cache can be called on a pte who's page has since
been evicted and reused. Again, that looks safe on IA64, but maybe
not on other architectures.

It can be solved by moving lru_cache_add to after update_mmu_cache in
all cases but the "update accessed bit" type fault. I solved that by
simply defining that out for architectures that don't need it - a raced
fault will simply get repeated if need be.

> A lesser issue with the reordering in do_anonymous_page: don't you need
> to move the lru_cache_add_active after the page_add_anon_rmap, to avoid
> the very slight chance that vmscan will pick the page off the LRU and
> unmap it before you've counted it in, hitting page_remove_rmap's
> BUG_ON(page_mapcount(page) < 0)?
> 

That's what I had been doing too. Seems to be the right way to go.

> (I do wonder why do_anonymous_page calls mark_page_accessed as well as
> lru_cache_add_active.  The other instances of lru_cache_add_active for
> an anonymous page don't mark_page_accessed i.e. SetPageReferenced too,
> why here?  But that's nothing new with your patch, and although you've
> reordered the calls, the final page state is the same as before.)
> 
> Where handle_pte_fault does "entry = *pte" without page_table_lock:
> you're quite right to passing down precisely that entry to the fault
> handlers below, but there's still a problem on the 32bit architectures
> supporting 64bit ptes (i386, mips, ppc), that the upper and lower ints
> of entry may be out of synch.  Not a problem for do_anonymous_page, or
> anything else relying on ptep_cmpxchg to check; but a problem for
> do_wp_page (which could find !pfn_valid and kill the process) and
> probably others (harder to think through).  Your 4/7 patch for i386 has
> an unused atomic get_64bit function from Nick, I think you'll have to
> define a get_pte_atomic macro and use get_64bit in its 64-on-32 cases.
> 

Indeed. This was a real problem for my patch, definitely.

> Hmm, that will only work if you're using atomic set_64bit rather than
> relying on page_table_lock in the complementary places which matter.
> Which I believe you are indeed doing in your 3level set_pte.  Shouldn't
> __set_64bit be using LOCK_PREFIX like __get_64bit, instead of lock?
> 

That's what I was wondering. It could be that the actual 64-bit store is
still atomic without the lock prefix (just not the entire rmw), which I
think would be sufficient.

In that case, get_64bit may be able to drop the lock prefix as well.
--
To unsubscribe, send a message with 'unsubscribe linux-mm' in
the body to majordomo@kvack.org.  For more info on Linux MM,
see: http://www.linux-mm.org/ .
Don't email: <a href=mailto:"aart@kvack.org"> aart@kvack.org </a>

  parent reply	other threads:[~2004-12-10  4:26 UTC|newest]

Thread overview: 953+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
     [not found] <4189EC67.40601@yahoo.com.au>
     [not found] ` <Pine.LNX.4.58.0411040820250.8211@schroedinger.engr.sgi.com>
     [not found]   ` <418AD329.3000609@yahoo.com.au>
     [not found]     ` <Pine.LNX.4.58.0411041733270.11583@schroedinger.engr.sgi.com>
     [not found]       ` <418AE0F0.5050908@yahoo.com.au>
     [not found]         ` <418AE9BB.1000602@yahoo.com.au>
     [not found]           ` <1099622957.29587.101.camel@gaston>
     [not found]             ` <418C55A7.9030100@yahoo.com.au>
2004-11-06  9:28               ` removing mm->rss and mm->anon_rss from kernel? Christoph Lameter
2004-11-06  9:28                 ` Christoph Lameter
2004-11-06  9:48                 ` Nick Piggin
2004-11-06  9:59                   ` William Lee Irwin III
2004-11-06 16:10                     ` Christoph Lameter
2004-11-06 10:19                 ` Nick Piggin
2004-11-06 10:31                   ` William Lee Irwin III
2004-11-06 10:41                     ` Nick Piggin
2004-11-06 10:53                       ` William Lee Irwin III
2004-11-06 11:07                         ` Nick Piggin
2004-11-06 12:06                           ` William Lee Irwin III
2004-11-06 12:08                             ` Nick Piggin
2004-11-06 12:23                               ` William Lee Irwin III
2004-11-07  0:54                                 ` Nick Piggin
2004-11-07  1:11                                   ` William Lee Irwin III
2004-11-07  1:58                                     ` Nick Piggin
2004-11-07  2:25                                       ` William Lee Irwin III
2004-11-06 12:59                 ` Andi Kleen
2004-11-06 15:17                 ` Martin J. Bligh
2004-11-06 16:19                   ` Christoph Lameter
2004-11-06 16:19                     ` Christoph Lameter
2004-11-06 20:05                     ` William Lee Irwin III
2004-11-06 20:05                       ` William Lee Irwin III
2004-11-07 16:11                     ` Martin J. Bligh
2004-11-07 16:11                       ` Martin J. Bligh
2004-11-07 18:25                       ` Matthew Wilcox
2004-11-07 18:25                         ` Matthew Wilcox
2004-11-08 12:43                         ` Jesse Barnes
2004-11-08 12:43                           ` Jesse Barnes
2004-11-08 15:26                         ` Andi Kleen
2004-11-08 15:26                           ` Andi Kleen
2004-11-08 16:07                           ` Christoph Lameter
2004-11-08 16:07                             ` Christoph Lameter
2004-11-08 16:04                       ` Christoph Lameter
2004-11-08 16:04                         ` Christoph Lameter
2004-11-08 16:12                         ` Anton Blanchard
2004-11-08 16:12                           ` Anton Blanchard
2004-11-08 16:14                         ` Martin J. Bligh
2004-11-08 16:14                           ` Martin J. Bligh
2004-11-08 16:25                           ` Christoph Lameter
2004-11-08 16:25                             ` Christoph Lameter
2004-11-08 16:30                         ` Erich Focht
2004-11-08 16:30                           ` Erich Focht
2004-11-08 16:57                           ` Diego Calleja
2004-11-08 16:57                             ` Diego Calleja
2004-11-08 17:26                             ` Erich Focht
2004-11-08 17:26                               ` Erich Focht
2004-11-10 11:57                         ` Magnus Damm
2004-11-10 11:57                           ` Magnus Damm
2004-11-06 16:06                 ` Hugh Dickins
2004-11-06 16:52                   ` Christoph Lameter
2004-11-18 19:34                   ` another approach to rss : sloppy rss Christoph Lameter
2004-11-18 19:34                     ` Christoph Lameter
2004-11-19  1:09                     ` Nick Piggin
2004-11-19  1:14                       ` Christoph Lameter
2004-11-19  1:39                         ` Nick Piggin
2004-11-19  2:35                           ` Christoph Lameter
2004-11-19  6:00                             ` Nick Piggin
2004-11-19 19:21                               ` Christoph Lameter
2004-11-19 19:21                                 ` Christoph Lameter
2004-11-19 19:57                                 ` Robin Holt
2004-11-19 19:57                                   ` Robin Holt
2004-11-20  1:24                                   ` Nick Piggin
2004-11-20  1:24                                     ` Nick Piggin
2004-11-20  1:46                                     ` Robin Holt
2004-11-20  1:46                                       ` Robin Holt
2004-11-19  1:40                     ` fast path for anonymous memory allocation Christoph Lameter
2004-11-19  1:40                       ` Christoph Lameter
2004-11-19  2:19                       ` Nick Piggin
2004-11-19  2:19                         ` Nick Piggin
2004-11-19  2:38                         ` Christoph Lameter
2004-11-19  2:38                           ` Christoph Lameter
2004-11-19  2:44                           ` Nick Piggin
2004-11-19  2:44                             ` Nick Piggin
2004-11-19  3:28                             ` Christoph Lameter
2004-11-19  3:28                               ` Christoph Lameter
2004-11-19  7:07                               ` Benjamin Herrenschmidt
2004-11-19  7:07                                 ` Benjamin Herrenschmidt
2004-11-19 19:42                                 ` page fault scalability patch V11 [0/7]: overview Christoph Lameter
2004-11-19 19:42                                   ` Christoph Lameter
2004-11-19 19:42                                   ` Christoph Lameter
2004-11-19 19:43                                   ` page fault scalability patch V11 [1/7]: sloppy rss Christoph Lameter
2004-11-19 19:43                                     ` Christoph Lameter
2004-11-19 19:43                                     ` Christoph Lameter
2004-11-19 20:50                                     ` Hugh Dickins
2004-11-19 20:50                                       ` Hugh Dickins
2004-11-19 20:50                                       ` Hugh Dickins
2004-11-20  1:29                                       ` Christoph Lameter
2004-11-20  1:29                                         ` Christoph Lameter
2004-11-20  1:29                                         ` Christoph Lameter
2004-11-22 15:00                                     ` Hugh Dickins
2004-11-22 15:00                                       ` Hugh Dickins
2004-11-22 15:00                                       ` Hugh Dickins
2004-11-22 21:50                                       ` deferred rss update instead of " Christoph Lameter
2004-11-22 21:50                                         ` Christoph Lameter
2004-11-22 21:50                                         ` Christoph Lameter
2004-11-22 22:11                                         ` Andrew Morton
2004-11-22 22:11                                           ` Andrew Morton
2004-11-22 22:11                                           ` Andrew Morton
2004-11-22 22:13                                           ` Christoph Lameter
2004-11-22 22:13                                             ` Christoph Lameter
2004-11-22 22:13                                             ` Christoph Lameter
2004-11-22 22:17                                             ` Benjamin Herrenschmidt
2004-11-22 22:17                                               ` Benjamin Herrenschmidt
2004-11-22 22:17                                               ` Benjamin Herrenschmidt
2004-11-22 22:45                                             ` Andrew Morton
2004-11-22 22:45                                               ` Andrew Morton
2004-11-22 22:45                                               ` Andrew Morton
2004-11-22 22:48                                               ` Christoph Lameter
2004-11-22 22:48                                                 ` Christoph Lameter
2004-11-22 22:48                                                 ` Christoph Lameter
2004-11-22 23:09                                                 ` Nick Piggin
2004-11-22 23:09                                                   ` Nick Piggin
2004-11-22 23:09                                                   ` Nick Piggin
2004-11-22 23:13                                                   ` Christoph Lameter
2004-11-22 23:13                                                     ` Christoph Lameter
2004-11-22 23:13                                                     ` Christoph Lameter
2004-11-22 23:16                                                 ` Andrew Morton
2004-11-22 23:16                                                   ` Andrew Morton
2004-11-22 23:16                                                   ` Andrew Morton
2004-11-22 23:19                                                   ` Christoph Lameter
2004-11-22 23:19                                                     ` Christoph Lameter
2004-11-22 23:19                                                     ` Christoph Lameter
2004-11-22 22:22                                         ` Linus Torvalds
2004-11-22 22:22                                           ` Linus Torvalds
2004-11-22 22:22                                           ` Linus Torvalds
2004-11-22 22:27                                           ` Christoph Lameter
2004-11-22 22:27                                             ` Christoph Lameter
2004-11-22 22:27                                             ` Christoph Lameter
2004-11-22 22:40                                             ` Linus Torvalds
2004-11-22 22:40                                               ` Linus Torvalds
2004-11-22 22:40                                               ` Linus Torvalds
2004-12-01 23:41                                               ` page fault scalability patch V12 [0/7]: Overview and performance Christoph Lameter
2004-12-01 23:41                                                 ` page fault scalability patch V12 [0/7]: Overview and performance tests Christoph Lameter
2004-12-01 23:41                                                 ` Christoph Lameter
2004-12-01 23:42                                                 ` page fault scalability patch V12 [1/7]: Reduce use of thepage_table_lock Christoph Lameter
2004-12-01 23:42                                                   ` Christoph Lameter
2004-12-01 23:42                                                   ` Christoph Lameter
2004-12-01 23:42                                                 ` page fault scalability patch V12 [2/7]: atomic pte operations for Christoph Lameter
2004-12-01 23:42                                                   ` page fault scalability patch V12 [2/7]: atomic pte operations for ia64 Christoph Lameter
2004-12-01 23:42                                                   ` Christoph Lameter
2004-12-01 23:43                                                 ` page fault scalability patch V12 [3/7]: universal cmpxchg for i386 Christoph Lameter
2004-12-01 23:43                                                   ` Christoph Lameter
2004-12-01 23:43                                                   ` Christoph Lameter
2004-12-01 23:43                                                 ` page fault scalability patch V12 [4/7]: atomic pte operations for Christoph Lameter
2004-12-01 23:43                                                   ` page fault scalability patch V12 [4/7]: atomic pte operations for i386 Christoph Lameter
2004-12-01 23:43                                                   ` Christoph Lameter
2004-12-01 23:44                                                 ` page fault scalability patch V12 [5/7]: atomic pte operations for Christoph Lameter
2004-12-01 23:44                                                   ` page fault scalability patch V12 [5/7]: atomic pte operations for x86_64 Christoph Lameter
2004-12-01 23:44                                                   ` Christoph Lameter
2004-12-01 23:45                                                 ` page fault scalability patch V12 [6/7]: atomic pte operations for Christoph Lameter
2004-12-01 23:45                                                   ` page fault scalability patch V12 [6/7]: atomic pte operations for s390 Christoph Lameter
2004-12-01 23:45                                                   ` Christoph Lameter
2004-12-01 23:45                                                 ` page fault scalability patch V12 [7/7]: Split counter for rss Christoph Lameter
2004-12-01 23:45                                                   ` Christoph Lameter
2004-12-01 23:45                                                   ` Christoph Lameter
2005-01-04 19:35                                                   ` page fault scalability patch V14 [0/7]: Overview Christoph Lameter
2005-01-04 19:35                                                     ` Christoph Lameter
2005-01-04 19:35                                                     ` Christoph Lameter
2005-01-04 19:35                                                     ` page fault scalability patch V14 [1/7]: Avoid taking page_table_lock Christoph Lameter
2005-01-04 19:35                                                       ` Christoph Lameter
2005-01-04 19:35                                                       ` Christoph Lameter
2005-01-04 19:36                                                     ` page fault scalability patch V14 [2/7]: ia64 atomic pte operations Christoph Lameter
2005-01-04 19:36                                                       ` Christoph Lameter
2005-01-04 19:36                                                       ` Christoph Lameter
2005-01-04 19:37                                                     ` page fault scalability patch V14 [3/7]: i386 universal cmpxchg Christoph Lameter
2005-01-04 19:37                                                       ` Christoph Lameter
2005-01-04 19:37                                                       ` Christoph Lameter
2005-01-05 11:51                                                       ` Roman Zippel
2005-01-05 11:51                                                         ` Roman Zippel
2005-01-05 11:51                                                         ` Roman Zippel
2005-01-04 19:37                                                     ` page fault scalability patch V14 [4/7]: i386 atomic pte operations Christoph Lameter
2005-01-04 19:37                                                       ` Christoph Lameter
2005-01-04 19:37                                                       ` Christoph Lameter
2005-01-04 19:38                                                     ` page fault scalability patch V14 [5/7]: x86_64 " Christoph Lameter
2005-01-04 19:38                                                       ` Christoph Lameter
2005-01-04 19:38                                                       ` Christoph Lameter
2005-01-04 19:46                                                       ` page fault scalability patch V14 [5/7]: x86_64 atomic pte Andi Kleen
2005-01-04 19:46                                                         ` page fault scalability patch V14 [5/7]: x86_64 atomic pte operations Andi Kleen
2005-01-04 19:46                                                         ` Andi Kleen
2005-01-04 19:58                                                         ` page fault scalability patch V14 [5/7]: x86_64 atomic pte Christoph Lameter
2005-01-04 19:58                                                           ` page fault scalability patch V14 [5/7]: x86_64 atomic pte operations Christoph Lameter
2005-01-04 19:58                                                           ` Christoph Lameter
2005-01-04 20:21                                                           ` Andi Kleen
2005-01-04 20:21                                                             ` Andi Kleen
2005-01-04 20:21                                                             ` Andi Kleen
2005-01-04 20:32                                                             ` page fault scalability patch V14 [5/7]: x86_64 atomic pte Christoph Lameter
2005-01-04 20:32                                                               ` page fault scalability patch V14 [5/7]: x86_64 atomic pte operations Christoph Lameter
2005-01-04 20:32                                                               ` Christoph Lameter
2005-01-11 17:39                                                         ` page table lock patch V15 [0/7]: overview Christoph Lameter
2005-01-11 17:39                                                           ` Christoph Lameter
2005-01-11 17:39                                                           ` Christoph Lameter
2005-01-11 17:40                                                           ` page table lock patch V15 [1/7]: Reduce use of page table lock Christoph Lameter
2005-01-11 17:40                                                             ` Christoph Lameter
2005-01-11 17:40                                                             ` Christoph Lameter
2005-01-11 17:41                                                           ` page table lock patch V15 [2/7]: ia64 atomic pte operations Christoph Lameter
2005-01-11 17:41                                                             ` Christoph Lameter
2005-01-11 17:41                                                             ` Christoph Lameter
2005-01-11 17:41                                                           ` page table lock patch V15 [3/7]: i386 universal cmpxchg Christoph Lameter
2005-01-11 17:41                                                             ` Christoph Lameter
2005-01-11 17:41                                                             ` Christoph Lameter
2005-01-11 17:42                                                           ` page table lock patch V15 [4/7]: i386 atomic pte operations Christoph Lameter
2005-01-11 17:42                                                             ` Christoph Lameter
2005-01-11 17:42                                                             ` Christoph Lameter
2005-01-11 17:43                                                           ` page table lock patch V15 [5/7]: x86_64 " Christoph Lameter
2005-01-11 17:43                                                             ` Christoph Lameter
2005-01-11 17:43                                                             ` Christoph Lameter
2005-01-11 17:43                                                           ` page table lock patch V15 [6/7]: s390 " Christoph Lameter
2005-01-11 17:43                                                             ` Christoph Lameter
2005-01-11 17:43                                                             ` Christoph Lameter
2005-01-11 17:44                                                           ` page table lock patch V15 [7/7]: Split RSS counter Christoph Lameter
2005-01-11 17:44                                                             ` Christoph Lameter
2005-01-11 17:44                                                             ` Christoph Lameter
2005-01-12  5:59                                                           ` page table lock patch V15 [0/7]: overview Nick Piggin
2005-01-12  5:59                                                             ` Nick Piggin
2005-01-12  5:59                                                             ` Nick Piggin
2005-01-12  9:42                                                             ` Andrew Morton
2005-01-12  9:42                                                               ` Andrew Morton
2005-01-12  9:42                                                               ` Andrew Morton
2005-01-12 12:29                                                               ` Marcelo Tosatti
2005-01-12 12:29                                                                 ` Marcelo Tosatti
2005-01-12 12:29                                                                 ` Marcelo Tosatti
2005-01-12 16:39                                                               ` Christoph Lameter
2005-01-12 16:39                                                                 ` Christoph Lameter
2005-01-12 16:39                                                                 ` Christoph Lameter
2005-01-12 16:49                                                                 ` Christoph Hellwig
2005-01-12 16:49                                                                   ` Christoph Hellwig
2005-01-12 17:37                                                                   ` Christoph Lameter
2005-01-12 17:37                                                                     ` Christoph Lameter
2005-01-12 17:37                                                                     ` Christoph Lameter
2005-01-12 17:41                                                                     ` Christoph Hellwig
2005-01-12 17:41                                                                       ` Christoph Hellwig
2005-01-12 17:52                                                                       ` Christoph Lameter
2005-01-12 17:52                                                                         ` Christoph Lameter
2005-01-12 17:52                                                                         ` Christoph Lameter
2005-01-12 18:04                                                                         ` Christoph Hellwig
2005-01-12 18:04                                                                           ` Christoph Hellwig
2005-01-12 18:20                                                                         ` Andrew Walrond
2005-01-12 18:43                                                                 ` Andrew Morton
2005-01-12 18:43                                                                   ` Andrew Morton
2005-01-12 18:43                                                                   ` Andrew Morton
2005-01-12 19:06                                                                   ` Christoph Lameter
2005-01-12 19:06                                                                     ` Christoph Lameter
2005-01-12 19:06                                                                     ` Christoph Lameter
2005-01-14  3:39                                                                     ` Roman Zippel
2005-01-14  3:39                                                                       ` Roman Zippel
2005-01-14  3:39                                                                       ` Roman Zippel
2005-01-14  4:14                                                                       ` Andi Kleen
2005-01-14  4:14                                                                         ` Andi Kleen
2005-01-14  4:14                                                                         ` Andi Kleen
2005-01-14 12:02                                                                         ` Roman Zippel
2005-01-14 12:02                                                                           ` Roman Zippel
2005-01-14 12:02                                                                           ` Roman Zippel
2005-01-14 16:37                                                                       ` Christoph Lameter
2005-01-12 23:16                                                                   ` Nick Piggin
2005-01-12 23:16                                                                     ` Nick Piggin
2005-01-12 23:16                                                                     ` Nick Piggin
2005-01-12 23:30                                                                     ` Andrew Morton
2005-01-12 23:30                                                                       ` Andrew Morton
2005-01-12 23:30                                                                       ` Andrew Morton
2005-01-12 23:50                                                                       ` Nick Piggin
2005-01-12 23:50                                                                         ` Nick Piggin
2005-01-12 23:50                                                                         ` Nick Piggin
2005-01-12 23:54                                                                         ` Christoph Lameter
2005-01-12 23:54                                                                           ` Christoph Lameter
2005-01-12 23:54                                                                           ` Christoph Lameter
2005-01-13  0:10                                                                           ` Nick Piggin
2005-01-13  0:10                                                                             ` Nick Piggin
2005-01-13  0:10                                                                             ` Nick Piggin
2005-01-13  0:16                                                                             ` Christoph Lameter
2005-01-13  0:16                                                                               ` Christoph Lameter
2005-01-13  0:16                                                                               ` Christoph Lameter
2005-01-13  0:42                                                                               ` Nick Piggin
2005-01-13  0:42                                                                                 ` Nick Piggin
2005-01-13  0:42                                                                                 ` Nick Piggin
2005-01-13 22:19                                                                                 ` Peter Chubb
2005-01-13 22:19                                                                                   ` Peter Chubb
2005-01-13 22:19                                                                                   ` Peter Chubb
2005-01-13  3:18                                                                               ` Andi Kleen
2005-01-13  3:18                                                                                 ` Andi Kleen
2005-01-13  3:18                                                                                 ` Andi Kleen
2005-01-13 17:11                                                                                 ` Christoph Lameter
2005-01-13 17:11                                                                                   ` Christoph Lameter
2005-01-13 17:11                                                                                   ` Christoph Lameter
2005-01-13 17:25                                                                                   ` Linus Torvalds
2005-01-13 17:25                                                                                     ` Linus Torvalds
2005-01-13 17:25                                                                                     ` Linus Torvalds
2005-01-13 18:02                                                                                   ` Andi Kleen
2005-01-13 18:02                                                                                     ` Andi Kleen
2005-01-13 18:02                                                                                     ` Andi Kleen
2005-01-13 18:16                                                                                     ` Christoph Lameter
2005-01-13 18:16                                                                                       ` Christoph Lameter
2005-01-13 18:16                                                                                       ` Christoph Lameter
2005-01-13 20:17                                                                                       ` Andi Kleen
2005-01-13 20:17                                                                                         ` Andi Kleen
2005-01-13 20:17                                                                                         ` Andi Kleen
2005-01-14  1:09                                                                                     ` Christoph Lameter
2005-01-14  1:09                                                                                       ` Christoph Lameter
2005-01-14  1:09                                                                                       ` Christoph Lameter
2005-01-14  4:39                                                                                       ` Andi Kleen
2005-01-14  4:39                                                                                         ` Andi Kleen
2005-01-14  4:39                                                                                         ` Andi Kleen
2005-01-14  4:52                                                                                         ` page table lock patch V15 [0/7]: overview II Andi Kleen
2005-01-14  4:52                                                                                           ` Andi Kleen
2005-01-14  4:52                                                                                           ` Andi Kleen
2005-01-14  4:59                                                                                           ` Nick Piggin
2005-01-14  4:59                                                                                             ` Nick Piggin
2005-01-14  4:59                                                                                             ` Nick Piggin
2005-01-14 10:47                                                                                             ` Andi Kleen
2005-01-14 10:47                                                                                               ` Andi Kleen
2005-01-14 10:47                                                                                               ` Andi Kleen
2005-01-14 10:57                                                                                               ` Nick Piggin
2005-01-14 10:57                                                                                                 ` Nick Piggin
2005-01-14 10:57                                                                                                 ` Nick Piggin
2005-01-14 11:11                                                                                                 ` Andi Kleen
2005-01-14 11:11                                                                                                   ` Andi Kleen
2005-01-14 11:11                                                                                                   ` Andi Kleen
2005-01-14 16:57                                                                                                   ` Christoph Lameter
2005-01-14 16:57                                                                                                     ` Christoph Lameter
2005-01-14 16:57                                                                                                     ` Christoph Lameter
2005-01-14  4:54                                                                                         ` page table lock patch V15 [0/7]: overview Nick Piggin
2005-01-14  4:54                                                                                           ` Nick Piggin
2005-01-14  4:54                                                                                           ` Nick Piggin
2005-01-14 10:46                                                                                           ` Andi Kleen
2005-01-14 10:46                                                                                             ` Andi Kleen
2005-01-14 10:46                                                                                             ` Andi Kleen
2005-01-14 16:52                                                                                         ` Christoph Lameter
2005-01-14 16:52                                                                                           ` Christoph Lameter
2005-01-14 16:52                                                                                           ` Christoph Lameter
2005-01-14 17:01                                                                                           ` Andi Kleen
2005-01-14 17:01                                                                                             ` Andi Kleen
2005-01-14 17:01                                                                                             ` Andi Kleen
2005-01-14 17:08                                                                                             ` Christoph Lameter
2005-01-14 17:08                                                                                               ` Christoph Lameter
2005-01-14 17:08                                                                                               ` Christoph Lameter
2005-01-14 17:11                                                                                               ` Andi Kleen
2005-01-14 17:11                                                                                                 ` Andi Kleen
2005-01-14 17:11                                                                                                 ` Andi Kleen
2005-01-14 17:43                                                                                             ` Linus Torvalds
2005-01-14 17:43                                                                                               ` Linus Torvalds
2005-01-14 17:43                                                                                               ` Linus Torvalds
2005-01-21 18:22                                                                                               ` [PATCH] Soft introduction of atomic pte operations to avoid the Christoph Lameter
2005-01-21 18:22                                                                                                 ` [PATCH] Soft introduction of atomic pte operations to avoid the clearing of ptes Christoph Lameter
2005-01-28 20:35                                                                                             ` page fault scalability patch V16 [0/4]: redesign overview Christoph Lameter
2005-01-28 20:35                                                                                               ` Christoph Lameter
2005-01-28 20:35                                                                                               ` Christoph Lameter
2005-01-28 20:36                                                                                               ` page fault scalability patch V16 [1/4]: avoid intermittent clearing Christoph Lameter
2005-01-28 20:36                                                                                                 ` page fault scalability patch V16 [1/4]: avoid intermittent clearing of ptes Christoph Lameter
2005-01-28 20:36                                                                                                 ` Christoph Lameter
2005-01-28 20:36                                                                                               ` page fault scalability patch V16 [2/4]: mm counter macros Christoph Lameter
2005-01-28 20:36                                                                                                 ` Christoph Lameter
2005-01-28 20:36                                                                                                 ` Christoph Lameter
2005-01-28 20:37                                                                                               ` page fault scalability patch V16 [3/4]: Drop page_table_lock in Christoph Lameter
2005-01-28 20:37                                                                                                 ` page fault scalability patch V16 [3/4]: Drop page_table_lock in handle_mm_fault Christoph Lameter
2005-01-28 20:37                                                                                                 ` Christoph Lameter
2005-02-01  4:08                                                                                                 ` page fault scalability patch V16 [3/4]: Drop page_table_lock Nick Piggin
2005-02-01  4:08                                                                                                   ` page fault scalability patch V16 [3/4]: Drop page_table_lock in handle_mm_fault Nick Piggin
2005-02-01  4:08                                                                                                   ` Nick Piggin
2005-02-01 18:47                                                                                                   ` page fault scalability patch V16 [3/4]: Drop page_table_lock in Christoph Lameter
2005-02-01 18:47                                                                                                     ` page fault scalability patch V16 [3/4]: Drop page_table_lock in handle_mm_fault Christoph Lameter
2005-02-01 18:47                                                                                                     ` Christoph Lameter
2005-02-01 19:01                                                                                                   ` page fault scalability patch V16 [3/4]: Drop page_table_lock in Christoph Lameter
2005-02-01 19:01                                                                                                     ` page fault scalability patch V16 [3/4]: Drop page_table_lock in handle_mm_fault Christoph Lameter
2005-02-01 19:01                                                                                                     ` Christoph Lameter
2005-02-02  0:31                                                                                                     ` page fault scalability patch V16 [3/4]: Drop page_table_lock Nick Piggin
2005-02-02  0:31                                                                                                       ` page fault scalability patch V16 [3/4]: Drop page_table_lock in handle_mm_fault Nick Piggin
2005-02-02  0:31                                                                                                       ` Nick Piggin
2005-02-02  1:20                                                                                                       ` page fault scalability patch V16 [3/4]: Drop page_table_lock in Christoph Lameter
2005-02-02  1:20                                                                                                         ` page fault scalability patch V16 [3/4]: Drop page_table_lock in handle_mm_fault Christoph Lameter
2005-02-02  1:20                                                                                                         ` Christoph Lameter
2005-02-02  1:41                                                                                                         ` page fault scalability patch V16 [3/4]: Drop page_table_lock Nick Piggin
2005-02-02  1:41                                                                                                           ` page fault scalability patch V16 [3/4]: Drop page_table_lock in handle_mm_fault Nick Piggin
2005-02-02  1:41                                                                                                           ` Nick Piggin
2005-02-02  2:49                                                                                                           ` page fault scalability patch V16 [3/4]: Drop page_table_lock in Christoph Lameter
2005-02-02  2:49                                                                                                             ` page fault scalability patch V16 [3/4]: Drop page_table_lock in handle_mm_fault Christoph Lameter
2005-02-02  2:49                                                                                                             ` Christoph Lameter
2005-02-02  3:09                                                                                                             ` page fault scalability patch V16 [3/4]: Drop page_table_lock Nick Piggin
2005-02-02  3:09                                                                                                               ` page fault scalability patch V16 [3/4]: Drop page_table_lock in handle_mm_fault Nick Piggin
2005-02-02  3:09                                                                                                               ` Nick Piggin
2005-02-04  6:27                                                                                                               ` page fault scalability patch V16 [3/4]: Drop page_table_lock Nick Piggin
2005-02-04  6:27                                                                                                                 ` page fault scalability patch V16 [3/4]: Drop page_table_lock in handle_mm_fault Nick Piggin
2005-02-04  6:27                                                                                                                 ` Nick Piggin
2005-02-17  0:57                                                                                                       ` page fault scalability patchsets update: prezeroing, prefaulting Christoph Lameter
2005-02-17  0:57                                                                                                         ` page fault scalability patchsets update: prezeroing, prefaulting and atomic operations Christoph Lameter
2005-02-17  0:57                                                                                                         ` Christoph Lameter
2005-02-24  6:04                                                                                                         ` A Proposal for an MMU abstraction layer Christoph Lameter
2005-02-24  6:04                                                                                                           ` Christoph Lameter
2005-02-24  6:04                                                                                                           ` Christoph Lameter
2005-02-01  4:16                                                                                                 ` page fault scalability patch V16 [3/4]: Drop page_table_lock Nick Piggin
2005-02-01  4:16                                                                                                   ` page fault scalability patch V16 [3/4]: Drop page_table_lock in handle_mm_fault Nick Piggin
2005-02-01  4:16                                                                                                   ` Nick Piggin
2005-02-01  8:20                                                                                                   ` Kernel 2.4.21 hangs up baswaraj kasture
2005-02-01  8:20                                                                                                     ` baswaraj kasture
2005-02-01  8:20                                                                                                     ` baswaraj kasture
2005-02-01  8:35                                                                                                     ` Arjan van de Ven
2005-02-01  9:03                                                                                                     ` Christian Hildner
2005-02-01  9:03                                                                                                       ` Christian Hildner
2005-02-01  9:03                                                                                                       ` Christian Hildner
2005-02-07  6:14                                                                                                       ` Kernel 2.4.21 gives kernel panic at boot time baswaraj kasture
2005-02-07  6:14                                                                                                         ` baswaraj kasture
2005-02-07  6:14                                                                                                         ` baswaraj kasture
2005-02-07  8:16                                                                                                         ` Christian Hildner
2005-02-08  5:12                                                                                                         ` baswaraj kasture
2005-02-08  7:51                                                                                                         ` Christian Hildner
2005-02-01 17:46                                                                                                     ` Kernel 2.4.21 hangs up David Mosberger
2005-02-01 17:46                                                                                                       ` David Mosberger
2005-02-01 17:54                                                                                                       ` Markus Trippelsdorf
2005-02-01 17:54                                                                                                         ` Markus Trippelsdorf
2005-02-01 18:08                                                                                                         ` David Mosberger
2005-02-01 18:08                                                                                                           ` David Mosberger
2005-02-01 18:44                                                                                                   ` page fault scalability patch V16 [3/4]: Drop page_table_lock in Christoph Lameter
2005-02-01 18:44                                                                                                     ` page fault scalability patch V16 [3/4]: Drop page_table_lock in handle_mm_fault Christoph Lameter
2005-02-01 18:44                                                                                                     ` Christoph Lameter
2005-01-28 20:38                                                                                               ` page fault scalability patch V16 [4/4]: Drop page_table_lock in Christoph Lameter
2005-01-28 20:38                                                                                                 ` page fault scalability patch V16 [4/4]: Drop page_table_lock in do_anonymous_page Christoph Lameter
2005-01-28 20:38                                                                                                 ` Christoph Lameter
2005-01-12 12:43                                                           ` page table lock patch V15 [0/7]: overview Hugh Dickins
2005-01-12 12:43                                                             ` Hugh Dickins
2005-01-12 12:43                                                             ` Hugh Dickins
2005-01-12 21:22                                                           ` Hugh Dickins
2005-01-12 21:22                                                             ` Hugh Dickins
2005-01-12 21:22                                                             ` Hugh Dickins
2005-01-12 23:52                                                             ` Christoph Lameter
2005-01-12 23:52                                                               ` Christoph Lameter
2005-01-12 23:52                                                               ` Christoph Lameter
2005-01-13  2:52                                                           ` Hugh Dickins
2005-01-13  2:52                                                             ` Hugh Dickins
2005-01-13  2:52                                                             ` Hugh Dickins
2005-01-13 17:05                                                             ` Christoph Lameter
2005-01-13 17:05                                                               ` Christoph Lameter
2005-01-13 17:05                                                               ` Christoph Lameter
2005-01-13  3:09                                                           ` Hugh Dickins
2005-01-13  3:09                                                             ` Hugh Dickins
2005-01-13  3:09                                                             ` Hugh Dickins
2005-01-13  3:46                                                             ` Nick Piggin
2005-01-13  3:46                                                               ` Nick Piggin
2005-01-13  3:46                                                               ` Nick Piggin
2005-01-13 17:14                                                               ` Christoph Lameter
2005-01-13 17:14                                                                 ` Christoph Lameter
2005-01-13 17:14                                                                 ` Christoph Lameter
2005-01-04 21:21                                                       ` page fault scalability patch V14 [5/7]: x86_64 atomic pte operations Brian Gerst
2005-01-04 21:21                                                         ` Brian Gerst
2005-01-04 21:21                                                         ` Brian Gerst
2005-01-04 21:26                                                         ` page fault scalability patch V14 [5/7]: x86_64 atomic pte Christoph Lameter
2005-01-04 21:26                                                           ` page fault scalability patch V14 [5/7]: x86_64 atomic pte operations Christoph Lameter
2005-01-04 21:26                                                           ` Christoph Lameter
2005-01-04 19:38                                                     ` page fault scalability patch V14 [6/7]: s390 atomic pte operationsw Christoph Lameter
2005-01-04 19:38                                                       ` Christoph Lameter
2005-01-04 19:38                                                       ` Christoph Lameter
2005-01-04 19:39                                                     ` page fault scalability patch V14 [7/7]: Split RSS counters Christoph Lameter
2005-01-04 19:39                                                       ` Christoph Lameter
2005-01-04 19:39                                                       ` Christoph Lameter
2004-12-02  0:10                                                 ` page fault scalability patch V12 [0/7]: Overview and performance Linus Torvalds
2004-12-02  0:10                                                   ` page fault scalability patch V12 [0/7]: Overview and performance tests Linus Torvalds
2004-12-02  0:10                                                   ` Linus Torvalds
2004-12-02  0:55                                                   ` page fault scalability patch V12 [0/7]: Overview and Andrew Morton
2004-12-02  0:55                                                     ` page fault scalability patch V12 [0/7]: Overview and performance tests Andrew Morton
2004-12-02  0:55                                                     ` Andrew Morton
2004-12-02  1:46                                                     ` page fault scalability patch V12 [0/7]: Overview and performance Christoph Lameter
2004-12-02  1:46                                                       ` page fault scalability patch V12 [0/7]: Overview and performance tests Christoph Lameter
2004-12-02  1:46                                                       ` Christoph Lameter
2004-12-02  6:21                                                   ` page fault scalability patch V12 [0/7]: Overview and performance Jeff Garzik
2004-12-02  6:21                                                     ` page fault scalability patch V12 [0/7]: Overview and performance tests Jeff Garzik
2004-12-02  6:21                                                     ` Jeff Garzik
2004-12-02  6:34                                                     ` page fault scalability patch V12 [0/7]: Overview and Andrew Morton
2004-12-02  6:34                                                       ` page fault scalability patch V12 [0/7]: Overview and performance tests Andrew Morton
2004-12-02  6:34                                                       ` Andrew Morton
2004-12-02  6:48                                                       ` page fault scalability patch V12 [0/7]: Overview and performance Jeff Garzik
2004-12-02  6:48                                                         ` page fault scalability patch V12 [0/7]: Overview and performance tests Jeff Garzik
2004-12-02  6:48                                                         ` Jeff Garzik
2004-12-02  7:02                                                         ` page fault scalability patch V12 [0/7]: Overview and Andrew Morton
2004-12-02  7:02                                                           ` page fault scalability patch V12 [0/7]: Overview and performance tests Andrew Morton
2004-12-02  7:02                                                           ` Andrew Morton
2004-12-02  7:26                                                           ` Martin J. Bligh
2004-12-02  7:26                                                             ` Martin J. Bligh
2004-12-02  7:26                                                             ` Martin J. Bligh
2004-12-02  7:31                                                             ` page fault scalability patch V12 [0/7]: Overview and performance Jeff Garzik
2004-12-02  7:31                                                               ` page fault scalability patch V12 [0/7]: Overview and performance tests Jeff Garzik
2004-12-02  7:31                                                               ` Jeff Garzik
2004-12-02 18:10                                                               ` page fault scalability patch V12 [0/7]: Overview and cliff white
2004-12-02 18:10                                                                 ` page fault scalability patch V12 [0/7]: Overview and performance tests cliff white
2004-12-02 18:10                                                                 ` cliff white
2004-12-02 20:25                                                                 ` page fault scalability patch V12 [0/7]: Overview and performance linux-os
2004-12-02 20:25                                                                   ` page fault scalability patch V12 [0/7]: Overview and performance tests linux-os
2004-12-08 17:24                                                                 ` Anticipatory prefaulting in the page fault handler V1 Christoph Lameter
2004-12-08 17:24                                                                   ` Christoph Lameter
2004-12-08 17:24                                                                   ` Christoph Lameter
2004-12-08 17:33                                                                   ` Jesse Barnes
2004-12-08 17:33                                                                     ` Jesse Barnes
2004-12-08 17:33                                                                     ` Jesse Barnes
2004-12-08 17:56                                                                     ` Christoph Lameter
2004-12-08 17:56                                                                       ` Christoph Lameter
2004-12-08 17:56                                                                       ` Christoph Lameter
2004-12-08 18:33                                                                       ` Jesse Barnes
2004-12-08 18:33                                                                         ` Jesse Barnes
2004-12-08 18:33                                                                         ` Jesse Barnes
2004-12-08 21:26                                                                       ` David S. Miller
2004-12-08 21:26                                                                         ` David S. Miller
2004-12-08 21:26                                                                         ` David S. Miller
2004-12-08 21:42                                                                         ` Linus Torvalds
2004-12-08 21:42                                                                           ` Linus Torvalds
2004-12-08 21:42                                                                           ` Linus Torvalds
2004-12-08 17:44                                                                   ` Luck, Tony
2004-12-08 17:44                                                                     ` Luck, Tony
2004-12-08 17:44                                                                     ` Luck, Tony
2004-12-08 17:57                                                                     ` Christoph Lameter
2004-12-08 17:57                                                                       ` Christoph Lameter
2004-12-08 17:57                                                                       ` Christoph Lameter
2004-12-08 17:55                                                                   ` Dave Hansen
2004-12-08 17:55                                                                     ` Dave Hansen
2004-12-08 17:55                                                                     ` Dave Hansen
2004-12-08 18:31                                                                   ` Luck, Tony
2004-12-08 18:31                                                                     ` Luck, Tony
2004-12-08 18:31                                                                     ` Luck, Tony
2004-12-08 19:07                                                                   ` Martin J. Bligh
2004-12-08 19:07                                                                     ` Martin J. Bligh
2004-12-08 19:07                                                                     ` Martin J. Bligh
2004-12-08 22:50                                                                   ` Martin J. Bligh
2004-12-08 22:50                                                                     ` Martin J. Bligh
2004-12-08 22:50                                                                     ` Martin J. Bligh
2004-12-09 19:32                                                                     ` Christoph Lameter
2004-12-09 19:32                                                                       ` Christoph Lameter
2004-12-09 19:32                                                                       ` Christoph Lameter
2004-12-10  2:13                                                                       ` [OT:HUMOR] " Adam Heath
2004-12-13 14:30                                                                       ` Akinobu Mita
2004-12-13 14:30                                                                         ` Akinobu Mita
2004-12-13 14:30                                                                         ` Akinobu Mita
2004-12-13 17:10                                                                         ` Christoph Lameter
2004-12-13 17:10                                                                           ` Christoph Lameter
2004-12-13 17:10                                                                           ` Christoph Lameter
2004-12-13 22:16                                                                           ` Martin J. Bligh
2004-12-13 22:16                                                                             ` Martin J. Bligh
2004-12-13 22:16                                                                             ` Martin J. Bligh
2004-12-14  1:32                                                                             ` Anticipatory prefaulting in the page fault handler V2 Christoph Lameter
2004-12-14  1:32                                                                               ` Christoph Lameter
2004-12-14  1:32                                                                               ` Christoph Lameter
2004-12-14 19:31                                                                               ` Adam Litke
2004-12-14 19:31                                                                                 ` Adam Litke
2004-12-14 19:31                                                                                 ` Adam Litke
2004-12-15 19:03                                                                                 ` Anticipatory prefaulting in the page fault handler V3 Christoph Lameter
2004-12-15 19:03                                                                                   ` Christoph Lameter
2004-12-15 19:03                                                                                   ` Christoph Lameter
2005-01-05  0:29                                                                                 ` Anticipatory prefaulting in the page fault handler V4 Christoph Lameter
2005-01-05  0:29                                                                                   ` Christoph Lameter
2005-01-05  0:29                                                                                   ` Christoph Lameter
2004-12-14 12:24                                                                           ` Anticipatory prefaulting in the page fault handler V1 Akinobu Mita
2004-12-14 12:24                                                                             ` Akinobu Mita
2004-12-14 12:24                                                                             ` Akinobu Mita
2004-12-14 15:25                                                                             ` Akinobu Mita
2004-12-14 15:25                                                                               ` Akinobu Mita
2004-12-14 15:25                                                                               ` Akinobu Mita
2004-12-14 20:25                                                                             ` Christoph Lameter
2004-12-14 20:25                                                                               ` Christoph Lameter
2004-12-14 20:25                                                                               ` Christoph Lameter
2004-12-09 10:57                                                                   ` Pavel Machek
2004-12-09 10:57                                                                     ` Pavel Machek
2004-12-09 10:57                                                                     ` Pavel Machek
2004-12-09 11:32                                                                     ` Nick Piggin
2004-12-09 11:32                                                                       ` Nick Piggin
2004-12-09 11:32                                                                       ` Nick Piggin
2004-12-09 17:05                                                                     ` Christoph Lameter
2004-12-09 17:05                                                                       ` Christoph Lameter
2004-12-09 17:05                                                                       ` Christoph Lameter
2004-12-14 15:28                                                                   ` Adam Litke
2004-12-14 15:28                                                                     ` Adam Litke
2004-12-14 15:28                                                                     ` Adam Litke
2004-12-02 18:43                                                             ` page fault scalability patch V12 [0/7]: Overview and cliff white
2004-12-02 18:43                                                               ` page fault scalability patch V12 [0/7]: Overview and performance tests cliff white
2004-12-02 18:43                                                               ` cliff white
2004-12-06 19:33                                                               ` Marcelo Tosatti
2004-12-06 19:33                                                                 ` Marcelo Tosatti
2004-12-06 19:33                                                                 ` Marcelo Tosatti
2004-12-02 17:34                                                           ` page fault scalability patch V12 [0/7]: Overview and cliff white
2004-12-02 17:34                                                             ` page fault scalability patch V12 [0/7]: Overview and performance tests cliff white
2004-12-02 17:34                                                             ` cliff white
2004-12-02 19:48                                                         ` Diego Calleja
2004-12-02 20:12                                                           ` Jeff Garzik
2004-12-02 20:30                                                             ` Diego Calleja
2004-12-02 21:08                                                             ` Wichert Akkerman
2004-12-03  0:07                                                             ` Francois Romieu
2004-12-02  7:00                                                       ` Jeff Garzik
2004-12-02  7:05                                                         ` Benjamin Herrenschmidt
2004-12-02  7:11                                                           ` Jeff Garzik
2004-12-02 11:16                                                             ` Benjamin Herrenschmidt
2004-12-02 14:30                                                         ` Andy Warner
2005-01-06 23:40                                                           ` Jeff Garzik
2004-12-02 18:27                                                       ` Grant Grundler
2004-12-02 18:27                                                         ` Grant Grundler
2004-12-02 18:27                                                         ` Grant Grundler
2004-12-02 18:33                                                         ` page fault scalability patch V12 [0/7]: Overview and Andrew Morton
2004-12-02 18:33                                                           ` page fault scalability patch V12 [0/7]: Overview and performance tests Andrew Morton
2004-12-02 18:33                                                           ` Andrew Morton
2004-12-02 18:36                                                         ` Christoph Hellwig
2004-12-02 18:36                                                           ` Christoph Hellwig
2004-12-02 18:36                                                           ` Christoph Hellwig
2004-12-07 10:51                                                       ` Pavel Machek
2004-12-07 10:51                                                         ` Pavel Machek
2004-12-07 10:51                                                         ` Pavel Machek
2004-12-02 16:24                                                 ` Gerrit Huizenga
2004-12-02 16:24                                                   ` Gerrit Huizenga
2004-12-02 16:24                                                   ` Gerrit Huizenga
2004-12-02 18:17                                                 ` Gerrit Huizenga
2004-12-02 18:17                                                   ` Gerrit Huizenga
2004-12-02 18:17                                                   ` Gerrit Huizenga
2004-12-03 14:49                                                 ` page fault scalability patch V12 [0/7]: Overview and Sebastien Decugis
2004-12-03 14:49                                                   ` page fault scalability patch V12 [0/7]: Overview and performance tests Sebastien Decugis
2004-12-09  8:00                                                 ` page fault scalability patch V12 [0/7]: Overview and performance Nick Piggin
2004-12-09  8:00                                                   ` page fault scalability patch V12 [0/7]: Overview and performance tests Nick Piggin
2004-12-09  8:00                                                   ` Nick Piggin
2004-12-09 17:03                                                   ` page fault scalability patch V12 [0/7]: Overview and performance Christoph Lameter
2004-12-09 17:03                                                     ` page fault scalability patch V12 [0/7]: Overview and performance tests Christoph Lameter
2004-12-09 17:03                                                     ` Christoph Lameter
2004-12-10  4:30                                                     ` page fault scalability patch V12 [0/7]: Overview and performance Nick Piggin
2004-12-10  4:30                                                       ` page fault scalability patch V12 [0/7]: Overview and performance tests Nick Piggin
2004-12-10  4:30                                                       ` Nick Piggin
2004-12-09 18:37                                                 ` page fault scalability patch V12 [0/7]: Overview and performance Hugh Dickins
2004-12-09 18:37                                                   ` page fault scalability patch V12 [0/7]: Overview and performance tests Hugh Dickins
2004-12-09 18:37                                                   ` Hugh Dickins
2004-12-09 22:02                                                   ` page fault scalability patch V12: rss tasklist vs sloppy rss Christoph Lameter
2004-12-09 22:02                                                     ` Christoph Lameter
2004-12-09 22:02                                                     ` Christoph Lameter
2004-12-09 22:52                                                     ` Andrew Morton
2004-12-09 22:52                                                       ` Andrew Morton
2004-12-09 22:52                                                       ` Andrew Morton
2004-12-09 22:52                                                     ` William Lee Irwin III
2004-12-09 22:52                                                       ` William Lee Irwin III
2004-12-09 22:52                                                       ` William Lee Irwin III
2004-12-09 23:07                                                       ` Christoph Lameter
2004-12-09 23:07                                                         ` Christoph Lameter
2004-12-09 23:07                                                         ` Christoph Lameter
2004-12-09 23:29                                                         ` William Lee Irwin III
2004-12-09 23:29                                                           ` William Lee Irwin III
2004-12-09 23:29                                                           ` William Lee Irwin III
2004-12-09 23:49                                                           ` Christoph Lameter
2004-12-09 23:49                                                             ` Christoph Lameter
2004-12-09 23:49                                                             ` Christoph Lameter
2004-12-10  4:26                                                   ` Nick Piggin [this message]
2004-12-10  4:26                                                     ` page fault scalability patch V12 [0/7]: Overview and performance tests Nick Piggin
2004-12-10  4:26                                                     ` Nick Piggin
2004-12-10  4:54                                                     ` page fault scalability patch V12 [0/7]: Overview and performance Nick Piggin
2004-12-10  4:54                                                       ` page fault scalability patch V12 [0/7]: Overview and performance tests Nick Piggin
2004-12-10  4:54                                                       ` Nick Piggin
2004-12-10  5:06                                                       ` page fault scalability patch V12 [0/7]: Overview and Benjamin Herrenschmidt
2004-12-10  5:06                                                         ` page fault scalability patch V12 [0/7]: Overview and performance tests Benjamin Herrenschmidt
2004-12-10  5:06                                                         ` Benjamin Herrenschmidt
2004-12-10  5:19                                                         ` page fault scalability patch V12 [0/7]: Overview and performance Nick Piggin
2004-12-10  5:19                                                           ` page fault scalability patch V12 [0/7]: Overview and performance tests Nick Piggin
2004-12-10  5:19                                                           ` Nick Piggin
2004-12-10 18:43                                                   ` page fault scalability patch V12 [0/7]: Overview and performance Christoph Lameter
2004-12-10 18:43                                                     ` page fault scalability patch V12 [0/7]: Overview and performance tests Christoph Lameter
2004-12-10 18:43                                                     ` Christoph Lameter
2004-12-12  7:54                                                     ` page fault scalability patch V12 [0/7]: Overview and performance Nick Piggin
2004-12-12  7:54                                                       ` page fault scalability patch V12 [0/7]: Overview and performance tests Nick Piggin
2004-12-12  7:54                                                       ` Nick Piggin
2004-12-10 20:03                                                   ` pfault V12 : correction to tasklist rss Christoph Lameter
2004-12-10 20:03                                                     ` Christoph Lameter
2004-12-10 20:03                                                     ` Christoph Lameter
2004-12-10 21:24                                                     ` Hugh Dickins
2004-12-10 21:24                                                       ` Hugh Dickins
2004-12-10 21:24                                                       ` Hugh Dickins
2004-12-10 21:38                                                       ` Andrew Morton
2004-12-10 21:38                                                         ` Andrew Morton
2004-12-10 21:38                                                         ` Andrew Morton
2004-12-11  6:03                                                         ` William Lee Irwin III
2004-12-11  6:03                                                           ` William Lee Irwin III
2004-12-11  6:03                                                           ` William Lee Irwin III
2004-12-10 12:30                                                 ` page fault scalability patch V12 [0/7]: Overview and performance Hugh Dickins
2004-12-10 12:30                                                   ` page fault scalability patch V12 [0/7]: Overview and performance tests Hugh Dickins
2004-12-10 12:30                                                   ` Hugh Dickins
2004-12-10 21:43                                                 ` page fault scalability patch V12 [0/7]: Overview and performance Hugh Dickins
2004-12-10 21:43                                                   ` page fault scalability patch V12 [0/7]: Overview and performance tests Hugh Dickins
2004-12-10 21:43                                                   ` Hugh Dickins
2004-12-10 22:12                                                   ` page fault scalability patch V12 [0/7]: Overview and Andrew Morton
2004-12-10 22:12                                                     ` page fault scalability patch V12 [0/7]: Overview and performance tests Andrew Morton
2004-12-10 22:12                                                     ` Andrew Morton
2004-12-10 23:52                                                 ` page fault scalability patch V12 [0/7]: Overview and performance Hugh Dickins
2004-12-10 23:52                                                   ` page fault scalability patch V12 [0/7]: Overview and performance tests Hugh Dickins
2004-12-10 23:52                                                   ` Hugh Dickins
2004-12-11  0:18                                                   ` page fault scalability patch V12 [0/7]: Overview and Andrew Morton
2004-12-11  0:18                                                     ` page fault scalability patch V12 [0/7]: Overview and performance tests Andrew Morton
2004-12-11  0:18                                                     ` Andrew Morton
2004-12-11  0:44                                                 ` page fault scalability patch V12 [0/7]: Overview and performance Hugh Dickins
2004-12-11  0:44                                                   ` page fault scalability patch V12 [0/7]: Overview and performance tests Hugh Dickins
2004-12-11  0:44                                                   ` Hugh Dickins
2004-12-11  0:57                                                   ` page fault scalability patch V12 [0/7]: Overview and Andrew Morton
2004-12-11  0:57                                                     ` page fault scalability patch V12 [0/7]: Overview and performance tests Andrew Morton
2004-12-11  0:57                                                     ` Andrew Morton
2004-12-11  9:23                                                 ` page fault scalability patch V12 [0/7]: Overview and performance Hugh Dickins
2004-12-11  9:23                                                   ` page fault scalability patch V12 [0/7]: Overview and performance tests Hugh Dickins
2004-12-11  9:23                                                   ` Hugh Dickins
2004-12-12  9:33                                                 ` page fault scalability patch V12 [0/7]: Overview and performance Hugh Dickins
2004-12-12  9:33                                                   ` page fault scalability patch V12 [0/7]: Overview and performance tests Hugh Dickins
2004-12-12  9:33                                                   ` Hugh Dickins
2004-12-12  9:48                                                   ` page fault scalability patch V12 [0/7]: Overview and performance Nick Piggin
2004-12-12  9:48                                                     ` page fault scalability patch V12 [0/7]: Overview and performance tests Nick Piggin
2004-12-12  9:48                                                     ` Nick Piggin
2004-12-12 21:24                                                   ` William Lee Irwin III
2004-12-12 21:24                                                     ` William Lee Irwin III
2004-12-12 21:24                                                     ` William Lee Irwin III
2004-12-17  3:31                                                     ` page fault scalability patch V12 [0/7]: Overview and performance Christoph Lameter
2004-12-17  3:31                                                       ` page fault scalability patch V12 [0/7]: Overview and performance tests Christoph Lameter
2004-12-17  3:31                                                       ` Christoph Lameter
2004-12-17  3:32                                                     ` page fault scalability patch V13 [0/8]: Overview Christoph Lameter
2004-12-17  3:32                                                       ` Christoph Lameter
2004-12-17  3:32                                                       ` Christoph Lameter
2004-12-17  3:33                                                       ` page fault scalability patch V13 [1/8]: Reduce the use of the Christoph Lameter
2004-12-17  3:33                                                         ` page fault scalability patch V13 [1/8]: Reduce the use of the page_table_lock Christoph Lameter
2004-12-17  3:33                                                         ` Christoph Lameter
2004-12-17  3:33                                                       ` page fault scalability patch V13 [2/8]: ia64 atomic pte operations Christoph Lameter
2004-12-17  3:33                                                         ` Christoph Lameter
2004-12-17  3:33                                                         ` Christoph Lameter
2004-12-17  3:34                                                       ` page fault scalability patch V13 [3/8]: universal cmpxchg for i386 Christoph Lameter
2004-12-17  3:34                                                         ` Christoph Lameter
2004-12-17  3:34                                                         ` Christoph Lameter
2004-12-17  3:35                                                       ` page fault scalability patch V13 [4/8]: atomic pte operations for Christoph Lameter
2004-12-17  3:35                                                         ` page fault scalability patch V13 [4/8]: atomic pte operations for i386 Christoph Lameter
2004-12-17  3:35                                                         ` Christoph Lameter
2004-12-17  3:36                                                       ` page fault scalability patch V13 [5/8]: atomic pte operations for Christoph Lameter
2004-12-17  3:36                                                         ` page fault scalability patch V13 [5/8]: atomic pte operations for AMD64 Christoph Lameter
2004-12-17  3:36                                                         ` Christoph Lameter
2004-12-17  3:38                                                       ` page fault scalability patch V13 [7/8]: Split RSS Christoph Lameter
2004-12-17  3:38                                                         ` Christoph Lameter
2004-12-17  3:38                                                         ` Christoph Lameter
2004-12-17  3:39                                                       ` page fault scalability patch V13 [8/8]: Prefaulting using ptep_cmpxchg Christoph Lameter
2004-12-17  3:39                                                         ` Christoph Lameter
2004-12-17  3:39                                                         ` Christoph Lameter
2004-12-17  5:55                                                       ` page fault scalability patch V13 [0/8]: Overview Christoph Lameter
2004-12-17  5:55                                                         ` Christoph Lameter
2004-12-17  5:55                                                         ` Christoph Lameter
2004-11-22 22:32                                           ` deferred rss update instead of sloppy rss Nick Piggin
2004-11-22 22:32                                             ` Nick Piggin
2004-11-22 22:32                                             ` Nick Piggin
2004-11-22 22:39                                             ` Christoph Lameter
2004-11-22 22:39                                               ` Christoph Lameter
2004-11-22 22:39                                               ` Christoph Lameter
2004-11-22 23:14                                               ` Nick Piggin
2004-11-22 23:14                                                 ` Nick Piggin
2004-11-22 23:14                                                 ` Nick Piggin
2004-11-19 19:44                                   ` page fault scalability patch V11 [2/7]: page fault handler optimizations Christoph Lameter
2004-11-19 19:44                                     ` Christoph Lameter
2004-11-19 19:44                                     ` Christoph Lameter
2004-11-19 19:44                                   ` page fault scalability patch V11 [3/7]: ia64 atomic pte operations Christoph Lameter
2004-11-19 19:44                                     ` Christoph Lameter
2004-11-19 19:44                                     ` Christoph Lameter
2004-11-19 19:45                                   ` page fault scalability patch V11 [4/7]: universal cmpxchg for i386 Christoph Lameter
2004-11-19 19:45                                     ` Christoph Lameter
2004-11-19 19:45                                     ` Christoph Lameter
2004-11-19 19:46                                   ` page fault scalability patch V11 [5/7]: i386 atomic pte operations Christoph Lameter
2004-11-19 19:46                                     ` Christoph Lameter
2004-11-19 19:46                                     ` Christoph Lameter
2004-11-19 19:46                                   ` page fault scalability patch V11 [6/7]: x86_64 " Christoph Lameter
2004-11-19 19:46                                     ` Christoph Lameter
2004-11-19 19:46                                     ` Christoph Lameter
2004-11-19 19:47                                   ` page fault scalability patch V11 [7/7]: s390 " Christoph Lameter
2004-11-19 19:47                                     ` Christoph Lameter
2004-11-19 19:47                                     ` Christoph Lameter
2004-11-19 19:59                                   ` page fault scalability patch V11 [0/7]: overview Linus Torvalds
2004-11-19 19:59                                     ` Linus Torvalds
2004-11-19 19:59                                     ` Linus Torvalds
2004-11-20  1:07                                     ` Nick Piggin
2004-11-20  1:07                                       ` Nick Piggin
2004-11-20  1:07                                       ` Nick Piggin
2004-11-20  1:29                                       ` Christoph Lameter
2004-11-20  1:29                                         ` Christoph Lameter
2004-11-20  1:29                                         ` Christoph Lameter
2004-11-20  1:45                                         ` Nick Piggin
2004-11-20  1:45                                           ` Nick Piggin
2004-11-20  1:45                                           ` Nick Piggin
2004-11-20  1:58                                         ` Linus Torvalds
2004-11-20  1:58                                           ` Linus Torvalds
2004-11-20  1:58                                           ` Linus Torvalds
2004-11-20  2:06                                           ` Linus Torvalds
2004-11-20  2:06                                             ` Linus Torvalds
2004-11-20  2:06                                             ` Linus Torvalds
2004-11-20  1:56                                       ` Linus Torvalds
2004-11-20  1:56                                         ` Linus Torvalds
2004-11-20  1:56                                         ` Linus Torvalds
2004-11-22 18:06                                         ` Bill Davidsen
2004-11-22 18:06                                           ` Bill Davidsen
2004-11-22 18:06                                           ` Bill Davidsen
2004-11-20  2:03                                     ` William Lee Irwin III
2004-11-20  2:03                                       ` William Lee Irwin III
2004-11-20  2:03                                       ` William Lee Irwin III
2004-11-20  2:25                                       ` Nick Piggin
2004-11-20  2:25                                         ` Nick Piggin
2004-11-20  2:25                                         ` Nick Piggin
2004-11-20  2:41                                         ` William Lee Irwin III
2004-11-20  2:41                                           ` William Lee Irwin III
2004-11-20  2:41                                           ` William Lee Irwin III
2004-11-20  2:46                                           ` Nick Piggin
2004-11-20  2:46                                             ` Nick Piggin
2004-11-20  2:46                                             ` Nick Piggin
2004-11-20  3:37                                       ` Nick Piggin
2004-11-20  3:37                                         ` Nick Piggin
2004-11-20  3:37                                         ` Nick Piggin
2004-11-20  3:55                                         ` William Lee Irwin III
2004-11-20  3:55                                           ` William Lee Irwin III
2004-11-20  3:55                                           ` William Lee Irwin III
2004-11-20  4:03                                           ` Nick Piggin
2004-11-20  4:03                                             ` Nick Piggin
2004-11-20  4:03                                             ` Nick Piggin
2004-11-20  4:06                                             ` Nick Piggin
2004-11-20  4:06                                               ` Nick Piggin
2004-11-20  4:06                                               ` Nick Piggin
2004-11-20  4:23                                             ` William Lee Irwin III
2004-11-20  4:23                                               ` William Lee Irwin III
2004-11-20  4:23                                               ` William Lee Irwin III
2004-11-20  4:29                                               ` Nick Piggin
2004-11-20  4:29                                                 ` Nick Piggin
2004-11-20  4:29                                                 ` Nick Piggin
2004-11-20  5:38                                                 ` William Lee Irwin III
2004-11-20  5:38                                                   ` William Lee Irwin III
2004-11-20  5:38                                                   ` William Lee Irwin III
2004-11-20  5:50                                                   ` Nick Piggin
2004-11-20  5:50                                                     ` Nick Piggin
2004-11-20  5:50                                                     ` Nick Piggin
2004-11-20  6:23                                                     ` William Lee Irwin III
2004-11-20  6:23                                                       ` William Lee Irwin III
2004-11-20  6:23                                                       ` William Lee Irwin III
2004-11-20  6:49                                                       ` Nick Piggin
2004-11-20  6:49                                                         ` Nick Piggin
2004-11-20  6:49                                                         ` Nick Piggin
2004-11-20  6:57                                                         ` Andrew Morton
2004-11-20  6:57                                                           ` Andrew Morton
2004-11-20  6:57                                                           ` Andrew Morton
2004-11-20  7:04                                                           ` Andrew Morton
2004-11-20  7:04                                                             ` Andrew Morton
2004-11-20  7:04                                                             ` Andrew Morton
2004-11-20  7:13                                                           ` Nick Piggin
2004-11-20  7:13                                                             ` Nick Piggin
2004-11-20  7:13                                                             ` Nick Piggin
2004-11-20  8:00                                                             ` William Lee Irwin III
2004-11-20  8:00                                                               ` William Lee Irwin III
2004-11-20  8:00                                                               ` William Lee Irwin III
2004-11-20 16:59                                                             ` Martin J. Bligh
2004-11-20 16:59                                                               ` Martin J. Bligh
2004-11-20 16:59                                                               ` Martin J. Bligh
2004-11-20 17:14                                                               ` Linus Torvalds
2004-11-20 17:14                                                                 ` Linus Torvalds
2004-11-20 17:14                                                                 ` Linus Torvalds
2004-11-20 19:08                                                                 ` William Lee Irwin III
2004-11-20 19:08                                                                   ` William Lee Irwin III
2004-11-20 19:08                                                                   ` William Lee Irwin III
2004-11-20 19:16                                                                   ` Linus Torvalds
2004-11-20 19:16                                                                     ` Linus Torvalds
2004-11-20 19:16                                                                     ` Linus Torvalds
2004-11-20 19:33                                                                     ` William Lee Irwin III
2004-11-20 19:33                                                                       ` William Lee Irwin III
2004-11-20 19:33                                                                       ` William Lee Irwin III
2004-11-22 17:44                                                                       ` Christoph Lameter
2004-11-22 17:44                                                                         ` Christoph Lameter
2004-11-22 17:44                                                                         ` Christoph Lameter
2004-11-22 22:43                                                                         ` William Lee Irwin III
2004-11-22 22:43                                                                           ` William Lee Irwin III
2004-11-22 22:43                                                                           ` William Lee Irwin III
2004-11-22 22:51                                                                           ` Christoph Lameter
2004-11-22 22:51                                                                             ` Christoph Lameter
2004-11-22 22:51                                                                             ` Christoph Lameter
2004-11-23  2:25                                                                             ` William Lee Irwin III
2004-11-23  2:25                                                                               ` William Lee Irwin III
2004-11-23  2:25                                                                               ` William Lee Irwin III
2004-11-20 20:25                                                                   ` [OT] " Adam Heath
2004-11-20  7:15                                                         ` William Lee Irwin III
2004-11-20  7:15                                                           ` William Lee Irwin III
2004-11-20  7:15                                                           ` William Lee Irwin III
2004-11-20  7:29                                                           ` Nick Piggin
2004-11-20  7:29                                                             ` Nick Piggin
2004-11-20  7:29                                                             ` Nick Piggin
2004-11-20  7:45                                                             ` touch_nmi_watchdog (was: page fault scalability patch V11 [0/7]: Nick Piggin
2004-11-20  7:45                                                               ` touch_nmi_watchdog (was: page fault scalability patch V11 [0/7]: overview) Nick Piggin
2004-11-20  7:45                                                               ` Nick Piggin
2004-11-20  7:57                                                             ` page fault scalability patch V11 [0/7]: overview Nick Piggin
2004-11-20  7:57                                                               ` Nick Piggin
2004-11-20  7:57                                                               ` Nick Piggin
2004-11-20  8:25                                                               ` William Lee Irwin III
2004-11-20  8:25                                                                 ` William Lee Irwin III
2004-11-20  8:25                                                                 ` William Lee Irwin III
2004-11-20  2:04                                   ` William Lee Irwin III
2004-11-20  2:04                                     ` William Lee Irwin III
2004-11-20  2:04                                     ` William Lee Irwin III
2004-11-20  2:18                                     ` Nick Piggin
2004-11-20  2:18                                       ` Nick Piggin
2004-11-20  2:18                                       ` Nick Piggin
2004-11-20  2:34                                       ` William Lee Irwin III
2004-11-20  2:34                                         ` William Lee Irwin III
2004-11-20  2:34                                         ` William Lee Irwin III
2004-11-20  2:40                                         ` Nick Piggin
2004-11-20  2:40                                           ` Nick Piggin
2004-11-20  2:40                                           ` Nick Piggin
2004-11-20  3:04                                           ` William Lee Irwin III
2004-11-20  3:04                                             ` William Lee Irwin III
2004-11-20  3:04                                             ` William Lee Irwin III
2004-11-20  3:14                                             ` Nick Piggin
2004-11-20  3:14                                               ` Nick Piggin
2004-11-20  3:14                                               ` Nick Piggin
2004-11-20  3:43                                               ` William Lee Irwin III
2004-11-20  3:43                                                 ` William Lee Irwin III
2004-11-20  3:43                                                 ` William Lee Irwin III
2004-11-20  3:58                                                 ` Nick Piggin
2004-11-20  3:58                                                   ` Nick Piggin
2004-11-20  3:58                                                   ` Nick Piggin
2004-11-20  4:01                                                   ` William Lee Irwin III
2004-11-20  4:01                                                     ` William Lee Irwin III
2004-11-20  4:01                                                     ` William Lee Irwin III
2004-11-20  4:34                                                   ` Robin Holt
2004-11-20  4:34                                                     ` Robin Holt
2004-11-20  4:34                                                     ` Robin Holt
2004-11-20  3:33                                             ` Robin Holt
2004-11-20  3:33                                               ` Robin Holt
2004-11-20  3:33                                               ` Robin Holt
2004-11-20  4:24                                               ` William Lee Irwin III
2004-11-20  4:24                                                 ` William Lee Irwin III
2004-11-20  4:24                                                 ` William Lee Irwin III
2004-11-20  2:06                                   ` Robin Holt
2004-11-20  2:06                                     ` Robin Holt
2004-11-20  2:06                                     ` Robin Holt
2004-11-19  7:05                         ` fast path for anonymous memory allocation Benjamin Herrenschmidt
2004-11-19  7:05                           ` Benjamin Herrenschmidt
2004-11-06 20:16                 ` removing mm->rss and mm->anon_rss from kernel? Peter Chubb
2004-11-06 20:54                   ` Rik van Riel
2004-11-06 21:31                     ` William Lee Irwin III
2004-11-06 20:51                 ` Rik van Riel
2004-11-06 20:51                   ` Rik van Riel
2004-11-08 15:47                 ` Russ Anderson
2004-11-08 15:47                   ` Russ Anderson
2004-11-08 16:08                   ` Martin J. Bligh
2004-11-08 16:08                     ` Martin J. Bligh
2004-11-10  4:52                   ` Nick Piggin
2004-11-10  4:52                     ` Nick Piggin
2004-11-10 17:30                     ` Robin Holt
2004-11-10 17:30                       ` Robin Holt
2004-11-10 18:50                     ` Ray Bryant
2004-11-10 18:50                       ` Ray Bryant
2004-11-10 18:50                     ` Ray Bryant
2004-11-12 23:45                     ` Ray Bryant
2004-11-12 23:45                       ` Ray Bryant
2004-11-13  0:05                       ` Steve Neuner
2004-11-13  0:05                         ` Steve Neuner
2004-11-08 16:35                 ` Rik van Riel
2004-11-08 16:35                   ` Rik van Riel
2004-11-08 16:56                 ` Hugh Dickins
2004-11-08 16:56                   ` Hugh Dickins
2004-11-08 17:01                   ` Christoph Lameter
2004-11-08 17:01                     ` Christoph Lameter
2004-11-09  2:40                     ` Nick Piggin
2004-11-09  2:40                       ` Nick Piggin
2004-11-09 12:10                       ` Matthew Wilcox
2004-11-09 12:10                         ` Matthew Wilcox
2004-11-10  0:48                         ` Nick Piggin
2004-11-10  0:48                           ` Nick Piggin
2004-11-12  0:38                 ` Christoph Lameter
2004-11-12 12:50                 ` Robin Holt
2004-11-12 15:02                 ` Christoph Lameter

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=41B92567.8070809@yahoo.com.au \
    --to=nickpiggin@yahoo.com.au \
    --cc=akpm@osdl.org \
    --cc=benh@kernel.crashing.org \
    --cc=clameter@sgi.com \
    --cc=hugh@veritas.com \
    --cc=linux-ia64@vger.kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-mm@kvack.org \
    --cc=torvalds@osdl.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.