public inbox for kvm@vger.kernel.org
 help / color / mirror / Atom feed
* What should I do for kvm development first?
@ 2007-11-17  5:46 Neo Jia
       [not found] ` <5d649bdb0711162146x32d4b74bicbf58c0f851b9ede-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
  0 siblings, 1 reply; 13+ messages in thread
From: Neo Jia @ 2007-11-17  5:46 UTC (permalink / raw)
  To: kvm-devel

hi,

I am trying to contribute some (just starting some bug fix first) for
KVM development.

But, I want know first what those experienced kvm developer do
everyday for the development work.

I synced with kvm.git and kvm-userspace.git. Do I have to rebuild and
install the entire kernel every time?

I really appreciate if you can share me your development/debugging
methods for KVM.

Thanks,
Neo
-- 
I would remember that if researchers were not ambitious
probably today we haven't the technology we are using!

-------------------------------------------------------------------------
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2005.
http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/

^ permalink raw reply	[flat|nested] 13+ messages in thread

* Re: What should I do for kvm development first?
       [not found] ` <5d649bdb0711162146x32d4b74bicbf58c0f851b9ede-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
@ 2007-11-17 15:29   ` Dan Kenigsberg
       [not found]     ` <20071117152930.GA4968-iWbx9bcAnq+Hk9JtIoIkgNBPR1lH4CV8@public.gmane.org>
  2007-11-18 10:45   ` Avi Kivity
  1 sibling, 1 reply; 13+ messages in thread
From: Dan Kenigsberg @ 2007-11-17 15:29 UTC (permalink / raw)
  To: Neo Jia; +Cc: kvm-devel

On Fri, Nov 16, 2007 at 09:46:03PM -0800, Neo Jia wrote:
> 
> I synced with kvm.git and kvm-userspace.git. Do I have to rebuild and
> install the entire kernel every time?
> 

Luckily, not. By default, when you ./configure in kvm-userspace.git, make
is told to build the kvm kernel module against the currently-running
kernel.

The source code of the kernel module comes from the kvm.git tree. What I
suggest is to
        make -C kernel LINUX=path/to/kvm.git sync
(when in kvm-userspace.git) in order to copy that source code to
kvm-userspace.git.

> I really appreciate if you can share me your development/debugging
> methods for KVM.

I hope you get more clues from other more experienced folks here. Good
luck,

Dan.

-------------------------------------------------------------------------
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2005.
http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/

^ permalink raw reply	[flat|nested] 13+ messages in thread

* Re: What should I do for kvm development first?
       [not found]     ` <20071117152930.GA4968-iWbx9bcAnq+Hk9JtIoIkgNBPR1lH4CV8@public.gmane.org>
@ 2007-11-17 15:47       ` Izik Eidus
       [not found]         ` <473F0CFC.4000908-atKUWr5tajBWk0Htik3J/w@public.gmane.org>
  0 siblings, 1 reply; 13+ messages in thread
From: Izik Eidus @ 2007-11-17 15:47 UTC (permalink / raw)
  To: Dan Kenigsberg; +Cc: kvm-devel

Dan Kenigsberg wrote:
> On Fri, Nov 16, 2007 at 09:46:03PM -0800, Neo Jia wrote:
>   
>> I synced with kvm.git and kvm-userspace.git. Do I have to rebuild and
>> install the entire kernel every time?
>>
>>     
>
> Luckily, not. By default, when you ./configure in kvm-userspace.git, make
> is told to build the kvm kernel module against the currently-running
> kernel.
>
> The source code of the kernel module comes from the kvm.git tree. What I
> suggest is to
>         make -C kernel LINUX=path/to/kvm.git sync
> (when in kvm-userspace.git) in order to copy that source code to
> kvm-userspace.git.
>
>   
>> I really appreciate if you can share me your development/debugging
>> methods for KVM.
>>     
>
> I hope you get more clues from other more experienced folks here. Good
> luck,
>
> Dan.
>   
development methods:
1)reading the kvm code / reading
2)intel/amd system programming specs
3)ask questions in the list

debugging is very very hard in this area, most of time is just printing 
the values all over kvm
and biesecting.

sometimes you might want to write a test program, but...


-------------------------------------------------------------------------
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2005.
http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/

^ permalink raw reply	[flat|nested] 13+ messages in thread

