All of lore.kernel.org
 help / color / mirror / Atom feed
From: Ingo Molnar <mingo@elte.hu>
To: Theodore Tso <tytso@MIT.EDU>
Cc: "Anthony Liguori" <anthony@codemonkey.ws>,
	"Pekka Enberg" <penberg@kernel.org>,
	"Vince Weaver" <vince@deater.net>, "Avi Kivity" <avi@redhat.com>,
	"kvm@vger.kernel.org list" <kvm@vger.kernel.org>,
	"linux-kernel@vger.kernel.org List"
	<linux-kernel@vger.kernel.org>,
	"qemu-devel Developers" <qemu-devel@nongnu.org>,
	"Alexander Graf" <agraf@suse.de>,
	"Blue Swirl" <blauwirbel@gmail.com>,
	"Américo Wang" <xiyou.wangcong@gmail.com>,
	"Linus Torvalds" <torvalds@linux-foundation.org>,
	"Thomas Gleixner" <tglx@linutronix.de>,
	"Peter Zijlstra" <a.p.zijlstra@chello.nl>,
	"Arnaldo Carvalho de Melo" <acme@redhat.com>
Subject: [F.A.Q.] the advantages of a shared tool/kernel Git repository, tools/perf/ and tools/kvm/
Date: Tue, 8 Nov 2011 10:32:25 +0100	[thread overview]
Message-ID: <20111108093225.GB32533@elte.hu> (raw)
In-Reply-To: <12F471C8-2CF3-4CD7-B417-C8CC898669E6@mit.edu>


* Theodore Tso <tytso@MIT.EDU> wrote:

> On Nov 7, 2011, at 5:19 PM, Anthony Liguori wrote:
> 
> > The kernel ecosystem does not have to be limited to linux.git.  
> > There could be a process to be a "kernel.org project" for 
> > projects that fit a certain set of criteria.  These projects 
> > could all share the Linux kernel release cadence and have a 
> > kernel maintainer as a sponsor or something like that.
> > 
> > That is something that could potentially benefit things like 
> > e2fs-tools and all of the other tools that are tied closely to 
> > the kernel.
> 
> We have that already.  Packages such as e2fsprogs, xfsprogs, 
> xfstests, sparse, git, etc., have git trees under git.kernel.org.  
> And I agree that's the perfect place for kvm-tool and perf.  :-)

I guess this should be a F.A.Q., but it's worth repeating that from 
the perf tooling project perspective, being integrated into the 
kernel tree in the past 2-3 years had *numerous* *massive* advantages 
that improved the project's quality.

The shared repo brought countless advantages that a simple kernel.org 
hosting in a split external tool repo would not have brought.

No ifs and when about it, these are the plain facts:

 - Better features, better ABIs: perf maintainers can enforce clean, 
   functional and usable tooling support *before* committing to an 
   ABI on the kernel side. This is a *huge* deal to improve the 
   quality of the kernel, the ABI and the tooling side and we made 
   use of it a number of times.

   A perf kernel feature has to come with working, high-quality and
   usable tooling support - or it won't go upstream. (I could think
   of numerous other subsystems which would see improvements if they
   enforced this too.)

 - We have a shared Git tree with unified, visible version control. I
   can see kernel feature commits followed by tooling support, in a
   single flow of related commits:

      perf probe: Update perf-probe document
      perf probe: Support --del option
      trace-kprobe: Support delete probe syntax

   With two separate Git repositories this kind of connection between
   the tool and the kernel is inevitably weakened or lost.

 - Easier development, easier testing: if you work on a kernel 
   feature and on matching tooling support then it's *much* easier to
   work in a single tree than working in two or more trees in 
   parallel. I have worked on multi-tree features before, and except
   special exceptions they are generally a big pain to develop.

   It's not just a developer convenience factor: "big pain" 
   inevitably transforms into "lower quality" as well.

 - There's a predictable 3 month release cycle of the perf tool,
   enforced *externally*, by the kernel project. This allowed much
   easier synchronization of kernel and user-space features and
   removes version friction. It also guarantees and simplifies the
   version frequency to packagers and users.

 - We are using and enforcing established quality control and coding
   principles of the kernel project. If we mess up then Linus pushes
   back on us at the last line of defense - and has pushed back on us
   in the past. I think many of the currently external kernel
   utilities could benefit from the resulting rise in quality.
   I've seen separate tool projects degrade into barely usable
   tinkerware - that i think cannot happen to perf, regardless of who
   maintains it in the future.

 - Better debuggability: sometimes a combination of a perf
   change in combination with a kernel change causes a breakage. I
   have bisected the shared tree a couple of times already, instead
   of having to bisect a (100,000 commits x 10,000 commits) combined
   space which much harder to debug ...

 - Code reuse: we can and do share source code between the kernel and
   the tool where it makes sense. Both the tooling and the kernel
   side code improves from this. (Often explicit librarization makes
   little sense due to the additional maintenance overhead of a split
   library project and the impossibly long latency of how the kernel
   can rely on the ready existence of such a newly created library
   project.)

 - [ etc: there's half a dozen of other, smaller positive effects as 
     well. ]

Also, while i'm generally pretty good at being the devil's advocate 
as well, but i've yet to see a *single* serious disadvantage of the 
shared repo:

 - Yes, in principle sharing code could be messy - in practice it is
   not, in fact it cleans things up where we share code and triggers 
   fixes on both sides. Sharing code *works*, as long as there's no 
   artificial project boundary.

 - Yes, in principle we could end up only testing new-kernel+new-tool 
   and regress older ABI or tool versions. In practice it does not 
   happen disproportionately: people (us developers included) do test 
   the other combinations as well and the ABI has been designed in a 
   way to make it backwards and forwards compatible by default. I 
   think we have messed up a surprisingly small number of times so 
   far, considering the complexity and growth rate of the ABI.

 - Yes, in principle we could end up being too kernel centric. In 
   practice people are using perf to measure user-space code far more 
   often - and we ourselves use perf to develop perf tooling, which 
   gives an indirect guarantee as well.

