All of lore.kernel.org
 help / color / mirror / Atom feed
From: Paul Mundt <lethal@linux-sh.org>
To: linux-arm-kernel@lists.infradead.org
Subject: Re: USB mass storage and ARM cache coherency
Date: Fri, 05 Mar 2010 01:17:46 +0000	[thread overview]
Message-ID: <20100305011745.GC26618@linux-sh.org> (raw)
In-Reply-To: <1267738660.22204.77.camel@pasglop>

On Fri, Mar 05, 2010 at 08:37:40AM +1100, Benjamin Herrenschmidt wrote:
> On Thu, 2010-03-04 at 18:07 +0000, Catalin Marinas wrote:
> > Are you more in favour if a PIO kmap API than inverting the meaning of
> > PG_arch_1? 
> 
> My main worry with this approach is the sheer amount of drivers that
> need fixing. I believe inverting PG_arch_1 is a better solution and I
> somewhat fail to see how we end up doing too much flushing if we have
> per-page execute permission (but maybe SH doesn't ?)
> 
Basically we have two different MMUs on VIPT parts, the older one on all
SH-4 parts were all read-implies-exec with no ability to differentiate
between read or exec access. For these parts the PG_dcache_dirty approach
saves us from a lot of flushing, and the corner cases were isolated
enough that we could tolerate fixups at the driver level, even on a
write-allocate D-cache.

For second generation SH-4A (SH-X2) and up parts, read and exec are split
out and we could reasonably adopt the PG_dcache_clean approach there
while adopting the same sort of flushing semantics as PPC to avoid
flushing constantly. The current generation of parts far outnumber their
legacy counterparts, so it's certainly something I plan to experiment
with.

We have an additional level of complexity on some of the SMP parts with a
non-coherent I-cache, some of the early CPUs have broken broadcasting of
the cacheops in hardware and so need to rely on IPIs, while the later
parts broadcast properly. We also need to deal with D-cache IPIs when
using mixed coherency protocols on different CPUs.

For older PIPT parts we've never used the deferred flush, since the only
time we ever had to bother with cache maintenance was in the DMA ops, as
anything closer to the CPU than the PCI DMAC had no opportunity to be
snooped.

> > I'm not familiar with SH but for PIO devices the flushing shouldn't be
> > more aggressive. For the DMA devices, Russell suggested that we mark
> > the page as clean (set PG_dcache_clean) in the DMA API to avoid the
> > default flushing.
> 
> I really like that idea, as I said earlier, but I'm worried about the I$
> side of things. IE. What I'm trying to say is that I can't see how to do
> that optimisation without ending up with missing I$ invalidations or
> doing way too many of them, unless we have a separate bit to track I$
> state.
> 
Using PG_dcache_clean from the DMA API sounds like a pretty good idea,
and certainly worth experimenting with. I don't know how we would do the
I-cache optimization without a PG_arch_2, though.

In any event, if there's going to be a mass exodus to PG_dcache_clean,
Documentation/cachetlb.txt could use a considerable amount of expanding.
The read/exec and I-cache optimizations are something that would be
valuable to document, as opposed to simply being pointed at the sparc64
approach with the regular PG_dcache_dirty caveats.

WARNING: multiple messages have this Message-ID (diff)
From: Paul Mundt <lethal@linux-sh.org>
To: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Cc: Catalin Marinas <catalin.marinas@arm.com>,
	James Bottomley <James.Bottomley@HansenPartnership.com>,
	Pavel Machek <pavel@ucw.cz>,
	FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>,
	linux@arm.linux.org.uk, mdharm-kernel@one-eyed-alien.net,
	linux-usb@vger.kernel.org, x0082077@ti.com,
	sshtylyov@ru.mvista.com, tom.leiming@gmail.com,
	bigeasy@linutronix.de, oliver@neukum.org,
	linux-kernel@vger.kernel.org, santosh.shilimkar@ti.com,
	greg@kroah.com, linux-arm-kernel@lists.infradead.org,
	linux-sh@vger.kernel.org
Subject: Re: USB mass storage and ARM cache coherency
Date: Fri, 5 Mar 2010 10:17:46 +0900	[thread overview]
Message-ID: <20100305011745.GC26618@linux-sh.org> (raw)
In-Reply-To: <1267738660.22204.77.camel@pasglop>

On Fri, Mar 05, 2010 at 08:37:40AM +1100, Benjamin Herrenschmidt wrote:
> On Thu, 2010-03-04 at 18:07 +0000, Catalin Marinas wrote:
> > Are you more in favour if a PIO kmap API than inverting the meaning of
> > PG_arch_1? 
> 
> My main worry with this approach is the sheer amount of drivers that
> need fixing. I believe inverting PG_arch_1 is a better solution and I
> somewhat fail to see how we end up doing too much flushing if we have
> per-page execute permission (but maybe SH doesn't ?)
> 
Basically we have two different MMUs on VIPT parts, the older one on all
SH-4 parts were all read-implies-exec with no ability to differentiate
between read or exec access. For these parts the PG_dcache_dirty approach
saves us from a lot of flushing, and the corner cases were isolated
enough that we could tolerate fixups at the driver level, even on a
write-allocate D-cache.

For second generation SH-4A (SH-X2) and up parts, read and exec are split
out and we could reasonably adopt the PG_dcache_clean approach there
while adopting the same sort of flushing semantics as PPC to avoid
flushing constantly. The current generation of parts far outnumber their
legacy counterparts, so it's certainly something I plan to experiment
with.

We have an additional level of complexity on some of the SMP parts with a
non-coherent I-cache, some of the early CPUs have broken broadcasting of
the cacheops in hardware and so need to rely on IPIs, while the later
parts broadcast properly. We also need to deal with D-cache IPIs when
using mixed coherency protocols on different CPUs.

For older PIPT parts we've never used the deferred flush, since the only
time we ever had to bother with cache maintenance was in the DMA ops, as
anything closer to the CPU than the PCI DMAC had no opportunity to be
snooped.

> > I'm not familiar with SH but for PIO devices the flushing shouldn't be
> > more aggressive. For the DMA devices, Russell suggested that we mark
> > the page as clean (set PG_dcache_clean) in the DMA API to avoid the
> > default flushing.
> 
> I really like that idea, as I said earlier, but I'm worried about the I$
> side of things. IE. What I'm trying to say is that I can't see how to do
> that optimisation without ending up with missing I$ invalidations or
> doing way too many of them, unless we have a separate bit to track I$
> state.
> 
Using PG_dcache_clean from the DMA API sounds like a pretty good idea,
and certainly worth experimenting with. I don't know how we would do the
I-cache optimization without a PG_arch_2, though.

In any event, if there's going to be a mass exodus to PG_dcache_clean,
Documentation/cachetlb.txt could use a considerable amount of expanding.
The read/exec and I-cache optimizations are something that would be
valuable to document, as opposed to simply being pointed at the sparc64
approach with the regular PG_dcache_dirty caveats.

WARNING: multiple messages have this Message-ID (diff)
From: lethal@linux-sh.org (Paul Mundt)
To: linux-arm-kernel@lists.infradead.org
Subject: USB mass storage and ARM cache coherency
Date: Fri, 5 Mar 2010 10:17:46 +0900	[thread overview]
Message-ID: <20100305011745.GC26618@linux-sh.org> (raw)
In-Reply-To: <1267738660.22204.77.camel@pasglop>

On Fri, Mar 05, 2010 at 08:37:40AM +1100, Benjamin Herrenschmidt wrote:
> On Thu, 2010-03-04 at 18:07 +0000, Catalin Marinas wrote:
> > Are you more in favour if a PIO kmap API than inverting the meaning of
> > PG_arch_1? 
> 
> My main worry with this approach is the sheer amount of drivers that
> need fixing. I believe inverting PG_arch_1 is a better solution and I
> somewhat fail to see how we end up doing too much flushing if we have
> per-page execute permission (but maybe SH doesn't ?)
> 
Basically we have two different MMUs on VIPT parts, the older one on all
SH-4 parts were all read-implies-exec with no ability to differentiate
between read or exec access. For these parts the PG_dcache_dirty approach
saves us from a lot of flushing, and the corner cases were isolated
enough that we could tolerate fixups at the driver level, even on a
write-allocate D-cache.

For second generation SH-4A (SH-X2) and up parts, read and exec are split
out and we could reasonably adopt the PG_dcache_clean approach there
while adopting the same sort of flushing semantics as PPC to avoid
flushing constantly. The current generation of parts far outnumber their
legacy counterparts, so it's certainly something I plan to experiment
with.

We have an additional level of complexity on some of the SMP parts with a
non-coherent I-cache, some of the early CPUs have broken broadcasting of
the cacheops in hardware and so need to rely on IPIs, while the later
parts broadcast properly. We also need to deal with D-cache IPIs when
using mixed coherency protocols on different CPUs.

For older PIPT parts we've never used the deferred flush, since the only
time we ever had to bother with cache maintenance was in the DMA ops, as
anything closer to the CPU than the PCI DMAC had no opportunity to be
snooped.

> > I'm not familiar with SH but for PIO devices the flushing shouldn't be
> > more aggressive. For the DMA devices, Russell suggested that we mark
> > the page as clean (set PG_dcache_clean) in the DMA API to avoid the
> > default flushing.
> 
> I really like that idea, as I said earlier, but I'm worried about the I$
> side of things. IE. What I'm trying to say is that I can't see how to do
> that optimisation without ending up with missing I$ invalidations or
> doing way too many of them, unless we have a separate bit to track I$
> state.
> 
Using PG_dcache_clean from the DMA API sounds like a pretty good idea,
and certainly worth experimenting with. I don't know how we would do the
I-cache optimization without a PG_arch_2, though.

In any event, if there's going to be a mass exodus to PG_dcache_clean,
Documentation/cachetlb.txt could use a considerable amount of expanding.
The read/exec and I-cache optimizations are something that would be
valuable to document, as opposed to simply being pointed at the sparc64
approach with the regular PG_dcache_dirty caveats.

  parent reply	other threads:[~2010-03-05  1:17 UTC|newest]

Thread overview: 352+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2010-01-29 14:34 USB mass storage and ARM cache coherency Catalin Marinas
2010-01-29 16:10 ` Oliver Neukum
2010-01-29 16:23 ` Ming Lei
2010-01-29 16:34   ` Catalin Marinas
2010-01-29 16:41     ` Oliver Neukum
2010-01-29 17:14       ` Catalin Marinas
2010-01-29 17:51     ` Sergei Shtylyov
2010-01-29 18:54       ` Matthew Dharm
2010-01-29 19:35         ` Greg KH
2010-02-01 13:49         ` Catalin Marinas
2010-02-01 17:29         ` Catalin Marinas
2010-02-01 20:14           ` Alan Stern
2010-02-02  4:24             ` Paul Mundt
2010-02-02  9:58               ` Catalin Marinas
2010-02-01 22:30           ` Andreas Mohr
2010-02-02  6:58             ` Oliver Neukum
2010-02-02  9:31               ` Florian Fainelli
2010-02-02  6:39           ` Paul Mundt
2010-02-02 11:05             ` Catalin Marinas
2010-02-02 11:15               ` Paul Mundt
2010-02-02  9:11           ` Sebastian Andrzej Siewior
2010-02-02 11:09             ` Catalin Marinas
2010-02-02 11:48           ` Oliver Neukum
2010-02-02 12:01             ` Catalin Marinas
2010-02-02 12:07               ` Oliver Neukum
2010-02-02 12:11                 ` Andreas Mohr
2010-02-02 14:42                   ` Clemens Ladisch
2010-02-02 14:52                     ` Oliver Neukum
2010-02-02 15:10                       ` Andreas Mohr
2010-02-02 15:34                         ` Catalin Marinas
2010-02-02 20:38                     ` Andreas Mohr
2010-02-02 12:39                 ` Catalin Marinas
2010-02-02 13:08                   ` Oliver Neukum
2010-02-02 14:34                     ` Catalin Marinas
2010-02-02 17:11                     ` Alan Stern
2010-02-02 17:20                       ` Catalin Marinas
2010-02-02 21:52                         ` Andreas Mohr
2010-02-03 15:15                           ` Alan Stern
2010-02-08  6:55                       ` Pavel Machek
2010-02-02 13:36                   ` Ming Lei
2010-02-02 14:35                     ` Catalin Marinas
2010-02-08  6:55           ` Pavel Machek
2010-02-08  6:55             ` Pavel Machek
2010-02-08  7:33             ` Andreas Mohr
2010-02-08  7:33               ` Andreas Mohr
2010-02-08 10:19               ` Catalin Marinas
2010-02-08 10:19                 ` Catalin Marinas
2010-02-08  9:51             ` Catalin Marinas
2010-02-08  9:51               ` Catalin Marinas
2010-02-08 10:03               ` Andy Green
2010-02-08 10:03                 ` Andy Green
2010-02-17  9:50                 ` Sascha Hauer
2010-02-17  9:50                   ` Sascha Hauer
2010-02-17  9:57                   ` Andy Green
2010-02-17  9:57                     ` Andy Green
2010-02-08 10:52               ` Pavel Machek
2010-02-08 10:52                 ` Pavel Machek
2010-02-08 11:28                 ` Catalin Marinas
2010-02-08 11:28                   ` Catalin Marinas
2010-02-16  7:57                   ` Shilimkar, Santosh
2010-02-16  7:57                     ` Shilimkar, Santosh
2010-02-16  8:22                     ` Oliver Neukum
2010-02-16  8:22                       ` Oliver Neukum
2010-02-16  8:55                       ` Shilimkar, Santosh
2010-02-16  8:55                         ` Shilimkar, Santosh
2010-02-16  9:07                         ` Oliver Neukum
2010-02-16  9:07                           ` Oliver Neukum
2010-02-16  9:39                           ` Russell King - ARM Linux
2010-02-16  9:39                             ` Russell King - ARM Linux
2010-02-16 13:32                             ` Oliver Neukum
2010-02-16 13:32                               ` Oliver Neukum
2010-02-16 13:40                               ` Shilimkar, Santosh
2010-02-16 13:40                                 ` Shilimkar, Santosh
2010-02-16 13:46                                 ` Oliver Neukum
2010-02-16 13:46                                   ` Oliver Neukum
2010-02-16 14:12                                   ` Shilimkar, Santosh
2010-02-16 14:12                                     ` Shilimkar, Santosh
2010-02-16 14:22                                     ` Oliver Neukum
2010-02-16 14:22                                       ` Oliver Neukum
2010-02-16 14:45                                       ` Shilimkar, Santosh
2010-02-16 14:45                                         ` Shilimkar, Santosh
2010-02-16 15:44                                         ` Alan Stern
2010-02-16 15:44                                           ` Alan Stern
2010-02-17  8:55                                       ` Shilimkar, Santosh
2010-02-17  8:55                                         ` Shilimkar, Santosh
2010-02-17  9:10                                         ` Oliver Neukum
2010-02-17  9:10                                           ` Oliver Neukum
2010-02-17  9:17                                           ` Shilimkar, Santosh
2010-02-17  9:17                                             ` Shilimkar, Santosh
2010-02-17 17:02                                         ` Alan Stern
2010-02-17 17:02                                           ` Alan Stern
2010-02-17 20:26                                           ` Russell King - ARM Linux
2010-02-17 20:26                                             ` Russell King - ARM Linux
2010-02-17 20:30                                           ` Gadiyar, Anand
2010-02-17 20:30                                             ` Gadiyar, Anand
2010-02-18  6:56                                             ` Oliver Neukum
2010-02-18  6:56                                               ` Oliver Neukum
2010-02-18  7:14                                               ` Gadiyar, Anand
2010-02-18  7:14                                                 ` Gadiyar, Anand
2010-02-17 12:29                             ` Jamie Lokier
2010-02-17 12:29                               ` Jamie Lokier
2010-02-17  3:21                         ` Ming Lei
2010-02-17  3:21                           ` Ming Lei
2010-02-17  9:05                       ` Benjamin Herrenschmidt
2010-02-17  9:05                         ` Benjamin Herrenschmidt
2010-02-17  9:15                         ` Oliver Neukum
2010-02-17  9:15                           ` Oliver Neukum
2010-02-17  9:40                           ` Benjamin Herrenschmidt
2010-02-17  9:40                             ` Benjamin Herrenschmidt
2010-02-17 10:09                             ` Oliver Neukum
2010-02-17 10:09                               ` Oliver Neukum
2010-02-17 10:18                               ` Benjamin Herrenschmidt
2010-02-17 10:18                                 ` Benjamin Herrenschmidt
2010-02-17 10:23                                 ` Oliver Neukum
2010-02-17 10:23                                   ` Oliver Neukum
2010-02-17 12:15                                   ` Benjamin Herrenschmidt
2010-02-17 12:15                                     ` Benjamin Herrenschmidt
2010-02-17  9:55                         ` Russell King - ARM Linux
2010-02-17  9:55                           ` Russell King - ARM Linux
2010-02-17 10:05                           ` Benjamin Herrenschmidt
2010-02-17 10:05                             ` Benjamin Herrenschmidt
2010-02-17 15:27                         ` Catalin Marinas
2010-02-17 15:27                           ` Catalin Marinas
2010-02-17 20:37                           ` Benjamin Herrenschmidt
2010-02-17 20:37                             ` Benjamin Herrenschmidt
2010-02-17 20:44                             ` Russell King - ARM Linux
2010-02-17 20:44                               ` Russell King - ARM Linux
2010-02-17 22:31                               ` Benjamin Herrenschmidt
2010-02-17 22:31                                 ` Benjamin Herrenschmidt
2010-02-19 17:15                                 ` Catalin Marinas
2010-02-19 17:15                                   ` Catalin Marinas
2010-02-19 17:36                                   ` Catalin Marinas
2010-02-19 17:36                                     ` Catalin Marinas
2010-02-19 20:53                                     ` Oliver Neukum
2010-02-19 20:53                                       ` Oliver Neukum
2010-02-24  2:48                                       ` Benjamin Herrenschmidt
2010-02-24  2:48                                         ` Benjamin Herrenschmidt
2010-02-24  7:16                                         ` Oliver Neukum
2010-02-24  7:16                                           ` Oliver Neukum
2010-02-24 21:12                                           ` Benjamin Herrenschmidt
2010-02-24 21:12                                             ` Benjamin Herrenschmidt
2010-02-25  3:48                                             ` Oliver Neukum
2010-02-25  3:48                                               ` Oliver Neukum
2010-02-26  0:22                                               ` Benjamin Herrenschmidt
2010-02-26  0:22                                                 ` Benjamin Herrenschmidt
2010-02-25 12:36                                             ` James Bottomley
2010-02-25 12:36                                               ` James Bottomley
2010-02-24  2:47                                     ` Benjamin Herrenschmidt
2010-02-24  2:47                                       ` Benjamin Herrenschmidt
2010-02-24 16:19                                       ` Alan Stern
2010-02-24 16:19                                         ` Alan Stern
2010-02-24 21:13                                         ` Benjamin Herrenschmidt
2010-02-24 21:13                                           ` Benjamin Herrenschmidt
2010-02-24 21:50                                           ` Alan Stern
2010-02-24 21:50                                             ` Alan Stern
2010-02-25 20:52                                             ` Benjamin Herrenschmidt
2010-02-25 20:52                                               ` Benjamin Herrenschmidt
2010-02-26 16:00                                           ` Catalin Marinas
2010-02-26 16:00                                             ` Catalin Marinas
2010-02-26 21:36                                             ` Benjamin Herrenschmidt
2010-02-26 21:36                                               ` Benjamin Herrenschmidt
2010-02-26 16:25                                       ` Catalin Marinas
2010-02-26 16:25                                         ` Catalin Marinas
2010-02-26 16:52                                         ` Alan Stern
2010-02-26 16:52                                           ` Alan Stern
2010-02-26 21:51                                           ` Benjamin Herrenschmidt
2010-02-26 21:51                                             ` Benjamin Herrenschmidt
2010-02-26 21:00                                         ` Russell King - ARM Linux
2010-02-26 21:00                                           ` Russell King - ARM Linux
2010-02-28  0:14                                           ` Benjamin Herrenschmidt
2010-02-28  0:14                                             ` Benjamin Herrenschmidt
2010-02-28  5:01                                             ` James Bottomley
2010-02-28  5:01                                               ` James Bottomley
2010-03-01 10:39                                               ` Catalin Marinas
2010-03-01 10:39                                                 ` Catalin Marinas
2010-03-01 11:06                                                 ` Russell King - ARM Linux
2010-03-01 11:06                                                   ` Russell King - ARM Linux
2010-03-02 12:11                                               ` FUJITA Tomonori
2010-03-02 12:11                                                 ` FUJITA Tomonori
2010-03-02 17:05                                                 ` Catalin Marinas
2010-03-02 17:05                                                   ` Catalin Marinas
2010-03-02 17:47                                                   ` Catalin Marinas
2010-03-02 17:47                                                     ` Catalin Marinas
2010-03-02 23:33                                                     ` Benjamin Herrenschmidt
2010-03-02 23:33                                                       ` Benjamin Herrenschmidt
2010-03-03 10:21                                                       ` Catalin Marinas
2010-03-03 10:21                                                         ` Catalin Marinas
2010-03-02 23:29                                                   ` Benjamin Herrenschmidt
2010-03-02 23:29                                                     ` Benjamin Herrenschmidt
2010-03-03  3:47                                                     ` FUJITA Tomonori
2010-03-03  3:47                                                       ` FUJITA Tomonori
2010-03-03  5:10                                                       ` Benjamin Herrenschmidt
2010-03-03  5:10                                                         ` Benjamin Herrenschmidt
2010-03-03  5:40                                                         ` James Bottomley
2010-03-03  5:40                                                           ` James Bottomley
2010-03-03  9:36                                                           ` Russell King - ARM Linux
2010-03-03  9:36                                                             ` Russell King - ARM Linux
2010-03-03 10:24                                                             ` James Bottomley
2010-03-03 10:24                                                               ` James Bottomley
2010-03-03 19:41                                                               ` Russell King - ARM Linux
2010-03-03 19:41                                                                 ` Russell King - ARM Linux
2010-03-04  2:00                                                           ` Benjamin Herrenschmidt
2010-03-04  2:00                                                             ` Benjamin Herrenschmidt
2010-03-04  8:26                                                             ` James Bottomley
2010-03-04  8:26                                                               ` James Bottomley
2010-03-04 21:25                                                               ` Benjamin Herrenschmidt
2010-03-04 21:25                                                                 ` Benjamin Herrenschmidt
2010-03-03  6:35                                                         ` FUJITA Tomonori
2010-03-03  6:35                                                           ` FUJITA Tomonori
2010-03-03 10:43                                                       ` Catalin Marinas
2010-03-03 10:43                                                         ` Catalin Marinas
2010-03-03 10:40                                                     ` Catalin Marinas
2010-03-03 10:40                                                       ` Catalin Marinas
2010-03-03 21:54                                                   ` Pavel Machek
2010-03-03 21:54                                                     ` Pavel Machek
2010-03-04  6:54                                                     ` Wolfgang Mües
2010-03-04  9:31                                                       ` Russell King - ARM Linux
2010-03-06 10:56                                                         ` Wolfgang Mües
2010-03-06 11:05                                                           ` Oliver Neukum
2010-03-06 19:44                                                           ` Russell King - ARM Linux
2010-03-04 13:47                                                       ` Catalin Marinas
2010-03-04 13:35                                                     ` Catalin Marinas
2010-03-04 13:35                                                       ` Catalin Marinas
2010-03-04 13:51                                                       ` Pavel Machek
2010-03-04 13:51                                                         ` Pavel Machek
2010-03-04 14:21                                                         ` James Bottomley
2010-03-04 14:21                                                           ` James Bottomley
2010-03-04 14:27                                                           ` Russell King - ARM Linux
2010-03-04 14:27                                                             ` Russell King - ARM Linux
2010-03-04 15:25                                                             ` Catalin Marinas
2010-03-04 15:25                                                               ` Catalin Marinas
2010-03-04 15:34                                                               ` Russell King - ARM Linux
2010-03-04 15:34                                                                 ` Russell King - ARM Linux
2010-03-04 21:31                                                               ` Benjamin Herrenschmidt
2010-03-04 21:31                                                                 ` Benjamin Herrenschmidt
2010-03-06 10:47                                                             ` James Bottomley
2010-03-06 10:47                                                               ` James Bottomley
2010-03-06 19:36                                                               ` Russell King - ARM Linux
2010-03-06 19:36                                                                 ` Russell King - ARM Linux
2010-03-06 21:07                                                                 ` Benjamin Herrenschmidt
2010-03-06 21:07                                                                   ` Benjamin Herrenschmidt
2010-03-07  5:54                                                                 ` James Bottomley
2010-03-07  5:54                                                                   ` James Bottomley
2010-03-08 11:17                                                                 ` Catalin Marinas
2010-03-08 11:17                                                                   ` Catalin Marinas
2010-03-06 21:03                                                               ` Benjamin Herrenschmidt
2010-03-06 21:03                                                                 ` Benjamin Herrenschmidt
2010-03-07  3:37                                                                 ` James Bottomley
2010-03-07  3:37                                                                   ` James Bottomley
2010-03-08  8:46                                                                   ` FUJITA Tomonori
2010-03-08  8:46                                                                     ` FUJITA Tomonori
2010-03-09  2:25                                                                   ` Benjamin Herrenschmidt
2010-03-09  2:25                                                                     ` Benjamin Herrenschmidt
2010-03-04 15:29                                                           ` Catalin Marinas
2010-03-04 15:29                                                             ` Catalin Marinas
2010-03-04 15:41                                                             ` Paul Mundt
2010-03-04 15:41                                                               ` Paul Mundt
2010-03-04 16:30                                                               ` Russell King - ARM Linux
2010-03-04 16:30                                                                 ` Russell King - ARM Linux
2010-03-04 17:34                                                                 ` Catalin Marinas
2010-03-04 17:34                                                                   ` Catalin Marinas
2010-03-04 17:54                                                                   ` Russell King - ARM Linux
2010-03-04 17:54                                                                     ` Russell King - ARM Linux
2010-03-04 22:27                                                                 ` Andreas Mohr
2010-03-04 18:07                                                               ` Catalin Marinas
2010-03-04 18:07                                                                 ` Catalin Marinas
2010-03-04 21:37                                                                 ` Benjamin Herrenschmidt
2010-03-04 21:37                                                                   ` Benjamin Herrenschmidt
2010-03-04 22:11                                                                   ` Catalin Marinas
2010-03-04 22:11                                                                     ` Catalin Marinas
2010-03-05  4:34                                                                     ` Benjamin Herrenschmidt
2010-03-05  4:34                                                                       ` Benjamin Herrenschmidt
2010-03-05  9:27                                                                       ` Catalin Marinas
2010-03-05  9:27                                                                         ` Catalin Marinas
2010-03-05  1:17                                                                   ` Paul Mundt [this message]
2010-03-05  1:17                                                                     ` Paul Mundt
2010-03-05  1:17                                                                     ` Paul Mundt
2010-03-05  4:44                                                                     ` Benjamin Herrenschmidt
2010-03-05  4:44                                                                       ` Benjamin Herrenschmidt
2010-03-05  4:44                                                                       ` Benjamin Herrenschmidt
2010-03-10  3:52                                                                       ` Paul Mundt
2010-03-10  3:52                                                                         ` Paul Mundt
2010-03-10  3:52                                                                         ` Paul Mundt
2010-03-11 21:44                                                                         ` Benjamin Herrenschmidt
2010-03-11 21:44                                                                           ` Benjamin Herrenschmidt
2010-03-11 21:44                                                                           ` Benjamin Herrenschmidt
2010-03-04 21:34                                                               ` Benjamin Herrenschmidt
2010-03-04 21:34                                                                 ` Benjamin Herrenschmidt
2010-03-04 21:28                                                           ` Benjamin Herrenschmidt
2010-03-04 21:28                                                             ` Benjamin Herrenschmidt
2010-03-04 21:40                                                             ` Russell King - ARM Linux
2010-03-04 21:40                                                               ` Russell King - ARM Linux
2010-03-05  4:31                                                               ` Benjamin Herrenschmidt
2010-03-05  4:31                                                                 ` Benjamin Herrenschmidt
2010-03-04 15:35                                                         ` Catalin Marinas
2010-03-04 15:35                                                           ` Catalin Marinas
2010-03-07  8:23                                                           ` Pavel Machek
2010-03-07  8:23                                                             ` Pavel Machek
2010-03-08 10:57                                                             ` Catalin Marinas
2010-03-08 10:57                                                               ` Catalin Marinas
2010-03-02 23:26                                                 ` Benjamin Herrenschmidt
2010-03-02 23:26                                                   ` Benjamin Herrenschmidt
2010-03-01 10:42                                             ` Catalin Marinas
2010-03-01 10:42                                               ` Catalin Marinas
2010-03-03 20:24                                               ` Jamie Lokier
2010-03-03 20:24                                                 ` Jamie Lokier
2010-02-26 21:40                                         ` Benjamin Herrenschmidt
2010-02-26 21:40                                           ` Benjamin Herrenschmidt
2010-02-26 21:49                                           ` Russell King - ARM Linux
2010-02-26 21:49                                             ` Russell King - ARM Linux
2010-02-28  0:24                                             ` Benjamin Herrenschmidt
2010-02-28  0:24                                               ` Benjamin Herrenschmidt
2010-02-28 19:17                                               ` Pavel Machek
2010-02-28 19:17                                                 ` Pavel Machek
2010-03-01 11:10                                               ` Catalin Marinas
2010-03-01 11:10                                                 ` Catalin Marinas
2010-03-02  4:11                                                 ` Benjamin Herrenschmidt
2010-03-02  4:11                                                   ` Benjamin Herrenschmidt
2010-02-24  2:39                                   ` Benjamin Herrenschmidt
2010-02-24  2:39                                     ` Benjamin Herrenschmidt
2010-02-26 16:44                                     ` Catalin Marinas
2010-02-26 16:44                                       ` Catalin Marinas
2010-02-26 21:49                                       ` Benjamin Herrenschmidt
2010-02-26 21:49                                         ` Benjamin Herrenschmidt
2010-02-26 22:03                                         ` Russell King - ARM Linux
2010-02-26 22:03                                           ` Russell King - ARM Linux
2010-02-28  0:29                                           ` Benjamin Herrenschmidt
2010-02-28  0:29                                             ` Benjamin Herrenschmidt
2010-02-28 23:20                                           ` Catalin Marinas
2010-02-28 23:20                                             ` Catalin Marinas
2010-02-28 23:17                                         ` Catalin Marinas
2010-02-28 23:17                                           ` Catalin Marinas
2010-02-17 15:27                         ` Catalin Marinas
2010-02-17 15:27                           ` Catalin Marinas
2010-02-17 15:39                         ` Catalin Marinas
2010-02-17 15:39                           ` Catalin Marinas
2010-02-17 15:40                         ` Catalin Marinas
2010-02-17 15:40                           ` Catalin Marinas
2010-02-17 15:40                         ` Catalin Marinas
2010-02-17 15:40                           ` Catalin Marinas
2010-02-17 16:19                           ` Catalin Marinas
2010-02-17 16:19                             ` Catalin Marinas
2010-02-17 16:19                           ` Re: " Catalin Marinas
2010-02-17 16:19                             ` Catalin Marinas
2010-02-16  8:44                     ` Russell King - ARM Linux
2010-02-16  8:44                       ` Russell King - ARM Linux
2010-02-16  8:51                       ` Gadiyar, Anand
2010-02-16  8:51                         ` Gadiyar, Anand
2010-02-20  7:21                         ` Pete Zaitcev
2010-02-20  7:21                           ` Pete Zaitcev
2010-02-03 23:56 George Spelvin
2010-02-04  4:39 ` Paul Mundt

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=20100305011745.GC26618@linux-sh.org \
    --to=lethal@linux-sh.org \
    --cc=linux-arm-kernel@lists.infradead.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.