* Re: What should I do for kvm development first?
       [not found]         ` <473F0CFC.4000908-atKUWr5tajBWk0Htik3J/w@public.gmane.org>
@ 2007-11-18  7:02           ` Neo Jia
       [not found]             ` <5d649bdb0711172302y4e3e8292r7ac10c89f0479b13-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
  0 siblings, 1 reply; 13+ messages in thread
From: Neo Jia @ 2007-11-18  7:02 UTC (permalink / raw)
  To: Izik Eidus; +Cc: kvm-devel

On Nov 17, 2007 7:47 AM, Izik Eidus <izike-atKUWr5tajBWk0Htik3J/w@public.gmane.org> wrote:
>
> Dan Kenigsberg wrote:
> > On Fri, Nov 16, 2007 at 09:46:03PM -0800, Neo Jia wrote:
> >
> >> I synced with kvm.git and kvm-userspace.git. Do I have to rebuild and
> >> install the entire kernel every time?
> >>
> >>
> >
> > Luckily, not. By default, when you ./configure in kvm-userspace.git, make
> > is told to build the kvm kernel module against the currently-running
> > kernel.
> >
> > The source code of the kernel module comes from the kvm.git tree. What I
> > suggest is to
> >         make -C kernel LINUX=path/to/kvm.git sync
> > (when in kvm-userspace.git) in order to copy that source code to
> > kvm-userspace.git.
> >
> >
> >> I really appreciate if you can share me your development/debugging
> >> methods for KVM.
> >>
> >
> > I hope you get more clues from other more experienced folks here. Good
> > luck,
> >
> > Dan.
> >
> development methods:
> 1)reading the kvm code / reading
> 2)intel/amd system programming specs
> 3)ask questions in the list
>
> debugging is very very hard in this area, most of time is just printing
> the values all over kvm
> and biesecting.
>
> sometimes you might want to write a test program, but...

Izik and Dan,

Thank you for your response! Now, I can build modules from kvm.git
instead of build the whole kernel.

Any comments for the TODO item or bug  I need to pick up first?

Thanks,
Neo

>
>



-- 
I would remember that if researchers were not ambitious
probably today we haven't the technology we are using!

-------------------------------------------------------------------------
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2005.
http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/

^ permalink raw reply	[flat|nested] 13+ messages in thread

* Re: What should I do for kvm development first?
       [not found]             ` <5d649bdb0711172302y4e3e8292r7ac10c89f0479b13-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
@ 2007-11-18  8:09               ` Izik Eidus
  2007-11-18 10:47               ` Avi Kivity
  1 sibling, 0 replies; 13+ messages in thread
From: Izik Eidus @ 2007-11-18  8:09 UTC (permalink / raw)
  To: Neo Jia; +Cc: kvm-devel


On Sat, 2007-11-17 at 23:02 -0800, Neo Jia wrote:
> On Nov 17, 2007 7:47 AM, Izik Eidus <izike-atKUWr5tajBWk0Htik3J/w@public.gmane.org> wrote:
> >
> > Dan Kenigsberg wrote:
> > > On Fri, Nov 16, 2007 at 09:46:03PM -0800, Neo Jia wrote:
> > >
> > >> I synced with kvm.git and kvm-userspace.git. Do I have to rebuild and
> > >> install the entire kernel every time?
> > >>
> > >>
> > >
> > > Luckily, not. By default, when you ./configure in kvm-userspace.git, make
> > > is told to build the kvm kernel module against the currently-running
> > > kernel.
> > >
> > > The source code of the kernel module comes from the kvm.git tree. What I
> > > suggest is to
> > >         make -C kernel LINUX=path/to/kvm.git sync
> > > (when in kvm-userspace.git) in order to copy that source code to
> > > kvm-userspace.git.
> > >
> > >
> > >> I really appreciate if you can share me your development/debugging
> > >> methods for KVM.
> > >>
> > >
> > > I hope you get more clues from other more experienced folks here. Good
> > > luck,
> > >
> > > Dan.
> > >
> > development methods:
> > 1)reading the kvm code / reading
> > 2)intel/amd system programming specs
> > 3)ask questions in the list
> >
> > debugging is very very hard in this area, most of time is just printing
> > the values all over kvm
> > and biesecting.
> >
> > sometimes you might want to write a test program, but...
> 
> Izik and Dan,
> 
> Thank you for your response! Now, I can build modules from kvm.git
> instead of build the whole kernel.
> 
> Any comments for the TODO item or bug  I need to pick up first?
> 
check out:
http://kvm.qumranet.com/kvmwiki/TODO
and:
http://sourceforge.net/tracker/?group_id=180599&atid=893831


> 
> 


-------------------------------------------------------------------------
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2005.
http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/

^ permalink raw reply	[flat|nested] 13+ messages in thread

* Re: What should I do for kvm development first?
       [not found] ` <5d649bdb0711162146x32d4b74bicbf58c0f851b9ede-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
  2007-11-17 15:29   ` Dan Kenigsberg