In our experience, the almost 3 years track record of perf gives a 
strong validation to the idea that tools that are closely related to 
the kernel can (and quite likely *should*) prosper in the kernel repo 
itself.

While it was somewhat of an unknowable experiement when we started it 
3 years ago, in hindsight it was a no-brainer decision with *many* 
documented advantages to both to the kernel and to tools/perf/.

So we definitely see correlation between tool quality and the shared 
repo maintenance set-up, and i think the list above gives plenty of 
reason to suspect causation as well ...

Finally, i find it rather weird that the people pushing perf to move 
out of the kernel have not actually *worked* in such a shared repo 
scheme yet...

None of the perf developers with whom i'm working complained about 
the shared repo so far - publicly or privately. By all means they are 
enjoying it and if you look at the stats and results you'll agree 
that they are highly productive working in that environment.

If you look at tools/kvm/ contributors you'll find a very similar 
mind-set and similar experiences - albeit the project is much younger 
and smaller.

*That is what matters*.

So i think you should seriously consider moving your projects *into* 
tools/ instead of trying to get other projects to move out ...

You should at least *try* the unified model before criticising it - 
because currently you guys are preaching about sex while having sworn 
a life long celibacy ;-)

Thanks,

	Ingo


WARNING: multiple messages have this Message-ID (diff)
From: Ingo Molnar <mingo@elte.hu>
To: Theodore Tso <tytso@MIT.EDU>
Cc: "Alexander Graf" <agraf@suse.de>,
	"Arnaldo Carvalho de Melo" <acme@redhat.com>,
	"Peter Zijlstra" <a.p.zijlstra@chello.nl>,
	"kvm@vger.kernel.org list" <kvm@vger.kernel.org>,
	"qemu-devel Developers" <qemu-devel@nongnu.org>,
	"linux-kernel@vger.kernel.org List"
	<linux-kernel@vger.kernel.org>, "Vince Weaver" <vince@deater.net>,
	"Pekka Enberg" <penberg@kernel.org>,
	"Blue Swirl" <blauwirbel@gmail.com>,
	"Avi Kivity" <avi@redhat.com>,
	"Américo Wang" <xiyou.wangcong@gmail.com>,
	"Thomas Gleixner" <tglx@linutronix.de>,
	"Linus Torvalds" <torvalds@linux-foundation.org>
Subject: [Qemu-devel] [F.A.Q.] the advantages of a shared tool/kernel Git repository, tools/perf/ and tools/kvm/
Date: Tue, 8 Nov 2011 10:32:25 +0100	[thread overview]
Message-ID: <20111108093225.GB32533@elte.hu> (raw)
In-Reply-To: <12F471C8-2CF3-4CD7-B417-C8CC898669E6@mit.edu>


* Theodore Tso <tytso@MIT.EDU> wrote:

> On Nov 7, 2011, at 5:19 PM, Anthony Liguori wrote:
> 
> > The kernel ecosystem does not have to be limited to linux.git.  
> > There could be a process to be a "kernel.org project" for 
> > projects that fit a certain set of criteria.  These projects 
> > could all share the Linux kernel release cadence and have a 
> > kernel maintainer as a sponsor or something like that.
> > 
> > That is something that could potentially benefit things like 
> > e2fs-tools and all of the other tools that are tied closely to 
> > the kernel.
> 
> We have that already.  Packages such as e2fsprogs, xfsprogs, 
> xfstests, sparse, git, etc., have git trees under git.kernel.org.  
> And I agree that's the perfect place for kvm-tool and perf.  :-)

I guess this should be a F.A.Q., but it's worth repeating that from 
the perf tooling project perspective, being integrated into the 
kernel tree in the past 2-3 years had *numerous* *massive* advantages 
that improved the project's quality.

The shared repo brought countless advantages that a simple kernel.org 
hosting in a split external tool repo would not have brought.

No ifs and when about it, these are the plain facts:

 - Better features, better ABIs: perf maintainers can enforce clean, 
   functional and usable tooling support *before* committing to an 
   ABI on the kernel side. This is a *huge* deal to improve the 
   quality of the kernel, the ABI and the tooling side and we made 
   use of it a number of times.

   A perf kernel feature has to come with working, high-quality and
   usable tooling support - or it won't go upstream. (I could think
   of numerous other subsystems which would see improvements if they
   enforced this too.)

 - We have a shared Git tree with unified, visible version control. I
   can see kernel feature commits followed by tooling support, in a
   single flow of related commits:

      perf probe: Update perf-probe document
      perf probe: Support --del option
      trace-kprobe: Support delete probe syntax

   With two separate Git repositories this kind of connection between
   the tool and the kernel is inevitably weakened or lost.

 - Easier development, easier testing: if you work on a kernel 
   feature and on matching tooling support then it's *much* easier to
   work in a single tree than working in two or more trees in 
   parallel. I have worked on multi-tree features before, and except
   special exceptions they are generally a big pain to develop.

   It's not just a developer convenience factor: "big pain" 
   inevitably transforms into "lower quality" as well.

 - There's a predictable 3 month release cycle of the perf tool,
   enforced *externally*, by the kernel project. This allowed much
   easier synchronization of kernel and user-space features and
   removes version friction. It also guarantees and simplifies the
   version frequency to packagers and users.

 - We are using and enforcing established quality control and coding
   principles of the kernel project. If we mess up then Linus pushes
   back on us at the last line of defense - and has pushed back on us
   in the past. I think many of the currently external kernel
   utilities could benefit from the resulting rise in quality.
   I've seen separate tool projects degrade into barely usable
   tinkerware - that i think cannot happen to perf, regardless of who
   maintains it in the future.

 - Better debuggability: sometimes a combination of a perf
   change in combination with a kernel change causes a breakage. I
   have bisected the shared tree a couple of times already, instead
   of having to bisect a (100,000 commits x 10,000 commits) combined
   space which much harder to debug ...

 - Code reuse: we can and do share source code between the kernel and
   the tool where it makes sense. Both the tooling and the kernel
   side code improves from this. (Often explicit librarization makes
   little sense due to the additional maintenance overhead of a split
   library project and the impossibly long latency of how the kernel
   can rely on the ready existence of such a newly created library
   project.)

 - [ etc: there's half a dozen of other, smaller positive effects as 
     well. ]

