* [Qemu-devel] Recursion in cpu_physical_memory_rw
@ 2006-11-15 0:43 ` Herbert Xu
0 siblings, 0 replies; 22+ messages in thread
From: Herbert Xu @ 2006-11-15 0:43 UTC (permalink / raw)
To: qemu-devel, Xen Development Mailing List
Hi:
A number of qemu driver backends (such as rtl8139) call the function
cpu_physical_memory_rw to read/write guest memory. The target guest
memory address is often supplied by the guest. This opens up the
possibility of a guest giving an address which happens to be an MMIO
address which can potentially lead to infinite recursion involving
cpu_physical_memory_rw.
Since these driver backends really only need to access system memory,
we could simply provide a new access interface that does not allow
MMIO addresses.
Any comments on this problem?
Cheers,
--
Visit Openswan at http://www.openswan.org/
Email: Herbert Xu ~{PmV>HI~} <herbert@gondor.apana.org.au>
Home Page: http://gondor.apana.org.au/~herbert/
PGP Key: http://gondor.apana.org.au/~herbert/pubkey.txt
^ permalink raw reply [flat|nested] 22+ messages in thread* Recursion in cpu_physical_memory_rw
@ 2006-11-15 0:43 ` Herbert Xu
0 siblings, 0 replies; 22+ messages in thread
From: Herbert Xu @ 2006-11-15 0:43 UTC (permalink / raw)
To: qemu-devel, Xen Development Mailing List
Hi:
A number of qemu driver backends (such as rtl8139) call the function
cpu_physical_memory_rw to read/write guest memory. The target guest
memory address is often supplied by the guest. This opens up the
possibility of a guest giving an address which happens to be an MMIO
address which can potentially lead to infinite recursion involving
cpu_physical_memory_rw.
Since these driver backends really only need to access system memory,
we could simply provide a new access interface that does not allow
MMIO addresses.
Any comments on this problem?
Cheers,
--
Visit Openswan at http://www.openswan.org/
Email: Herbert Xu ~{PmV>HI~} <herbert@gondor.apana.org.au>
Home Page: http://gondor.apana.org.au/~herbert/
PGP Key: http://gondor.apana.org.au/~herbert/pubkey.txt
^ permalink raw reply [flat|nested] 22+ messages in thread* Re: [Qemu-devel] Recursion in cpu_physical_memory_rw
2006-11-15 0:43 ` Herbert Xu
@ 2006-11-15 0:57 ` Paul Brook
-1 siblings, 0 replies; 22+ messages in thread
From: Paul Brook @ 2006-11-15 0:57 UTC (permalink / raw)
To: qemu-devel; +Cc: Xen Development Mailing List, Herbert Xu
On Wednesday 15 November 2006 00:43, Herbert Xu wrote:
> Hi:
>
> A number of qemu driver backends (such as rtl8139) call the function
> cpu_physical_memory_rw to read/write guest memory. The target guest
> memory address is often supplied by the guest. This opens up the
> possibility of a guest giving an address which happens to be an MMIO
> address which can potentially lead to infinite recursion involving
> cpu_physical_memory_rw.
>
> Since these driver backends really only need to access system memory,
> we could simply provide a new access interface that does not allow
> MMIO addresses.
It isn't always system memory. Some DMA controllers deliberately write to
device FIFOs. There are also several devices which map areas of onboard RAM.
At minimum you need to make those to use RAM mappings rather than MMIO.
If a device is recursively writing to itself I'd take this as sign that the
guest OS is already pretty screwed. I'm not sure what happens in this
situation on real hardware, but I wouldn't be surprised if it caused similar
effects by flooding the bus.
Paul
^ permalink raw reply [flat|nested] 22+ messages in thread
* Re: Recursion in cpu_physical_memory_rw
@ 2006-11-15 0:57 ` Paul Brook
0 siblings, 0 replies; 22+ messages in thread
From: Paul Brook @ 2006-11-15 0:57 UTC (permalink / raw)
To: qemu-devel; +Cc: Xen Development Mailing List, Herbert Xu
On Wednesday 15 November 2006 00:43, Herbert Xu wrote:
> Hi:
>
> A number of qemu driver backends (such as rtl8139) call the function
> cpu_physical_memory_rw to read/write guest memory. The target guest
> memory address is often supplied by the guest. This opens up the
> possibility of a guest giving an address which happens to be an MMIO
> address which can potentially lead to infinite recursion involving
> cpu_physical_memory_rw.
>
> Since these driver backends really only need to access system memory,
> we could simply provide a new access interface that does not allow
> MMIO addresses.
It isn't always system memory. Some DMA controllers deliberately write to
device FIFOs. There are also several devices which map areas of onboard RAM.
At minimum you need to make those to use RAM mappings rather than MMIO.
If a device is recursively writing to itself I'd take this as sign that the
guest OS is already pretty screwed. I'm not sure what happens in this
situation on real hardware, but I wouldn't be surprised if it caused similar
effects by flooding the bus.
Paul
^ permalink raw reply [flat|nested] 22+ messages in thread
* Re: [Qemu-devel] Recursion in cpu_physical_memory_rw
2006-11-15 0:57 ` Paul Brook
(?)
@ 2006-11-15 2:58 ` Herbert Xu
2006-11-15 7:57 ` [Xen-devel] " Keir Fraser
2006-11-15 19:04 ` Anthony Liguori
-1 siblings, 2 replies; 22+ messages in thread
From: Herbert Xu @ 2006-11-15 2:58 UTC (permalink / raw)
To: Paul Brook; +Cc: Xen Development Mailing List, qemu-devel
On Wed, Nov 15, 2006 at 12:57:24AM +0000, Paul Brook wrote:
>
> It isn't always system memory. Some DMA controllers deliberately write to
> device FIFOs. There are also several devices which map areas of onboard RAM.
> At minimum you need to make those to use RAM mappings rather than MMIO.
I'm not suggesting that we change all existing users of cpu_physical_*
to a new interface that only accessed RAM. However, for cases where it
is obvious that only system RAM is intended (e.g., rtl8139), it makes
sense to bypass MMIO handlers.
> If a device is recursively writing to itself I'd take this as sign that the
> guest OS is already pretty screwed. I'm not sure what happens in this
> situation on real hardware, but I wouldn't be surprised if it caused similar
> effects by flooding the bus.
The scenario here is a compromised guest attempting to harm a host such
as Xen.
Cheers,
--
Visit Openswan at http://www.openswan.org/
Email: Herbert Xu ~{PmV>HI~} <herbert@gondor.apana.org.au>
Home Page: http://gondor.apana.org.au/~herbert/
PGP Key: http://gondor.apana.org.au/~herbert/pubkey.txt
^ permalink raw reply [flat|nested] 22+ messages in thread* Re: Re: [Qemu-devel] Recursion in cpu_physical_memory_rw
2006-11-15 2:58 ` [Qemu-devel] " Herbert Xu
@ 2006-11-15 7:57 ` Keir Fraser
2006-11-15 19:04 ` Anthony Liguori
1 sibling, 0 replies; 22+ messages in thread
From: Keir Fraser @ 2006-11-15 7:55 UTC (permalink / raw)
To: Herbert Xu, Paul Brook; +Cc: Xen Development Mailing List, qemu-devel
On 15/11/06 2:58 am, "Herbert Xu" <herbert@gondor.apana.org.au> wrote:
>> It isn't always system memory. Some DMA controllers deliberately write to
>> device FIFOs. There are also several devices which map areas of onboard RAM.
>> At minimum you need to make those to use RAM mappings rather than MMIO.
>
> I'm not suggesting that we change all existing users of cpu_physical_*
> to a new interface that only accessed RAM. However, for cases where it
> is obvious that only system RAM is intended (e.g., rtl8139), it makes
> sense to bypass MMIO handlers.
Could we add a recursion counter to the memory-access functions, and bail if
it reaches some limit?
-- Keir
^ permalink raw reply [flat|nested] 22+ messages in thread
* Re: [Xen-devel] Re: [Qemu-devel] Recursion in cpu_physical_memory_rw
@ 2006-11-15 7:57 ` Keir Fraser
0 siblings, 0 replies; 22+ messages in thread
From: Keir Fraser @ 2006-11-15 7:57 UTC (permalink / raw)
To: Herbert Xu, Paul Brook; +Cc: Xen Development Mailing List, qemu-devel
On 15/11/06 2:58 am, "Herbert Xu" <herbert@gondor.apana.org.au> wrote:
>> It isn't always system memory. Some DMA controllers deliberately write to
>> device FIFOs. There are also several devices which map areas of onboard RAM.
>> At minimum you need to make those to use RAM mappings rather than MMIO.
>
> I'm not suggesting that we change all existing users of cpu_physical_*
> to a new interface that only accessed RAM. However, for cases where it
> is obvious that only system RAM is intended (e.g., rtl8139), it makes
> sense to bypass MMIO handlers.
Could we add a recursion counter to the memory-access functions, and bail if
it reaches some limit?
-- Keir
^ permalink raw reply [flat|nested] 22+ messages in thread
* Re: [Xen-devel] Re: [Qemu-devel] Recursion in cpu_physical_memory_rw
2006-11-15 7:57 ` [Xen-devel] " Keir Fraser
@ 2006-11-15 11:12 ` Herbert Xu
-1 siblings, 0 replies; 22+ messages in thread
From: Herbert Xu @ 2006-11-15 11:12 UTC (permalink / raw)
To: Keir Fraser; +Cc: Xen Development Mailing List, Paul Brook, qemu-devel
On Wed, Nov 15, 2006 at 07:55:48AM +0000, Keir Fraser wrote:
>
> > I'm not suggesting that we change all existing users of cpu_physical_*
> > to a new interface that only accessed RAM. However, for cases where it
> > is obvious that only system RAM is intended (e.g., rtl8139), it makes
> > sense to bypass MMIO handlers.
>
> Could we add a recursion counter to the memory-access functions, and bail if
> it reaches some limit?
Yes that would work too. However, chips such as rtl8139 should never
do MMIO in this case (the real hardware would never allow that to occur)
so we should do that accordingly.
Cheers,
--
Visit Openswan at http://www.openswan.org/
Email: Herbert Xu ~{PmV>HI~} <herbert@gondor.apana.org.au>
Home Page: http://gondor.apana.org.au/~herbert/
PGP Key: http://gondor.apana.org.au/~herbert/pubkey.txt
^ permalink raw reply [flat|nested] 22+ messages in thread* Re: Re: [Qemu-devel] Recursion in cpu_physical_memory_rw
@ 2006-11-15 11:12 ` Herbert Xu
0 siblings, 0 replies; 22+ messages in thread
From: Herbert Xu @ 2006-11-15 11:12 UTC (permalink / raw)
To: Keir Fraser; +Cc: Xen Development Mailing List, Paul Brook, qemu-devel
On Wed, Nov 15, 2006 at 07:55:48AM +0000, Keir Fraser wrote:
>
> > I'm not suggesting that we change all existing users of cpu_physical_*
> > to a new interface that only accessed RAM. However, for cases where it
> > is obvious that only system RAM is intended (e.g., rtl8139), it makes
> > sense to bypass MMIO handlers.
>
> Could we add a recursion counter to the memory-access functions, and bail if
> it reaches some limit?
Yes that would work too. However, chips such as rtl8139 should never
do MMIO in this case (the real hardware would never allow that to occur)
so we should do that accordingly.
Cheers,
--
Visit Openswan at http://www.openswan.org/
Email: Herbert Xu ~{PmV>HI~} <herbert@gondor.apana.org.au>
Home Page: http://gondor.apana.org.au/~herbert/
PGP Key: http://gondor.apana.org.au/~herbert/pubkey.txt
^ permalink raw reply [flat|nested] 22+ messages in thread* Re: Re: [Qemu-devel] Recursion in cpu_physical_memory_rw
2006-11-15 11:12 ` Herbert Xu
@ 2006-11-15 11:52 ` Keir Fraser
-1 siblings, 0 replies; 22+ messages in thread
From: Keir Fraser @ 2006-11-15 11:25 UTC (permalink / raw)
To: Herbert Xu; +Cc: Xen Development Mailing List, Paul Brook, qemu-devel
On 15/11/06 11:12, "Herbert Xu" <herbert@gondor.apana.org.au> wrote:
>> Could we add a recursion counter to the memory-access functions, and bail if
>> it reaches some limit?
>
> Yes that would work too. However, chips such as rtl8139 should never
> do MMIO in this case (the real hardware would never allow that to occur)
> so we should do that accordingly.
We'd take a patch for Xen to do it the 'proper way' with an extended
memory-access API if that is also acceptable for the upstream Qemu
maintainers.
-- Keir
^ permalink raw reply [flat|nested] 22+ messages in thread
* Re: [Xen-devel] Re: [Qemu-devel] Recursion in cpu_physical_memory_rw
@ 2006-11-15 11:52 ` Keir Fraser
0 siblings, 0 replies; 22+ messages in thread
From: Keir Fraser @ 2006-11-15 11:52 UTC (permalink / raw)
To: Herbert Xu; +Cc: Xen Development Mailing List, Paul Brook, qemu-devel
On 15/11/06 11:12, "Herbert Xu" <herbert@gondor.apana.org.au> wrote:
>> Could we add a recursion counter to the memory-access functions, and bail if
>> it reaches some limit?
>
> Yes that would work too. However, chips such as rtl8139 should never
> do MMIO in this case (the real hardware would never allow that to occur)
> so we should do that accordingly.
We'd take a patch for Xen to do it the 'proper way' with an extended
memory-access API if that is also acceptable for the upstream Qemu
maintainers.
-- Keir
^ permalink raw reply [flat|nested] 22+ messages in thread
* Re: [Xen-devel] Re: [Qemu-devel] Recursion in cpu_physical_memory_rw
2006-11-15 11:12 ` Herbert Xu
@ 2006-11-15 15:02 ` Paul Brook
-1 siblings, 0 replies; 22+ messages in thread
From: Paul Brook @ 2006-11-15 15:02 UTC (permalink / raw)
To: qemu-devel; +Cc: Keir Fraser, Xen Development Mailing List, Herbert Xu
> However, chips such as rtl8139 should never
> do MMIO in this case (the real hardware would never allow that to occur)
Really? Why wouldn't it work on real hardware?
Paul
^ permalink raw reply [flat|nested] 22+ messages in thread
* Re: [Xen-devel] Re: Recursion in cpu_physical_memory_rw
@ 2006-11-15 15:02 ` Paul Brook
0 siblings, 0 replies; 22+ messages in thread
From: Paul Brook @ 2006-11-15 15:02 UTC (permalink / raw)
To: qemu-devel; +Cc: Keir Fraser, Xen Development Mailing List, Herbert Xu
> However, chips such as rtl8139 should never
> do MMIO in this case (the real hardware would never allow that to occur)
Really? Why wouldn't it work on real hardware?
Paul
^ permalink raw reply [flat|nested] 22+ messages in thread
* Re: [Xen-devel] Re: [Qemu-devel] Recursion in cpu_physical_memory_rw
2006-11-15 15:02 ` [Xen-devel] " Paul Brook
@ 2006-11-16 5:09 ` Herbert Xu
-1 siblings, 0 replies; 22+ messages in thread
From: Herbert Xu @ 2006-11-16 5:09 UTC (permalink / raw)
To: Paul Brook; +Cc: Keir Fraser, Xen Development Mailing List, qemu-devel
On Wed, Nov 15, 2006 at 03:02:02PM +0000, Paul Brook wrote:
> > However, chips such as rtl8139 should never
> > do MMIO in this case (the real hardware would never allow that to occur)
>
> Really? Why wouldn't it work on real hardware?
For rtl8139 it would cause a Master Abort.
Cheers,
--
Visit Openswan at http://www.openswan.org/
Email: Herbert Xu ~{PmV>HI~} <herbert@gondor.apana.org.au>
Home Page: http://gondor.apana.org.au/~herbert/
PGP Key: http://gondor.apana.org.au/~herbert/pubkey.txt
^ permalink raw reply [flat|nested] 22+ messages in thread
* Re: [Qemu-devel] Recursion in cpu_physical_memory_rw
2006-11-15 2:58 ` [Qemu-devel] " Herbert Xu
@ 2006-11-15 19:04 ` Anthony Liguori
2006-11-15 19:04 ` Anthony Liguori
1 sibling, 0 replies; 22+ messages in thread
From: Anthony Liguori @ 2006-11-15 19:03 UTC (permalink / raw)
To: Herbert Xu; +Cc: Xen Development Mailing List, qemu-devel
Herbert Xu wrote:
> On Wed, Nov 15, 2006 at 12:57:24AM +0000, Paul Brook wrote:
>> It isn't always system memory. Some DMA controllers deliberately write to
>> device FIFOs. There are also several devices which map areas of onboard RAM.
>> At minimum you need to make those to use RAM mappings rather than MMIO.
>
> I'm not suggesting that we change all existing users of cpu_physical_*
> to a new interface that only accessed RAM. However, for cases where it
> is obvious that only system RAM is intended (e.g., rtl8139), it makes
> sense to bypass MMIO handlers.
>
>> If a device is recursively writing to itself I'd take this as sign that the
>> guest OS is already pretty screwed. I'm not sure what happens in this
>> situation on real hardware, but I wouldn't be surprised if it caused similar
>> effects by flooding the bus.
>
> The scenario here is a compromised guest attempting to harm a host such
> as Xen.
The only "harm" done to a host is that the process will take as much CPU
as it can get. This is really only a problem in Xen because the device
model is in Domain-0. Once the device model is in a different domain,
it doesn't matter anymore as the normal scheduler parameters can be used
to ensure that no other hosts are harmed.
Regards,
Anthony Liguori
> Cheers,
^ permalink raw reply [flat|nested] 22+ messages in thread
* Re: [Qemu-devel] Recursion in cpu_physical_memory_rw
@ 2006-11-15 19:04 ` Anthony Liguori
0 siblings, 0 replies; 22+ messages in thread
From: Anthony Liguori @ 2006-11-15 19:04 UTC (permalink / raw)
To: Herbert Xu; +Cc: Xen Development Mailing List, qemu-devel
Herbert Xu wrote:
> On Wed, Nov 15, 2006 at 12:57:24AM +0000, Paul Brook wrote:
>> It isn't always system memory. Some DMA controllers deliberately write to
>> device FIFOs. There are also several devices which map areas of onboard RAM.
>> At minimum you need to make those to use RAM mappings rather than MMIO.
>
> I'm not suggesting that we change all existing users of cpu_physical_*
> to a new interface that only accessed RAM. However, for cases where it
> is obvious that only system RAM is intended (e.g., rtl8139), it makes
> sense to bypass MMIO handlers.
>
>> If a device is recursively writing to itself I'd take this as sign that the
>> guest OS is already pretty screwed. I'm not sure what happens in this
>> situation on real hardware, but I wouldn't be surprised if it caused similar
>> effects by flooding the bus.
>
> The scenario here is a compromised guest attempting to harm a host such
> as Xen.
The only "harm" done to a host is that the process will take as much CPU
as it can get. This is really only a problem in Xen because the device
model is in Domain-0. Once the device model is in a different domain,
it doesn't matter anymore as the normal scheduler parameters can be used
to ensure that no other hosts are harmed.
Regards,
Anthony Liguori
> Cheers,
^ permalink raw reply [flat|nested] 22+ messages in thread
* Re: [Qemu-devel] Recursion in cpu_physical_memory_rw
2006-11-15 19:04 ` Anthony Liguori
(?)
@ 2006-11-16 5:11 ` Herbert Xu
2006-11-16 7:53 ` [Xen-devel] " Keir Fraser
-1 siblings, 1 reply; 22+ messages in thread
From: Herbert Xu @ 2006-11-16 5:11 UTC (permalink / raw)
To: Anthony Liguori; +Cc: Xen Development Mailing List, qemu-devel
On Wed, Nov 15, 2006 at 01:03:34PM -0600, Anthony Liguori wrote:
>
> >The scenario here is a compromised guest attempting to harm a host such
> >as Xen.
>
> The only "harm" done to a host is that the process will take as much CPU
> as it can get. This is really only a problem in Xen because the device
> model is in Domain-0. Once the device model is in a different domain,
> it doesn't matter anymore as the normal scheduler parameters can be used
> to ensure that no other hosts are harmed.
Actually it'll still be a problem in a driver domain unless it (and the
hardware) is dedicated to a single guest.
Cheers,
--
Visit Openswan at http://www.openswan.org/
Email: Herbert Xu ~{PmV>HI~} <herbert@gondor.apana.org.au>
Home Page: http://gondor.apana.org.au/~herbert/
PGP Key: http://gondor.apana.org.au/~herbert/pubkey.txt
^ permalink raw reply [flat|nested] 22+ messages in thread* Re: Re: [Qemu-devel] Recursion in cpu_physical_memory_rw
2006-11-16 5:11 ` Herbert Xu
@ 2006-11-16 7:53 ` Keir Fraser
0 siblings, 0 replies; 22+ messages in thread
From: Keir Fraser @ 2006-11-16 7:52 UTC (permalink / raw)
To: Herbert Xu, Anthony Liguori; +Cc: Xen Development Mailing List, qemu-devel
On 16/11/06 5:11 am, "Herbert Xu" <herbert@gondor.apana.org.au> wrote:
>> The only "harm" done to a host is that the process will take as much CPU
>> as it can get. This is really only a problem in Xen because the device
>> model is in Domain-0. Once the device model is in a different domain,
>> it doesn't matter anymore as the normal scheduler parameters can be used
>> to ensure that no other hosts are harmed.
>
> Actually it'll still be a problem in a driver domain unless it (and the
> hardware) is dedicated to a single guest.
Each qemu 'stub domain' will be dedicated to a single guest. Adding a
recursion counter to the memory access functions sounds possibly useful even
just from a debugging p.o.v. though.
-- Keir
^ permalink raw reply [flat|nested] 22+ messages in thread
* Re: [Xen-devel] Re: [Qemu-devel] Recursion in cpu_physical_memory_rw
@ 2006-11-16 7:53 ` Keir Fraser
0 siblings, 0 replies; 22+ messages in thread
From: Keir Fraser @ 2006-11-16 7:53 UTC (permalink / raw)
To: Herbert Xu, Anthony Liguori; +Cc: Xen Development Mailing List, qemu-devel
On 16/11/06 5:11 am, "Herbert Xu" <herbert@gondor.apana.org.au> wrote:
>> The only "harm" done to a host is that the process will take as much CPU
>> as it can get. This is really only a problem in Xen because the device
>> model is in Domain-0. Once the device model is in a different domain,
>> it doesn't matter anymore as the normal scheduler parameters can be used
>> to ensure that no other hosts are harmed.
>
> Actually it'll still be a problem in a driver domain unless it (and the
> hardware) is dedicated to a single guest.
Each qemu 'stub domain' will be dedicated to a single guest. Adding a
recursion counter to the memory access functions sounds possibly useful even
just from a debugging p.o.v. though.
-- Keir
^ permalink raw reply [flat|nested] 22+ messages in thread
* Re: [Xen-devel] Re: [Qemu-devel] Recursion in cpu_physical_memory_rw
2006-11-16 7:53 ` [Xen-devel] " Keir Fraser
@ 2006-11-16 7:59 ` Herbert Xu
-1 siblings, 0 replies; 22+ messages in thread
From: Herbert Xu @ 2006-11-16 7:59 UTC (permalink / raw)
To: Keir Fraser; +Cc: Anthony Liguori, Xen Development Mailing List, qemu-devel
On Thu, Nov 16, 2006 at 07:52:45AM +0000, Keir Fraser wrote:
>
> Each qemu 'stub domain' will be dedicated to a single guest. Adding a
You're right of course. Somehow I was thinking of having the physical
NIC in the qemu domain which obviously isn't the case.
> recursion counter to the memory access functions sounds possibly useful even
> just from a debugging p.o.v. though.
After thinking about it for a while this does seem to be the safest
and easiest strategy.
Cheers,
--
Visit Openswan at http://www.openswan.org/
Email: Herbert Xu ~{PmV>HI~} <herbert@gondor.apana.org.au>
Home Page: http://gondor.apana.org.au/~herbert/
PGP Key: http://gondor.apana.org.au/~herbert/pubkey.txt
^ permalink raw reply [flat|nested] 22+ messages in thread
end of thread, other threads:[~2006-11-16 8:00 UTC | newest]
Thread overview: 22+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2006-11-15 0:43 [Qemu-devel] Recursion in cpu_physical_memory_rw Herbert Xu
2006-11-15 0:43 ` Herbert Xu
2006-11-15 0:57 ` [Qemu-devel] " Paul Brook
2006-11-15 0:57 ` Paul Brook
2006-11-15 2:58 ` [Qemu-devel] " Herbert Xu
2006-11-15 7:55 ` Keir Fraser
2006-11-15 7:57 ` [Xen-devel] " Keir Fraser
2006-11-15 11:12 ` Herbert Xu
2006-11-15 11:12 ` Herbert Xu
2006-11-15 11:25 ` Keir Fraser
2006-11-15 11:52 ` [Xen-devel] " Keir Fraser
2006-11-15 15:02 ` Paul Brook
2006-11-15 15:02 ` [Xen-devel] " Paul Brook
2006-11-16 5:09 ` [Xen-devel] Re: [Qemu-devel] " Herbert Xu
2006-11-16 5:09 ` Herbert Xu
2006-11-15 19:03 ` Anthony Liguori
2006-11-15 19:04 ` Anthony Liguori
2006-11-16 5:11 ` Herbert Xu
2006-11-16 7:52 ` Keir Fraser
2006-11-16 7:53 ` [Xen-devel] " Keir Fraser
2006-11-16 7:59 ` Herbert Xu
2006-11-16 7:59 ` Herbert Xu
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.