@ 2007-11-18 10:45   ` Avi Kivity
  1 sibling, 0 replies; 13+ messages in thread
From: Avi Kivity @ 2007-11-18 10:45 UTC (permalink / raw)
  To: Neo Jia; +Cc: kvm-devel

Neo Jia wrote:
> hi,
>
> I am trying to contribute some (just starting some bug fix first) for
> KVM development.
>
> But, I want know first what those experienced kvm developer do
> everyday for the development work.
>
> I synced with kvm.git and kvm-userspace.git. Do I have to rebuild and
> install the entire kernel every time?
>
> I really appreciate if you can share me your development/debugging
> methods for KVM.
>
>   

I generally compile kvm.git with kvm as modules, and kvm-userspace.git 
with --with-patched-kernel.  If I make a change to kvm, I just recompile 
and reload the modules; no full rebuild is necessary.

Occasionally I merge mainline into kvm.git, which does require a full or 
partial rebuild.


-- 
error compiling committee.c: too many arguments to function


-------------------------------------------------------------------------
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2005.
http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/

^ permalink raw reply	[flat|nested] 13+ messages in thread

* Re: What should I do for kvm development first?
       [not found]             ` <5d649bdb0711172302y4e3e8292r7ac10c89f0479b13-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
  2007-11-18  8:09               ` Izik Eidus
@ 2007-11-18 10:47               ` Avi Kivity
       [not found]                 ` <4740182E.1070208-atKUWr5tajBWk0Htik3J/w@public.gmane.org>
  1 sibling, 1 reply; 13+ messages in thread
From: Avi Kivity @ 2007-11-18 10:47 UTC (permalink / raw)
  To: Neo Jia; +Cc: kvm-devel

Neo Jia wrote:
>
> Thank you for your response! Now, I can build modules from kvm.git
> instead of build the whole kernel.
>
> Any comments for the TODO item or bug  I need to pick up first?
>   

It depends on your knowledge of the x86 architecture and experience in 
virtualization.  If you have little experience, you might try the 
interactivity improvements tasks on the TODO.  If you're looking for a 
difficult task, pick one of the guest failures from the sourceforge bug 
list.

-- 
error compiling committee.c: too many arguments to function


-------------------------------------------------------------------------
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2005.
http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/

^ permalink raw reply	[flat|nested] 13+ messages in thread

* Re: What should I do for kvm development first?
       [not found]                 ` <4740182E.1070208-atKUWr5tajBWk0Htik3J/w@public.gmane.org>
@ 2007-11-18 11:00                   ` Neo Jia
       [not found]                     ` <5d649bdb0711180300p1720e15co5383337a9b5181b1-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
  0 siblings, 1 reply; 13+ messages in thread
From: Neo Jia @ 2007-11-18 11:00 UTC (permalink / raw)
  To: Avi Kivity; +Cc: kvm-devel

On Nov 18, 2007 2:47 AM, Avi Kivity <avi-atKUWr5tajBWk0Htik3J/w@public.gmane.org> wrote:
> Neo Jia wrote:
> >
> > Thank you for your response! Now, I can build modules from kvm.git
> > instead of build the whole kernel.
> >
> > Any comments for the TODO item or bug  I need to pick up first?
> >
>
> It depends on your knowledge of the x86 architecture and experience in
> virtualization.  If you have little experience, you might try the
> interactivity improvements tasks on the TODO.  If you're looking for a
> difficult task, pick one of the guest failures from the sourceforge bug
> list.
>

Avi,

Thanks for your suggestions! I have some understanding of x86 archs
(tables and system call implementations). For virtualization,  I have
read several papers from vmware.

So, I think probably for me at this moment some simple bugs should be
a good starting point, which can help me understand the code and also
the development/debugging of KVM.

Another question is about the architecture, I found it seems that the
32-bit platform is much more stable than 64-bit. Should I switch my
system to 64-bit for later work?

Thanks,
Neo

>
> --
> error compiling committee.c: too many arguments to function
>
>



-- 
I would remember that if researchers were not ambitious
probably today we haven't the technology we are using!

-------------------------------------------------------------------------
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2005.
http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/

^ permalink raw reply	[flat|nested] 13+ messages in thread