Also, while i'm generally pretty good at being the devil's advocate 
as well, but i've yet to see a *single* serious disadvantage of the 
shared repo:

 - Yes, in principle sharing code could be messy - in practice it is
   not, in fact it cleans things up where we share code and triggers 
   fixes on both sides. Sharing code *works*, as long as there's no 
   artificial project boundary.

 - Yes, in principle we could end up only testing new-kernel+new-tool 
   and regress older ABI or tool versions. In practice it does not 
   happen disproportionately: people (us developers included) do test 
   the other combinations as well and the ABI has been designed in a 
   way to make it backwards and forwards compatible by default. I 
   think we have messed up a surprisingly small number of times so 
   far, considering the complexity and growth rate of the ABI.

 - Yes, in principle we could end up being too kernel centric. In 
   practice people are using perf to measure user-space code far more 
   often - and we ourselves use perf to develop perf tooling, which 
   gives an indirect guarantee as well.

In our experience, the almost 3 years track record of perf gives a 
strong validation to the idea that tools that are closely related to 
the kernel can (and quite likely *should*) prosper in the kernel repo 
itself.

While it was somewhat of an unknowable experiement when we started it 
3 years ago, in hindsight it was a no-brainer decision with *many* 
documented advantages to both to the kernel and to tools/perf/.

So we definitely see correlation between tool quality and the shared 
repo maintenance set-up, and i think the list above gives plenty of 
reason to suspect causation as well ...

Finally, i find it rather weird that the people pushing perf to move 
out of the kernel have not actually *worked* in such a shared repo 
scheme yet...

None of the perf developers with whom i'm working complained about 
the shared repo so far - publicly or privately. By all means they are 
enjoying it and if you look at the stats and results you'll agree 
that they are highly productive working in that environment.

If you look at tools/kvm/ contributors you'll find a very similar 
mind-set and similar experiences - albeit the project is much younger 
and smaller.

*That is what matters*.

So i think you should seriously consider moving your projects *into* 
tools/ instead of trying to get other projects to move out ...

You should at least *try* the unified model before criticising it - 
because currently you guys are preaching about sex while having sworn 
a life long celibacy ;-)

Thanks,

	Ingo

  reply	other threads:[~2011-11-08  9:34 UTC|newest]

Thread overview: 421+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2011-11-06  1:35 [PATCH] KVM: Add wrapper script around QEMU to test kernels Alexander Graf
2011-11-06  1:35 ` [Qemu-devel] " Alexander Graf
2011-11-06  1:35 ` Alexander Graf
2011-11-06  1:14 ` [Qemu-devel] " Andreas Färber
2011-11-06  1:14   ` Andreas Färber
2011-11-06 10:04 ` Pekka Enberg
2011-11-06 10:04   ` [Qemu-devel] " Pekka Enberg
2011-11-06 10:04   ` Pekka Enberg
2011-11-06 10:07   ` Avi Kivity
2011-11-06 10:07     ` [Qemu-devel] " Avi Kivity
2011-11-06 10:07     ` Avi Kivity
2011-11-06 10:12     ` Pekka Enberg
2011-11-06 10:12       ` [Qemu-devel] " Pekka Enberg
2011-11-06 10:12       ` Pekka Enberg
2011-11-06 10:23       ` Avi Kivity
2011-11-06 10:23         ` [Qemu-devel] " Avi Kivity
2011-11-06 10:23         ` Avi Kivity
2011-11-06 11:08         ` Pekka Enberg
2011-11-06 11:08           ` [Qemu-devel] " Pekka Enberg
2011-11-06 11:08           ` Pekka Enberg
2011-11-06 11:50           ` Avi Kivity
2011-11-06 11:50             ` [Qemu-devel] " Avi Kivity
2011-11-06 11:50             ` Avi Kivity
2011-11-06 12:14             ` Pekka Enberg
2011-11-06 12:14               ` [Qemu-devel] " Pekka Enberg
2011-11-06 12:14               ` Pekka Enberg
2011-11-06 12:27               ` Avi Kivity
2011-11-06 12:27                 ` [Qemu-devel] " Avi Kivity
2011-11-06 12:27                 ` Avi Kivity
2011-11-06 12:32                 ` Pekka Enberg
2011-11-06 12:32                   ` [Qemu-devel] " Pekka Enberg
2011-11-06 12:32                   ` Pekka Enberg
2011-11-06 12:43                   ` Avi Kivity
2011-11-06 12:43                     ` [Qemu-devel] " Avi Kivity
2011-11-06 12:43                     ` Avi Kivity
2011-11-06 13:06                     ` Pekka Enberg
2011-11-06 13:06                       ` [Qemu-devel] " Pekka Enberg
2011-11-06 13:06                       ` Pekka Enberg
2011-11-06 15:56                       ` Avi Kivity
2011-11-06 15:56                         ` [Qemu-devel] " Avi Kivity
2011-11-06 15:56                         ` Avi Kivity
2011-11-06 16:35                         ` Pekka Enberg
2011-11-06 16:35                           ` [Qemu-devel] " Pekka Enberg
2011-11-06 16:35                           ` Pekka Enberg
2011-11-06 16:50                           ` Avi Kivity
2011-11-06 16:50                             ` [Qemu-devel] " Avi Kivity
2011-11-06 17:08                             ` Anthony Liguori
2011-11-06 17:08                               ` Anthony Liguori
2011-11-06 17:08                               ` Anthony Liguori
2011-11-06 18:09                               ` [Qemu-devel] " Pekka Enberg
2011-11-06 18:09                                 ` Pekka Enberg
2011-11-06 18:09                                 ` Pekka Enberg
2011-11-07  1:38                                 ` [Qemu-devel] " Anthony Liguori
2011-11-07  1:38                                   ` Anthony Liguori
2011-11-07  1:38                                   ` Anthony Liguori
2011-11-07  6:45                                   ` [Qemu-devel] " Pekka Enberg
2011-11-07  6:45                                     ` Pekka Enberg
2011-11-06 18:31                               ` Ted Ts'o
2011-11-06 18:31                                 ` Ted Ts'o
2011-11-06 18:54                                 ` Pekka Enberg
2011-11-06 18:58                                   ` Pekka Enberg
2011-11-06 23:19                                     ` Ted Ts'o
2011-11-06 23:19                                       ` Ted Ts'o
2011-11-07  6:42                                       ` Pekka Enberg
2011-11-07  6:42                                         ` Pekka Enberg
2011-11-07  6:42                                         ` Pekka Enberg
2011-11-07 17:03                                         ` [Qemu-devel] " Vince Weaver
2011-11-07 17:03                                           ` Vince Weaver
2011-11-07 17:03                                           ` Vince Weaver
2011-11-07 17:59                                           ` [Qemu-devel] " Ingo Molnar
2011-11-07 17:59                                             ` Ingo Molnar
2011-11-07 20:03                                             ` Frank Ch. Eigler
2011-11-07 20:03                                               ` Frank Ch. Eigler
2011-11-07 20:03                                               ` Frank Ch. Eigler
2011-11-07 20:09                                               ` [Qemu-devel] " Pekka Enberg
2011-11-07 20:09                                                 ` Pekka Enberg
2011-11-07 20:09                                                 ` Pekka Enberg
2011-11-07 20:35                                                 ` [Qemu-devel] " Ted Ts'o
2011-11-07 20:35                                                   ` Ted Ts'o
2011-11-08 10:22                                                   ` [F.A.Q.] perf ABI backwards and forwards compatibility Ingo Molnar
2011-11-08 10:22                                                     ` [Qemu-devel] " Ingo Molnar
2011-11-08 10:22                                                     ` Ingo Molnar
2011-11-08 10:32                                                     ` Peter Zijlstra
2011-11-08 10:32                                                       ` [Qemu-devel] " Peter Zijlstra
2011-11-08 10:32                                                       ` Peter Zijlstra
2011-11-08 11:34                                                       ` Ingo Molnar
2011-11-08 11:34                                                         ` [Qemu-devel] " Ingo Molnar
2011-11-08 10:41                                                     ` Theodore Tso
2011-11-08 10:41                                                       ` [Qemu-devel] " Theodore Tso
2011-11-08 11:20                                                       ` Pekka Enberg
2011-11-08 11:20                                                         ` [Qemu-devel] " Pekka Enberg
2011-11-08 11:20                                                         ` Pekka Enberg
2011-11-08 11:25                                                         ` Theodore Tso
2011-11-08 11:25                                                           ` [Qemu-devel] " Theodore Tso
2011-11-08 11:25                                                           ` Theodore Tso
2011-11-08 11:29                                                           ` Pekka Enberg
2011-11-08 11:29                                                             ` [Qemu-devel] " Pekka Enberg
2011-11-08 11:31                                                     ` Frank Ch. Eigler
2011-11-08 11:31                                                       ` [Qemu-devel] " Frank Ch. Eigler
2011-11-08 11:39                                                       ` Pekka Enberg
2011-11-08 11:39                                                         ` [Qemu-devel] " Pekka Enberg
2011-11-08 12:15                                                         ` Ingo Molnar
2011-11-08 12:15                                                           ` [Qemu-devel] " Ingo Molnar
2011-11-08 12:20                                                           ` Peter Zijlstra
2011-11-08 12:20                                                             ` [Qemu-devel] " Peter Zijlstra
2011-11-08 12:20                                                             ` Peter Zijlstra
2011-11-08 12:59                                                             ` Ingo Molnar
2011-11-08 12:59                                                               ` [Qemu-devel] " Ingo Molnar
2011-11-09 10:05                                                               ` Peter Zijlstra
2011-11-09 10:05                                                                 ` [Qemu-devel] " Peter Zijlstra
2011-11-09 10:05                                                                 ` Peter Zijlstra
2011-11-08  5:29                                             ` [Qemu-devel] [PATCH] KVM: Add wrapper script around QEMU to test kernels Vince Weaver
2011-11-08  5:29                                               ` Vince Weaver
2011-11-08 12:07                                               ` Ingo Molnar
2011-11-08 12:07                                                 ` Ingo Molnar
2011-11-08 12:07                                                 ` Ingo Molnar
2011-11-08 13:08                                                 ` [Qemu-devel] " Arnaldo Carvalho de Melo
2011-11-08 13:08                                                   ` Arnaldo Carvalho de Melo
2011-11-08 13:08                                                   ` Arnaldo Carvalho de Melo
2011-11-09  6:04                                                   ` [Qemu-devel] " Vince Weaver
2011-11-09  6:04                                                     ` Vince Weaver
2011-11-09  6:04                                                     ` Vince Weaver
2011-11-07 19:53                                           ` [Qemu-devel] " Pekka Enberg
2011-11-07 19:53                                             ` Pekka Enberg
2011-11-07 20:32                                             ` Ted Ts'o
2011-11-07 20:32                                               ` Ted Ts'o
2011-11-07 20:32                                               ` Ted Ts'o
2011-11-07 21:36                                               ` [Qemu-devel] " Pekka Enberg
2011-11-07 21:36                                               ` Pekka Enberg
2011-11-07 22:19                                                 ` Anthony Liguori
2011-11-07 22:19                                                   ` Anthony Liguori
2011-11-07 22:19                                                   ` Anthony Liguori
2011-11-07 23:42                                                   ` [Qemu-devel] " Theodore Tso
2011-11-07 23:42                                                     ` Theodore Tso
2011-11-07 23:42                                                     ` Theodore Tso
2011-11-08  9:32                                                     ` Ingo Molnar [this message]
2011-11-08  9:32                                                       ` [Qemu-devel] [F.A.Q.] the advantages of a shared tool/kernel Git repository, tools/perf/ and tools/kvm/ Ingo Molnar
2011-11-08 10:21                                                       ` Theodore Tso
2011-11-08 10:21                                                         ` [Qemu-devel] " Theodore Tso
2011-11-08 10:21                                                         ` Theodore Tso
2011-11-08 12:55                                                         ` Ingo Molnar
2011-11-08 12:55                                                           ` [Qemu-devel] " Ingo Molnar
2011-11-08 12:55                                                           ` Ingo Molnar
2011-11-08 16:33                                                           ` Ted Ts'o
2011-11-08 16:33                                                             ` [Qemu-devel] " Ted Ts'o
2011-11-08 17:14                                                             ` Anca Emanuel
2011-11-08 17:14                                                             ` Anca Emanuel
2011-11-08 17:14                                                               ` [Qemu-devel] " Anca Emanuel
2011-11-08 19:24                                                               ` Ted Ts'o
2011-11-08 19:24                                                                 ` [Qemu-devel] " Ted Ts'o
2011-11-09  8:28                                                                 ` Ingo Molnar
2011-11-09  8:28                                                                 ` Ingo Molnar
2011-11-09  8:28                                                                   ` [Qemu-devel] " Ingo Molnar
2011-11-08 21:15                                                             ` John Kacur
2011-11-08 21:15                                                             ` John Kacur
2011-11-08 21:15                                                               ` [Qemu-devel] " John Kacur
2011-11-09  8:38                                                               ` Ingo Molnar
2011-11-09  8:38                                                                 ` [Qemu-devel] " Ingo Molnar
2011-11-09  8:38                                                                 ` Ingo Molnar
2011-11-09  8:23                                                             ` Ingo Molnar
2011-11-09  8:23                                                               ` [Qemu-devel] " Ingo Molnar
2011-11-10  1:41                                                               ` Alexander Graf
2011-11-10  1:41                                                                 ` [Qemu-devel] " Alexander Graf
2011-11-10  1:41                                                                 ` Alexander Graf
2011-11-10  8:14                                                                 ` Ingo Molnar
2011-11-10  8:14                                                                   ` [Qemu-devel] " Ingo Molnar
2011-11-10  8:14                                                                   ` Ingo Molnar
2011-11-09  8:23                                                             ` Ingo Molnar
2011-11-08 12:56                                                         ` Arnaldo Carvalho de Melo
2011-11-08 12:56                                                           ` [Qemu-devel] " Arnaldo Carvalho de Melo
2011-11-08 13:40                                                           ` Gerd Hoffmann
2011-11-08 13:40                                                             ` [Qemu-devel] " Gerd Hoffmann
2011-11-08 14:32                                                             ` Arnaldo Carvalho de Melo
2011-11-08 14:32                                                               ` [Qemu-devel] " Arnaldo Carvalho de Melo
2011-11-08 15:38                                                               ` Gerd Hoffmann
2011-11-08 15:38                                                                 ` [Qemu-devel] " Gerd Hoffmann
2011-11-08 16:13                                                                 ` Arnaldo Carvalho de Melo
2011-11-08 16:13                                                                   ` [Qemu-devel] " Arnaldo Carvalho de Melo
2011-11-09  8:55                                                                   ` Ingo Molnar
2011-11-09  8:55                                                                     ` [Qemu-devel] " Ingo Molnar
2011-11-09  8:55                                                                     ` Ingo Molnar
2011-11-09  8:51                                                                 ` Ingo Molnar
2011-11-09  8:51                                                                   ` [Qemu-devel] " Ingo Molnar
2011-11-09 10:40                                                                   ` Gerd Hoffmann
2011-11-09 10:40                                                                     ` [Qemu-devel] " Gerd Hoffmann
2011-11-09 10:50                                                                     ` Hagen Paul Pfeifer
2011-11-09 10:50                                                                       ` [Qemu-devel] " Hagen Paul Pfeifer
2011-11-09 11:55                                                                     ` Arnaldo Carvalho de Melo
2011-11-09 11:55                                                                       ` [Qemu-devel] " Arnaldo Carvalho de Melo
2011-11-09 11:55                                                                       ` Arnaldo Carvalho de Melo
2011-11-09 12:26                                                                       ` Gerd Hoffmann
2011-11-09 12:26                                                                         ` [Qemu-devel] " Gerd Hoffmann
2011-11-09 12:26                                                                         ` Gerd Hoffmann
2011-11-09 12:30                                                                         ` Arnaldo Carvalho de Melo
2011-11-09 12:30                                                                           ` [Qemu-devel] " Arnaldo Carvalho de Melo
2011-11-09 12:33                                                                           ` Arnaldo Carvalho de Melo
2011-11-09 12:33                                                                             ` [Qemu-devel] " Arnaldo Carvalho de Melo
2011-11-09 12:33                                                                             ` Arnaldo Carvalho de Melo
2011-11-09 12:46                                                                             ` Peter Zijlstra
2011-11-09 12:46                                                                               ` [Qemu-devel] " Peter Zijlstra
2011-11-09 12:46                                                                               ` Peter Zijlstra
2011-11-09 12:51                                                                               ` Arnaldo Carvalho de Melo
2011-11-09 12:51                                                                                 ` [Qemu-devel] " Arnaldo Carvalho de Melo
2011-11-09 12:51                                                                                 ` Arnaldo Carvalho de Melo
2011-11-09 13:17                                                                             ` Ingo Molnar
2011-11-09 13:17                                                                               ` [Qemu-devel] " Ingo Molnar
2011-11-09 19:25                                                                       ` Jim Paris
2011-11-09 19:25                                                                         ` [Qemu-devel] " Jim Paris
2011-11-09 19:25                                                                         ` Jim Paris
2011-11-09 20:13                                                                         ` Arnaldo Carvalho de Melo
2011-11-09 20:13                                                                           ` [Qemu-devel] " Arnaldo Carvalho de Melo
2011-11-09 20:13                                                                           ` Arnaldo Carvalho de Melo
2011-11-09 22:32                                                                           ` Anca Emanuel
2011-11-09 22:32                                                                             ` [Qemu-devel] " Anca Emanuel
2011-11-09 22:32                                                                             ` Anca Emanuel
2011-11-10  8:00                                                                             ` Ingo Molnar
2011-11-10  8:00                                                                               ` [Qemu-devel] " Ingo Molnar
2011-11-10  8:00                                                                               ` Ingo Molnar
2011-11-10  8:12                                                                               ` Anca Emanuel
2011-11-10  8:12                                                                                 ` [Qemu-devel] " Anca Emanuel
2011-11-10  8:12                                                                                 ` Anca Emanuel
2011-11-10  8:39                                                                         ` Gerd Hoffmann
2011-11-10  8:39                                                                           ` [Qemu-devel] " Gerd Hoffmann
2011-11-10  8:39                                                                           ` Gerd Hoffmann
2011-11-08 15:43                                                       ` Steven Rostedt
2011-11-08 15:43                                                         ` [Qemu-devel] " Steven Rostedt
2011-11-09  9:21                                                         ` Ingo Molnar
2011-11-09  9:21                                                           ` [Qemu-devel] " Ingo Molnar
2011-11-09  9:21                                                           ` Ingo Molnar
2011-11-09 12:03                                                           ` Arnaldo Carvalho de Melo
2011-11-09 12:03                                                             ` [Qemu-devel] " Arnaldo Carvalho de Melo
2011-11-09 12:03                                                             ` Arnaldo Carvalho de Melo
2011-11-09 13:40                                                       ` Américo Wang
2011-11-09 13:40                                                         ` [Qemu-devel] " Américo Wang
2011-11-10  7:47                                                         ` Ingo Molnar
2011-11-10  7:47                                                           ` [Qemu-devel] " Ingo Molnar
2011-11-10  7:47                                                           ` Ingo Molnar
2011-11-07 10:31                                 ` [Qemu-devel] [PATCH] KVM: Add wrapper script around QEMU to test kernels Kevin Wolf
2011-11-07 10:31                                   ` Kevin Wolf
2011-11-07 11:38                                   ` [Qemu-devel] " Pekka Enberg
2011-11-07 11:38                                     ` Pekka Enberg
2011-11-07 11:38                                     ` Pekka Enberg
2011-11-07 11:59                                     ` [Qemu-devel] " Kevin Wolf
2011-11-07 11:59                                       ` Kevin Wolf
2011-11-07 11:59                                       ` Kevin Wolf
2011-11-06 16:19                       ` Jan Kiszka
2011-11-06 16:19                         ` [Qemu-devel] " Jan Kiszka
2011-11-06 16:30                         ` Pekka Enberg
2011-11-06 16:30                           ` [Qemu-devel] " Pekka Enberg
2011-11-06 16:30                           ` Pekka Enberg
2011-11-06 16:39                           ` Jan Kiszka
2011-11-06 16:39                             ` [Qemu-devel] " Jan Kiszka
2011-11-06 16:39                             ` Jan Kiszka
2011-11-06 17:11                             ` Pekka Enberg
2011-11-06 17:11                               ` [Qemu-devel] " Pekka Enberg
2011-11-06 17:11                               ` Pekka Enberg
2011-11-06 17:23                               ` Jan Kiszka
2011-11-06 17:23                                 ` [Qemu-devel] " Jan Kiszka
2011-11-06 17:23                                 ` Jan Kiszka
2011-11-06 17:55                                 ` Pekka Enberg
2011-11-06 17:55                                   ` [Qemu-devel] " Pekka Enberg
2011-11-06 17:55                                   ` Pekka Enberg
2011-11-06 16:39                         ` Pekka Enberg
2011-11-06 16:39                           ` [Qemu-devel] " Pekka Enberg
2011-11-06 16:39                           ` Pekka Enberg
2011-11-07 10:11                         ` Gerd Hoffmann
2011-11-07 10:11                           ` [Qemu-devel] " Gerd Hoffmann
2011-11-07 10:11                           ` Gerd Hoffmann
2011-11-07 10:18                           ` Pekka Enberg
2011-11-07 10:18                             ` [Qemu-devel] " Pekka Enberg
2011-11-06 17:10                       ` Anthony Liguori
2011-11-06 17:10                         ` Anthony Liguori
2011-11-06 17:10                         ` Anthony Liguori
2011-11-06 17:15                       ` Alexander Graf
2011-11-06 17:15                         ` [Qemu-devel] " Alexander Graf
2011-11-06 17:15                         ` Alexander Graf
2011-11-06 17:28                         ` Pekka Enberg
2011-11-06 17:28                           ` [Qemu-devel] " Pekka Enberg
2011-11-06 17:28                           ` Pekka Enberg
2011-11-06 17:30                           ` Alexander Graf
2011-11-06 17:30                             ` [Qemu-devel] " Alexander Graf
2011-11-06 17:30                             ` Alexander Graf
2011-11-06 18:05                             ` Pekka Enberg
2011-11-06 18:05                               ` [Qemu-devel] " Pekka Enberg
2011-11-06 18:05                               ` Pekka Enberg
2011-11-06 19:14                               ` Paolo Bonzini
2011-11-06 19:14                                 ` [Qemu-devel] " Paolo Bonzini
2011-11-06 19:14                                 ` Paolo Bonzini
2011-11-06 19:19                                 ` Pekka Enberg
2011-11-06 19:19                                   ` [Qemu-devel] " Pekka Enberg
2011-11-06 19:19                                   ` Pekka Enberg
2011-11-06 22:08                             ` Frank Ch. Eigler
2011-11-06 22:08                               ` [Qemu-devel] " Frank Ch. Eigler
2011-11-06 22:08                               ` Frank Ch. Eigler
2011-11-07  6:58                               ` Pekka Enberg
2011-11-07  6:58                                 ` [Qemu-devel] " Pekka Enberg
2011-11-07  6:58                                 ` Pekka Enberg
2011-11-06 19:11                           ` Paolo Bonzini
2011-11-06 19:11                             ` [Qemu-devel] " Paolo Bonzini
2011-11-06 19:11                             ` Paolo Bonzini
2011-11-06 19:17                             ` Pekka Enberg
2011-11-06 19:17                               ` [Qemu-devel] " Pekka Enberg
2011-11-06 20:01                               ` Paolo Bonzini
2011-11-06 20:01                                 ` [Qemu-devel] " Paolo Bonzini
2011-11-06 20:01                                 ` Paolo Bonzini
2011-11-06 20:17                                 ` Pekka Enberg
2011-11-06 20:17                                   ` [Qemu-devel] " Pekka Enberg
2011-11-06 20:17                                   ` Pekka Enberg
2011-11-07  8:00                                   ` Paolo Bonzini
2011-11-07  8:00                                     ` [Qemu-devel] " Paolo Bonzini
2011-11-07  8:00                                     ` Paolo Bonzini
2011-11-07  8:09                                     ` Pekka Enberg
2011-11-07  8:09                                       ` [Qemu-devel] " Pekka Enberg
2011-11-07  8:09                                       ` Pekka Enberg
2011-11-07  8:20                                       ` Paolo Bonzini
2011-11-07  8:20                                         ` [Qemu-devel] " Paolo Bonzini
2011-11-07  8:20                                         ` Paolo Bonzini
2011-11-07  8:45                                         ` Pekka Enberg
2011-11-07  8:45                                           ` [Qemu-devel] " Pekka Enberg
2011-11-07  8:45                                           ` Pekka Enberg
2011-11-07  8:52                                           ` Paolo Bonzini
2011-11-07  8:52                                             ` [Qemu-devel] " Paolo Bonzini
2011-11-07  8:52                                             ` Paolo Bonzini
2011-11-07  8:57                                             ` Pekka Enberg
2011-11-07  8:57                                               ` [Qemu-devel] " Pekka Enberg
2011-11-07  8:57                                               ` Pekka Enberg
2011-11-07  8:13                                     ` Pekka Enberg
2011-11-07  8:13                                       ` [Qemu-devel] " Pekka Enberg
2011-11-07  8:13                                       ` Pekka Enberg
2011-11-06 20:31                                 ` Pekka Enberg
2011-11-06 20:31                                   ` [Qemu-devel] " Pekka Enberg
2011-11-06 20:31                                   ` Pekka Enberg
2011-11-07 10:23                           ` Gerd Hoffmann
2011-11-07 10:23                             ` [Qemu-devel] " Gerd Hoffmann
2011-11-07 10:23                             ` Gerd Hoffmann
2011-11-07 10:30                             ` [Qemu-devel] " Sasha Levin
2011-11-07 10:30                               ` Sasha Levin
2011-11-07 10:30                               ` Sasha Levin
2011-11-07 11:02                               ` Paolo Bonzini
2011-11-07 11:02                                 ` [Qemu-devel] " Paolo Bonzini
2011-11-07 11:02                                 ` Paolo Bonzini
2011-11-07 11:44                                 ` Pekka Enberg
2011-11-07 11:44                                   ` [Qemu-devel] " Pekka Enberg
2011-11-07 11:44                                   ` Pekka Enberg
2011-11-07 12:18                                   ` Gerd Hoffmann
2011-11-07 12:18                                     ` [Qemu-devel] " Gerd Hoffmann
2011-11-07 12:18                                     ` Gerd Hoffmann
2011-11-07 12:21                                     ` Pekka Enberg
2011-11-07 12:21                                       ` [Qemu-devel] " Pekka Enberg
2011-11-07 12:21                                       ` Pekka Enberg
2011-11-07 12:26                               ` [Qemu-devel] " Avi Kivity
2011-11-07 12:26                                 ` Avi Kivity
2011-11-07 12:26                                 ` Avi Kivity
2011-11-07 12:29                                 ` [Qemu-devel] " Pekka Enberg
2011-11-07 12:29                                   ` Pekka Enberg
2011-11-07 12:29                                   ` Pekka Enberg
2011-11-07 12:43                                   ` [Qemu-devel] " Ted Ts'o
2011-11-07 12:43                                     ` Ted Ts'o
2011-11-07 12:43                                     ` Ted Ts'o
2011-11-07 12:44                                   ` [Qemu-devel] " Avi Kivity
2011-11-07 12:44                                     ` Avi Kivity
2011-11-07 12:44                                     ` Avi Kivity
2011-11-07 11:34                             ` Pekka Enberg
2011-11-07 11:34                               ` [Qemu-devel] " Pekka Enberg
2011-11-07 11:57                               ` Ingo Molnar
2011-11-07 11:57                                 ` [Qemu-devel] " Ingo Molnar
2011-11-07 11:57                                 ` Ingo Molnar
2011-11-07 13:17                                 ` [Qemu-devel] " Anthony Liguori
2011-11-07 13:17                                   ` Anthony Liguori
2011-11-07 12:08                               ` Gerd Hoffmann
2011-11-07 12:08                                 ` [Qemu-devel] " Gerd Hoffmann
2011-11-07 12:29                                 ` Ted Ts'o
2011-11-07 12:29                                   ` [Qemu-devel] " Ted Ts'o
2011-11-07 12:42                                   ` Pekka Enberg
2011-11-07 12:42                                   ` Pekka Enberg
2011-11-07 12:42                                     ` [Qemu-devel] " Pekka Enberg
2011-11-07 12:47                                     ` Ted Ts'o
2011-11-07 12:47                                       ` [Qemu-devel] " Ted Ts'o
2011-11-07 12:47                                       ` Ted Ts'o
2011-11-07 12:59                                       ` Pekka Enberg
2011-11-07 12:59                                         ` [Qemu-devel] " Pekka Enberg
2011-11-07 12:59                                       ` Pekka Enberg
2011-11-07 13:12                                       ` Pekka Enberg
2011-11-07 13:12                                       ` Pekka Enberg
2011-11-07 13:12                                         ` [Qemu-devel] " Pekka Enberg
2011-11-08 13:29                                         ` Karel Zak
2011-11-08 13:29                                           ` [Qemu-devel] " Karel Zak
2011-11-08 14:30                                           ` Pekka Enberg
2011-11-08 14:30                                             ` [Qemu-devel] " Pekka Enberg
2011-11-08 14:30                                             ` Pekka Enberg
2011-11-06 13:11                     ` Pekka Enberg
2011-11-06 13:11                       ` [Qemu-devel] " Pekka Enberg
2011-11-06 13:11                       ` Pekka Enberg
2011-11-06 17:09                       ` Alexander Graf
2011-11-06 17:09                         ` [Qemu-devel] " Alexander Graf
2011-11-06 12:27             ` Pekka Enberg
2011-11-06 12:27               ` [Qemu-devel] " Pekka Enberg
2011-11-06 12:27               ` Pekka Enberg
2011-11-08 14:41 ` Avi Kivity
2011-11-08 14:41   ` [Qemu-devel] " Avi Kivity
2011-11-08 14:52   ` Christoph Hellwig
2011-11-08 14:52     ` [Qemu-devel] " Christoph Hellwig
2011-11-08 14:55     ` Sasha Levin
2011-11-08 14:55       ` [Qemu-devel] " Sasha Levin
2011-11-08 14:55       ` Sasha Levin
2011-11-08 14:57     ` Avi Kivity
2011-11-08 14:57       ` [Qemu-devel] " Avi Kivity
2011-11-08 14:57       ` Avi Kivity
2011-11-08 14:59       ` Christoph Hellwig
2011-11-08 14:59         ` [Qemu-devel] " Christoph Hellwig
2011-11-08 17:34         ` Alexander Graf
2011-11-08 17:34           ` [Qemu-devel] " Alexander Graf
2011-11-08 17:36           ` Avi Kivity
2011-11-08 17:36             ` [Qemu-devel] " Avi Kivity
2011-11-08 15:04     ` Jan Kiszka
2011-11-08 15:04       ` [Qemu-devel] " Jan Kiszka
2011-11-08 15:26     ` Pekka Enberg
2011-11-08 15:26       ` [Qemu-devel] " Pekka Enberg
2011-11-08 15:26       ` Pekka Enberg
2011-11-08 15:28       ` Christoph Hellwig
2011-11-08 15:28         ` [Qemu-devel] " Christoph Hellwig

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=20111108093225.GB32533@elte.hu \
    --to=mingo@elte.hu \
    --cc=a.p.zijlstra@chello.nl \
    --cc=acme@redhat.com \
    --cc=agraf@suse.de \
    --cc=anthony@codemonkey.ws \
    --cc=avi@redhat.com \
    --cc=blauwirbel@gmail.com \
    --cc=kvm@vger.kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=penberg@kernel.org \
    --cc=qemu-devel@nongnu.org \
    --cc=tglx@linutronix.de \
    --cc=torvalds@linux-foundation.org \
    --cc=tytso@MIT.EDU \
    --cc=vince@deater.net \
    --cc=xiyou.wangcong@gmail.com \
    /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.