* Re: What should I do for kvm development first?
       [not found]                     ` <5d649bdb0711180300p1720e15co5383337a9b5181b1-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
@ 2007-11-18 11:04                       ` Avi Kivity
       [not found]                         ` <47401C4F.20508-atKUWr5tajBWk0Htik3J/w@public.gmane.org>
  0 siblings, 1 reply; 13+ messages in thread
From: Avi Kivity @ 2007-11-18 11:04 UTC (permalink / raw)
  To: Neo Jia; +Cc: kvm-devel

Neo Jia wrote:
> Another question is about the architecture, I found it seems that the
> 32-bit platform is much more stable than 64-bit. Should I switch my
> system to 64-bit for later work?
>   

Where do you get this impression?  I do almost all of my development on 
64-bit, and I don't recall an issue that was 64-bit host specific.

It is true that 32-bit Windows guests are more mature under kvm that 
64-bit Windows guests.

-- 
error compiling committee.c: too many arguments to function


-------------------------------------------------------------------------
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2005.
http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/

^ permalink raw reply	[flat|nested] 13+ messages in thread

* Re: What should I do for kvm development first?
       [not found]                         ` <47401C4F.20508-atKUWr5tajBWk0Htik3J/w@public.gmane.org>
@ 2007-11-18 11:15                           ` Neo Jia
       [not found]                             ` <5d649bdb0711180315u4a22c1c2kfe8f2a450aae38e0-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
  0 siblings, 1 reply; 13+ messages in thread
From: Neo Jia @ 2007-11-18 11:15 UTC (permalink / raw)
  To: Avi Kivity; +Cc: kvm-devel

On Nov 18, 2007 3:04 AM, Avi Kivity <avi-atKUWr5tajBWk0Htik3J/w@public.gmane.org> wrote:
> Neo Jia wrote:
> > Another question is about the architecture, I found it seems that the
> > 32-bit platform is much more stable than 64-bit. Should I switch my
> > system to 64-bit for later work?
> >
>
> Where do you get this impression?  I do almost all of my development on
> 64-bit, and I don't recall an issue that was 64-bit host specific.

Sorry about that ...

because I always saw "host 64-bit" in the bug report although maybe
they are not 64-bit host specific problem.

Neo


>
> It is true that 32-bit Windows guests are more mature under kvm that
> 64-bit Windows guests.
>
> --
>
> error compiling committee.c: too many arguments to function
>
>



-- 
I would remember that if researchers were not ambitious
probably today we haven't the technology we are using!

-------------------------------------------------------------------------
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2005.
http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/

^ permalink raw reply	[flat|nested] 13+ messages in thread

* Re: What should I do for kvm development first?
       [not found]                             ` <5d649bdb0711180315u4a22c1c2kfe8f2a450aae38e0-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
@ 2007-11-18 11:21                               ` Avi Kivity
       [not found]                                 ` <4740202D.4070502-atKUWr5tajBWk0Htik3J/w@public.gmane.org>
  0 siblings, 1 reply; 13+ messages in thread
From: Avi Kivity @ 2007-11-18 11:21 UTC (permalink / raw)
  To: Neo Jia; +Cc: kvm-devel

Neo Jia wrote:
> On Nov 18, 2007 3:04 AM, Avi Kivity <avi-atKUWr5tajBWk0Htik3J/w@public.gmane.org> wrote:
>   
>> Neo Jia wrote:
>>     
>>> Another question is about the architecture, I found it seems that the
>>> 32-bit platform is much more stable than 64-bit. Should I switch my
>>> system to 64-bit for later work?
>>>
>>>       
>> Where do you get this impression?  I do almost all of my development on
>> 64-bit, and I don't recall an issue that was 64-bit host specific.
>>     
>
> Sorry about that ...
>
> because I always saw "host 64-bit" in the bug report although maybe
> they are not 64-bit host specific problem.
>   

Yes.  Most testing (and production use) is done on 64-bit hosts, since 
virtualization is memory-intensive.  Also, you can test more types of 
guests this way.  Almost all virtualization-capable processors are also 
64-bit capable.

32-bit hosts are mostly useful for laptop/desktop use.

-- 
error compiling committee.c: too many arguments to function


-------------------------------------------------------------------------
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2005.
http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/

^ permalink raw reply	[flat|nested] 13+ messages in thread

* Re: What should I do for kvm development first?
       [not found]                                 ` <4740202D.4070502-atKUWr5tajBWk0Htik3J/w@public.gmane.org>
@ 2007-11-18 20:02                                   ` Neo Jia
       [not found]                                     ` <47409A38.50700-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
  0 siblings, 1 reply; 13+ messages in thread
From: Neo Jia @ 2007-11-18 20:02 UTC (permalink / raw)
  To: Avi Kivity; +Cc: kvm-devel

Avi Kivity wrote:
> Neo Jia wrote:
>> On Nov 18, 2007 3:04 AM, Avi Kivity <avi-atKUWr5tajBWk0Htik3J/w@public.gmane.org> wrote:
>>  
>>> Neo Jia wrote:
>>>    
>>>> Another question is about the architecture, I found it seems that the
>>>> 32-bit platform is much more stable than 64-bit. Should I switch my
>>>> system to 64-bit for later work?
>>>>
>>>>       
>>> Where do you get this impression?  I do almost all of my development on
>>> 64-bit, and I don't recall an issue that was 64-bit host specific.
>>>     
>>
>> Sorry about that ...
>>
>> because I always saw "host 64-bit" in the bug report although maybe
>> they are not 64-bit host specific problem.
>>   
>
> Yes.  Most testing (and production use) is done on 64-bit hosts, since 
> virtualization is memory-intensive.  Also, you can test more types of 
> guests this way.  Almost all virtualization-capable processors are 
> also 64-bit capable.
So, does that mean I need to install a 64-bit host to make the reproduce 
easier?

Neo
>
> 32-bit hosts are mostly useful for laptop/desktop use.
>


-------------------------------------------------------------------------
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2005.
http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/

^ permalink raw reply	[flat|nested] 13+ messages in thread

* Re: What should I do for kvm development first?
       [not found]                                     ` <47409A38.50700-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
@ 2007-11-19  5:49                                       ` Avi Kivity
  0 siblings, 0 replies; 13+ messages in thread
From: Avi Kivity @ 2007-11-19  5:49 UTC (permalink / raw)
  To: Neo Jia; +Cc: kvm-devel

Neo Jia wrote:
>>>>
>>>>> Another question is about the architecture, I found it seems that the
>>>>> 32-bit platform is much more stable than 64-bit. Should I switch my
>>>>> system to 64-bit for later work?
>>>>>
>>>>>       
>>>>>           
>>>> Where do you get this impression?  I do almost all of my development on
>>>> 64-bit, and I don't recall an issue that was 64-bit host specific.
>>>>     
>>>>         
>>> Sorry about that ...
>>>
>>> because I always saw "host 64-bit" in the bug report although maybe
>>> they are not 64-bit host specific problem.
>>>   
>>>       
>> Yes.  Most testing (and production use) is done on 64-bit hosts, since 
>> virtualization is memory-intensive.  Also, you can test more types of 
>> guests this way.  Almost all virtualization-capable processors are 
>> also 64-bit capable.
>>     
> So, does that mean I need to install a 64-bit host to make the reproduce 
> easier?
>   

A 32-bit host is fine, if you don't run 64-bit guests.

-- 
Any sufficiently difficult bug is indistinguishable from a feature.


-------------------------------------------------------------------------
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2005.
http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/

^ permalink raw reply	[flat|nested] 13+ messages in thread

end of thread, other threads:[~2007-11-19  5:49 UTC | newest]

Thread overview: 13+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2007-11-17  5:46 What should I do for kvm development first? Neo Jia
     [not found] ` <5d649bdb0711162146x32d4b74bicbf58c0f851b9ede-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2007-11-17 15:29   ` Dan Kenigsberg
     [not found]     ` <20071117152930.GA4968-iWbx9bcAnq+Hk9JtIoIkgNBPR1lH4CV8@public.gmane.org>
2007-11-17 15:47       ` Izik Eidus
     [not found]         ` <473F0CFC.4000908-atKUWr5tajBWk0Htik3J/w@public.gmane.org>
2007-11-18  7:02           ` Neo Jia
     [not found]             ` <5d649bdb0711172302y4e3e8292r7ac10c89f0479b13-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2007-11-18  8:09               ` Izik Eidus
2007-11-18 10:47               ` Avi Kivity
     [not found]                 ` <4740182E.1070208-atKUWr5tajBWk0Htik3J/w@public.gmane.org>
2007-11-18 11:00                   ` Neo Jia
     [not found]                     ` <5d649bdb0711180300p1720e15co5383337a9b5181b1-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2007-11-18 11:04                       ` Avi Kivity
     [not found]                         ` <47401C4F.20508-atKUWr5tajBWk0Htik3J/w@public.gmane.org>
2007-11-18 11:15                           ` Neo Jia
     [not found]                             ` <5d649bdb0711180315u4a22c1c2kfe8f2a450aae38e0-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2007-11-18 11:21                               ` Avi Kivity
     [not found]                                 ` <4740202D.4070502-atKUWr5tajBWk0Htik3J/w@public.gmane.org>
2007-11-18 20:02                                   ` Neo Jia
     [not found]                                     ` <47409A38.50700-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
2007-11-19  5:49                                       ` Avi Kivity
2007-11-18 10:45   ` Avi Kivity

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox