login
Login
/
Register
Search
Search this site:
Forums
News
Blogs
Features
Site
Home
»
Mailing list archives
»
linux-kernel
»
2010
»
March
»
18
Re: [PATCH] Enhance perf to collect KVM guest os statistics from host side
view
thread
Previous message: [
thread
] [
date
] [
author
]
Next message: [
thread
] [
date
] [
author
]
[view in full thread]
From: Zhang, Yanmin
Subject:
Re: [PATCH] Enhance perf to collect KVM guest os statistics from host side
Date: Wednesday, March 17, 2010 - 7:45 pm
On Wed, 2010-03-17 at 17:26 +0800, Zhang, Yanmin wrote:
quoted text
> On Tue, 2010-03-16 at 10:47 +0100, Ingo Molnar wrote: > > * Zhang, Yanmin <yanmin_zhang@linux.intel.com> wrote: > > > > > On Tue, 2010-03-16 at 15:48 +0800, Zhang, Yanmin wrote: > > > > On Tue, 2010-03-16 at 07:41 +0200, Avi Kivity wrote: > > > > > On 03/16/2010 07:27 AM, Zhang, Yanmin wrote: > > > > > > From: Zhang, Yanmin<yanmin_zhang@linux.intel.com> > > > > > > > > > > > > Based on the discussion in KVM community, I worked out the patch to support > > > > > > perf to collect guest os statistics from host side. This patch is implemented > > > > > > with Ingo, Peter and some other guys' kind help. Yang Sheng pointed out a > > > > > > critical bug and provided good suggestions with other guys. I really appreciate > > > > > > their kind help. > > > > > > > > > > > > The patch adds new subcommand kvm to perf. > > > > > > > > > > > > perf kvm top > > > > > > perf kvm record > > > > > > perf kvm report > > > > > > perf kvm diff > > > > > > > > > > > > The new perf could profile guest os kernel except guest os user space, but it > > > > > > could summarize guest os user space utilization per guest os. > > > > > > > > > > > > Below are some examples. > > > > > > 1) perf kvm top > > > > > > [root@lkp-ne01 norm]# perf kvm --host --guest --guestkallsyms=/home/ymzhang/guest/kallsyms > > > > > > --guestmodules=/home/ymzhang/guest/modules top > > > > > > > > > > > > > > > > > > > > > Thanks for your kind comments. > > > > > > > > > Excellent, support for guest kernel != host kernel is critical (I can't > > > > > remember the last time I ran same kernels). > > > > > > > > > > How would we support multiple guests with different kernels? > > > > With the patch, 'perf kvm report --sort pid" could show > > > > summary statistics for all guest os instances. Then, use > > > > parameter --pid of 'perf kvm record' to collect single problematic instance data. > > > Sorry. I found currently --pid isn't process but a thread (main thread). > > > > > > Ingo, > > > > > > Is it possible to support a new parameter or extend --inherit, so 'perf > > > record' and 'perf top' could collect data on all threads of a process when > > > the process is running? > > > > > > If not, I need add a new ugly parameter which is similar to --pid to filter > > > out process data in userspace. > > > > Yeah. For maximum utility i'd suggest to extend --pid to include this, and > > introduce --tid for the previous, limited-to-a-single-task functionality. > > > > Most users would expect --pid to work like a 'late attach' - i.e. to work like > > strace -f or like a gdb attach. > > Thanks Ingo, Avi. > > I worked out below patch against tip/master of March 15th. > > Subject: [PATCH] Change perf's parameter --pid to process-wide collection > From: Zhang, Yanmin <yanmin_zhang@linux.intel.com> > > Change parameter -p (--pid) to real process pid and add -t (--tid) meaning > thread id. Now, --pid means perf collects the statistics of all threads of > the process, while --tid means perf just collect the statistics of that thread. > > BTW, the patch fixes a bug of 'perf stat -p'. 'perf stat' always configures > attr->disabled=1 if it isn't a system-wide collection. If there is a '-p' > and no forks, 'perf stat -p' doesn't collect any data. In addition, the > while(!done) in run_perf_stat consumes 100% single cpu time which has bad impact > on running workload. I added a sleep(1) in the loop. > > Signed-off-by: Zhang Yanmin <yanmin_zhang@linux.intel.com>
Ingo, Sorry, the patch has bugs. I need do a better job and will work out 2 separate patches against the 2 issues. Yanmin --
unsubscribe notice
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to
majordomo@vger.kernel.org
More majordomo info at
http://vger.kernel.org/majordomo-info.html
Please read the FAQ at
http://www.tux.org/lkml/
Previous message: [
thread
] [
date
] [
author
]
Next message: [
thread
] [
date
] [
author
]
Messages in current thread:
[PATCH] Enhance perf to collect KVM guest os statistics fr ...
, Zhang, Yanmin
, (Mon Mar 15, 10:27 pm)
Re: [PATCH] Enhance perf to collect KVM guest os statistic ...
, Avi Kivity
, (Mon Mar 15, 10:41 pm)
Re: [PATCH] Enhance perf to collect KVM guest os statistic ...
, Ingo Molnar
, (Tue Mar 16, 12:24 am)
Re: [PATCH] Enhance perf to collect KVM guest os statistic ...
, Zhang, Yanmin
, (Tue Mar 16, 12:48 am)
Re: [PATCH] Enhance perf to collect KVM guest os statistic ...
, Avi Kivity
, (Tue Mar 16, 2:20 am)
Re: [PATCH] Enhance perf to collect KVM guest os statistic ...
, Zhang, Yanmin
, (Tue Mar 16, 2:28 am)
Re: [PATCH] Enhance perf to collect KVM guest os statistic ...
, Avi Kivity
, (Tue Mar 16, 2:32 am)
Re: [PATCH] Enhance perf to collect KVM guest os statistic ...
, Avi Kivity
, (Tue Mar 16, 2:33 am)
Re: [PATCH] Enhance perf to collect KVM guest os statistic ...
, Ingo Molnar
, (Tue Mar 16, 2:47 am)
Re: [PATCH] Enhance perf to collect KVM guest os statistic ...
, Ingo Molnar
, (Tue Mar 16, 2:53 am)
Re: [PATCH] Enhance perf to collect KVM guest os statistic ...
, Avi Kivity
, (Tue Mar 16, 3:13 am)
Re: [PATCH] Enhance perf to collect KVM guest os statistic ...
, Ingo Molnar
, (Tue Mar 16, 3:20 am)
Re: [PATCH] Enhance perf to collect KVM guest os statistic ...
, Avi Kivity
, (Tue Mar 16, 3:40 am)
Re: [PATCH] Enhance perf to collect KVM guest os statistic ...
, Ingo Molnar
, (Tue Mar 16, 3:50 am)
Re: [PATCH] Enhance perf to collect KVM guest os statistic ...
, Avi Kivity
, (Tue Mar 16, 4:10 am)
Re: [PATCH] Enhance perf to collect KVM guest os statistic ...
, Ingo Molnar
, (Tue Mar 16, 4:25 am)
Re: [PATCH] Enhance perf to collect KVM guest os statistic ...
, Avi Kivity
, (Tue Mar 16, 5:21 am)
Re: [PATCH] Enhance perf to collect KVM guest os statistic ...
, Ingo Molnar
, (Tue Mar 16, 5:29 am)
Re: [PATCH] Enhance perf to collect KVM guest os statistic ...
, Avi Kivity
, (Tue Mar 16, 5:41 am)
Re: [PATCH] Enhance perf to collect KVM guest os statistic ...
, Ingo Molnar
, (Tue Mar 16, 6:08 am)
Re: [PATCH] Enhance perf to collect KVM guest os statistic ...
, Avi Kivity
, (Tue Mar 16, 6:16 am)
Re: [PATCH] Enhance perf to collect KVM guest os statistic ...
, Ingo Molnar
, (Tue Mar 16, 6:31 am)
Re: [PATCH] Enhance perf to collect KVM guest os statistic ...
, Avi Kivity
, (Tue Mar 16, 6:37 am)
Re: [PATCH] Enhance perf to collect KVM guest os statistic ...
, Frank Ch. Eigler
, (Tue Mar 16, 8:06 am)
Re: [PATCH] Enhance perf to collect KVM guest os statistic ...
, Ingo Molnar
, (Tue Mar 16, 8:52 am)
Re: [PATCH] Enhance perf to collect KVM guest os statistic ...
, Frank Ch. Eigler
, (Tue Mar 16, 9:08 am)
Re: [PATCH] Enhance perf to collect KVM guest os statistic ...
, Ingo Molnar
, (Tue Mar 16, 9:35 am)
Re: [PATCH] Enhance perf to collect KVM guest os statistic ...
, Anthony Liguori
, (Tue Mar 16, 10:06 am)
Re: [PATCH] Enhance perf to collect KVM guest os statistic ...
, Anthony Liguori
, (Tue Mar 16, 10:34 am)
Re: [PATCH] Enhance perf to collect KVM guest os statistic ...
, Ingo Molnar
, (Tue Mar 16, 10:39 am)
Re: [PATCH] Enhance perf to collect KVM guest os statistic ...
, Ingo Molnar
, (Tue Mar 16, 10:52 am)
Re: [PATCH] Enhance perf to collect KVM guest os statistic ...
, Anthony Liguori
, (Tue Mar 16, 11:06 am)
Re: [PATCH] Enhance perf to collect KVM guest os statistic ...
, Ingo Molnar
, (Tue Mar 16, 11:28 am)
Re: [PATCH] Enhance perf to collect KVM guest os statistic ...
, oerg Roedel
, (Tue Mar 16, 3:30 pm)
Re: [PATCH] Enhance perf to collect KVM guest os statistic ...
, Masami Hiramatsu
, (Tue Mar 16, 4:01 pm)
Re: [PATCH] Enhance perf to collect KVM guest os statistic ...
, Anthony Liguori
, (Tue Mar 16, 4:04 pm)
Re: [PATCH] Enhance perf to collect KVM guest os statistic ...
, Anthony Liguori
, (Tue Mar 16, 4:07 pm)
Re: [PATCH] Enhance perf to collect KVM guest os statistic ...
, Frank Ch. Eigler
, (Tue Mar 16, 5:41 pm)
Re: [PATCH] Enhance perf to collect KVM guest os statistic ...
, Zhang, Yanmin
, (Tue Mar 16, 7:34 pm)
Re: [PATCH] Enhance perf to collect KVM guest os statistic ...
, Avi Kivity
, (Tue Mar 16, 8:54 pm)
Re: [PATCH] Enhance perf to collect KVM guest os statistic ...
, Ingo Molnar
, (Wed Mar 17, 12:27 am)
[RFC] Unify KVM kernel-space and user-space code into a si ...
, Ingo Molnar
, (Wed Mar 17, 1:10 am)
Re: [PATCH] Enhance perf to collect KVM guest os statistic ...
, Ingo Molnar
, (Wed Mar 17, 1:14 am)
Re: [PATCH] Enhance perf to collect KVM guest os statistic ...
, Ingo Molnar
, (Wed Mar 17, 1:16 am)
Re: [PATCH] Enhance perf to collect KVM guest os statistic ...
, Avi Kivity
, (Wed Mar 17, 1:20 am)
Re: [PATCH] Enhance perf to collect KVM guest os statistic ...
, Ingo Molnar
, (Wed Mar 17, 1:53 am)
Re: [PATCH] Enhance perf to collect KVM guest os statistic ...
, Ingo Molnar
, (Wed Mar 17, 1:59 am)
Re: [PATCH] Enhance perf to collect KVM guest os statistic ...
, Zhang, Yanmin
, (Wed Mar 17, 2:26 am)
Re: [PATCH] Enhance perf to collect KVM guest os statistic ...
, Sheng Yang
, (Wed Mar 17, 2:28 am)
Re: [PATCH] Enhance perf to collect KVM guest os statistic ...
, Avi Kivity
, (Wed Mar 17, 2:41 am)
Re: [PATCH] Enhance perf to collect KVM guest os statistic ...
, Sheng Yang
, (Wed Mar 17, 2:51 am)
Re: [PATCH] Enhance perf to collect KVM guest os statistic ...
, Avi Kivity
, (Wed Mar 17, 3:06 am)
Re: [PATCH] Enhance perf to collect KVM guest os statistic ...
, Zachary Amsden
, (Wed Mar 17, 2:14 pm)
Re: [PATCH] Enhance perf to collect KVM guest os statistic ...
, Sheng Yang
, (Wed Mar 17, 6:19 pm)
Re: [PATCH] Enhance perf to collect KVM guest os statistic ...
, Zhang, Yanmin
, (Wed Mar 17, 7:45 pm)
Re: [PATCH] Enhance perf to collect KVM guest os statistic ...
, Zachary Amsden
, (Wed Mar 17, 9:50 pm)
Re: [PATCH] Enhance perf to collect KVM guest os statistic ...
, Sheng Yang
, (Wed Mar 17, 10:22 pm)
RE: [PATCH] Enhance perf to collect KVM guest os statistic ...
, Huang, Zhiteng
, (Wed Mar 17, 10:27 pm)
Re: [PATCH] Enhance perf to collect KVM guest os statistic ...
, Sheng Yang
, (Wed Mar 17, 10:41 pm)
Re: [PATCH] Enhance perf to collect KVM guest os statistic ...
, Zhang, Yanmin
, (Thu Mar 18, 12:49 am)
Re: [PATCH] Enhance perf to collect KVM guest os statistic ...
, Ingo Molnar
, (Thu Mar 18, 1:03 am)
Re: [RFC] Unify KVM kernel-space and user-space code into ...
, Avi Kivity
, (Thu Mar 18, 1:20 am)
Re: [RFC] Unify KVM kernel-space and user-space code into ...
, Jes Sorensen
, (Thu Mar 18, 1:44 am)
Re: [PATCH] Enhance perf to collect KVM guest os statistic ...
, Zachary Amsden
, (Thu Mar 18, 1:47 am)
Re: [RFC] Unify KVM kernel-space and user-space code into ...
, Ingo Molnar
, (Thu Mar 18, 1:56 am)
Re: [RFC] Unify KVM kernel-space and user-space code into ...
, Ingo Molnar
, (Thu Mar 18, 2:22 am)
Re: [RFC] Unify KVM kernel-space and user-space code into ...
, Alexander Graf
, (Thu Mar 18, 2:24 am)
Re: [RFC] Unify KVM kernel-space and user-space code into ...
, Ingo Molnar
, (Thu Mar 18, 2:54 am)
Re: [RFC] Unify KVM kernel-space and user-space code into ...
, Ingo Molnar
, (Thu Mar 18, 3:10 am)
Re: [RFC] Unify KVM kernel-space and user-space code into ...
, Avi Kivity
, (Thu Mar 18, 3:12 am)
Re: [RFC] Unify KVM kernel-space and user-space code into ...
, Avi Kivity
, (Thu Mar 18, 3:21 am)
Re: [RFC] Unify KVM kernel-space and user-space code into ...
, Ingo Molnar
, (Thu Mar 18, 3:28 am)
Re: [RFC] Unify KVM kernel-space and user-space code into ...
, Avi Kivity
, (Thu Mar 18, 3:32 am)
Re: [RFC] Unify KVM kernel-space and user-space code into ...
, Jes Sorensen
, (Thu Mar 18, 3:40 am)
Re: [RFC] Unify KVM kernel-space and user-space code into ...
, Ingo Molnar
, (Thu Mar 18, 3:50 am)
Re: [RFC] Unify KVM kernel-space and user-space code into ...
, Ingo Molnar
, (Thu Mar 18, 3:58 am)
Re: [RFC] Unify KVM kernel-space and user-space code into ...
, Ingo Molnar
, (Thu Mar 18, 4:19 am)
Re: [RFC] Unify KVM kernel-space and user-space code into ...
, Avi Kivity
, (Thu Mar 18, 4:30 am)
Re: [RFC] Unify KVM kernel-space and user-space code into ...
, Ingo Molnar
, (Thu Mar 18, 4:35 am)
Re: [RFC] Unify KVM kernel-space and user-space code into ...
, Ingo Molnar
, (Thu Mar 18, 4:48 am)
Re: [RFC] Unify KVM kernel-space and user-space code into ...
, Alexander Graf
, (Thu Mar 18, 5:00 am)
Re: [RFC] Unify KVM kernel-space and user-space code into ...
, Avi Kivity
, (Thu Mar 18, 5:22 am)
Re: [RFC] Unify KVM kernel-space and user-space code into ...
, Frank Ch. Eigler
, (Thu Mar 18, 5:33 am)
Re: [RFC] Unify KVM kernel-space and user-space code into ...
, Ingo Molnar
, (Thu Mar 18, 6:00 am)
Re: [RFC] Unify KVM kernel-space and user-space code into ...
, John Kacur
, (Thu Mar 18, 6:01 am)
Re: [RFC] Unify KVM kernel-space and user-space code into ...
, Ingo Molnar
, (Thu Mar 18, 6:02 am)
Re: [PATCH] Enhance perf to collect KVM guest os statistic ...
, Arnaldo Carvalho de Melo
, (Thu Mar 18, 6:03 am)
Re: [RFC] Unify KVM kernel-space and user-space code into ...
, Avi Kivity
, (Thu Mar 18, 6:10 am)
Re: [RFC] Unify KVM kernel-space and user-space code into ...
, Jes Sorensen
, (Thu Mar 18, 6:23 am)
Re: [RFC] Unify KVM kernel-space and user-space code into ...
, Frank Ch. Eigler
, (Thu Mar 18, 6:24 am)
Re: [RFC] Unify KVM kernel-space and user-space code into ...
, Ingo Molnar
, (Thu Mar 18, 6:31 am)
Re: [RFC] Unify KVM kernel-space and user-space code into ...
, Avi Kivity
, (Thu Mar 18, 6:36 am)
Re: [RFC] Unify KVM kernel-space and user-space code into ...
, Daniel P. Berrange
, (Thu Mar 18, 6:44 am)
Re: [RFC] Unify KVM kernel-space and user-space code into ...
, Avi Kivity
, (Thu Mar 18, 6:46 am)
Re: [RFC] Unify KVM kernel-space and user-space code into ...
, Ingo Molnar
, (Thu Mar 18, 6:48 am)
Re: [RFC] Unify KVM kernel-space and user-space code into ...
, Ingo Molnar
, (Thu Mar 18, 6:57 am)
Re: [RFC] Unify KVM kernel-space and user-space code into ...
, Ingo Molnar
, (Thu Mar 18, 6:59 am)
Re: [RFC] Unify KVM kernel-space and user-space code into ...
, John Kacur
, (Thu Mar 18, 7:06 am)
Re: [RFC] Unify KVM kernel-space and user-space code into ...
, Ingo Molnar
, (Thu Mar 18, 7:09 am)
Re: [RFC] Unify KVM kernel-space and user-space code into ...
, Ingo Molnar
, (Thu Mar 18, 7:11 am)
Re: [RFC] Unify KVM kernel-space and user-space code into ...
, Ingo Molnar
, (Thu Mar 18, 7:22 am)
Re: [RFC] Unify KVM kernel-space and user-space code into ...
, Ingo Molnar
, (Thu Mar 18, 7:25 am)
Re: [RFC] Unify KVM kernel-space and user-space code into ...
, Avi Kivity
, (Thu Mar 18, 7:25 am)
Re: [RFC] Unify KVM kernel-space and user-space code into ...
, Ingo Molnar
, (Thu Mar 18, 7:36 am)
Re: [RFC] Unify KVM kernel-space and user-space code into ...
, Avi Kivity
, (Thu Mar 18, 7:38 am)
Re: [RFC] Unify KVM kernel-space and user-space code into ...
, Anthony Liguori
, (Thu Mar 18, 7:38 am)
Re: [RFC] Unify KVM kernel-space and user-space code into ...
, Frank Ch. Eigler
, (Thu Mar 18, 7:39 am)
Re: [RFC] Unify KVM kernel-space and user-space code into ...
, Anthony Liguori
, (Thu Mar 18, 7:44 am)
Re: [RFC] Unify KVM kernel-space and user-space code into ...
, Jes Sorensen
, (Thu Mar 18, 7:45 am)
Re: [RFC] Unify KVM kernel-space and user-space code into ...
, Avi Kivity
, (Thu Mar 18, 7:51 am)
Re: [RFC] Unify KVM kernel-space and user-space code into ...
, Anthony Liguori
, (Thu Mar 18, 7:53 am)
Re: [RFC] Unify KVM kernel-space and user-space code into ...
, Anthony Liguori
, (Thu Mar 18, 7:59 am)
Re: [RFC] Unify KVM kernel-space and user-space code into ...
, Ingo Molnar
, (Thu Mar 18, 8:17 am)
Re: [RFC] Unify KVM kernel-space and user-space code into ...
, Anthony Liguori
, (Thu Mar 18, 9:11 am)
Re: [RFC] Unify KVM kernel-space and user-space code into ...
, Ingo Molnar
, (Thu Mar 18, 9:13 am)
Re: [RFC] Unify KVM kernel-space and user-space code into ...
, Ingo Molnar
, (Thu Mar 18, 9:28 am)
Re: [RFC] Unify KVM kernel-space and user-space code into ...
, Anthony Liguori
, (Thu Mar 18, 9:38 am)
Re: [RFC] Unify KVM kernel-space and user-space code into ...
, Pekka Enberg
, (Thu Mar 18, 9:51 am)
Re: [RFC] Unify KVM kernel-space and user-space code into ...
, Ingo Molnar
, (Thu Mar 18, 9:54 am)
Re: [RFC] Unify KVM kernel-space and user-space code into ...
, Avi Kivity
, (Thu Mar 18, 9:54 am)
Re: [RFC] Unify KVM kernel-space and user-space code into ...
, Ingo Molnar
, (Thu Mar 18, 10:02 am)
Re: [RFC] Unify KVM kernel-space and user-space code into ...
, Avi Kivity
, (Thu Mar 18, 10:09 am)
Re: [RFC] Unify KVM kernel-space and user-space code into ...
, Ingo Molnar
, (Thu Mar 18, 10:11 am)
Re: [RFC] Unify KVM kernel-space and user-space code into ...
, Ingo Molnar
, (Thu Mar 18, 10:16 am)
Re: [RFC] Unify KVM kernel-space and user-space code into ...
, Ingo Molnar
, (Thu Mar 18, 10:28 am)
Re: [RFC] Unify KVM kernel-space and user-space code into ...
, Anthony Liguori
, (Thu Mar 18, 11:10 am)
Re: [RFC] Unify KVM kernel-space and user-space code into ...
, Anthony Liguori
, (Thu Mar 18, 11:20 am)
Re: [RFC] Unify KVM kernel-space and user-space code into ...
, Frederic Weisbecker
, (Thu Mar 18, 11:20 am)
Re: [RFC] Unify KVM kernel-space and user-space code into ...
, Frank Ch. Eigler
, (Thu Mar 18, 12:50 pm)
Re: [RFC] Unify KVM kernel-space and user-space code into ...
, Ingo Molnar
, (Thu Mar 18, 1:47 pm)
Re: [RFC] Unify KVM kernel-space and user-space code into ...
, Zachary Amsden
, (Thu Mar 18, 2:02 pm)
Re: [RFC] Unify KVM kernel-space and user-space code into ...
, Ingo Molnar
, (Thu Mar 18, 2:15 pm)
Re: [RFC] Unify KVM kernel-space and user-space code into ...
, Zachary Amsden
, (Thu Mar 18, 3:19 pm)
Re: [RFC] Unify KVM kernel-space and user-space code into ...
, Ingo Molnar
, (Thu Mar 18, 3:44 pm)
[PATCH] Enhance perf to collect KVM guest os statistics fr ...
, Zhang, Yanmin
, (Thu Mar 18, 8:38 pm)
Re: [RFC] Unify KVM kernel-space and user-space code into ...
, Avi Kivity
, (Fri Mar 19, 12:21 am)
Re: [RFC] Unify KVM kernel-space and user-space code into ...
, Avi Kivity
, (Fri Mar 19, 12:56 am)
Re: [PATCH] Enhance perf to collect KVM guest os statistic ...
, Ingo Molnar
, (Fri Mar 19, 1:21 am)
Re: [RFC] Unify KVM kernel-space and user-space code into ...
, Ingo Molnar
, (Fri Mar 19, 1:53 am)
Re: [RFC] Unify KVM kernel-space and user-space code into ...
, Paul Mundt
, (Fri Mar 19, 2:19 am)
Re: [RFC] Unify KVM kernel-space and user-space code into ...
, Olivier Galibert
, (Fri Mar 19, 2:52 am)
Re: [RFC] Unify KVM kernel-space and user-space code into ...
, Anthony Liguori
, (Fri Mar 19, 5:56 am)
Re: [LKML] Re: [RFC] Unify KVM kernel-space and user-space ...
, Konrad Rzeszutek Wilk
, (Fri Mar 19, 6:56 am)
Re: [RFC] Unify KVM kernel-space and user-space code into ...
, Andrea Arcangeli
, (Fri Mar 19, 7:53 am)
Re: [PATCH] Enhance perf to collect KVM guest os statistic ...
, oerg Roedel
, (Fri Mar 19, 10:29 am)
Re: [RFC] Unify KVM kernel-space and user-space code into ...
, Avi Kivity
, (Sat Mar 20, 12:35 am)
Re: [RFC] Unify KVM kernel-space and user-space code into ...
, Andrea Arcangeli
, (Sat Mar 20, 7:59 am)
Re: [RFC] Unify KVM kernel-space and user-space code into ...
, Avi Kivity
, (Sun Mar 21, 3:03 am)
Re: [RFC] Unify KVM kernel-space and user-space code into ...
, Gabor Gombas
, (Sun Mar 21, 6:27 am)
Re: [PATCH] Enhance perf to collect KVM guest os statistic ...
, Ingo Molnar
, (Sun Mar 21, 11:43 am)
Re: [RFC] Unify KVM kernel-space and user-space code into ...
, Ingo Molnar
, (Sun Mar 21, 12:06 pm)
Re: [RFC] Unify KVM kernel-space and user-space code into ...
, Ingo Molnar
, (Sun Mar 21, 12:17 pm)
Re: [RFC] Unify KVM kernel-space and user-space code into ...
, Antoine Martin
, (Sun Mar 21, 12:35 pm)
Re: [RFC] Unify KVM kernel-space and user-space code into ...
, Ingo Molnar
, (Sun Mar 21, 12:59 pm)
Re: [RFC] Unify KVM kernel-space and user-space code into ...
, Avi Kivity
, (Sun Mar 21, 1:01 pm)
Re: [RFC] Unify KVM kernel-space and user-space code into ...
, Olivier Galibert
, (Sun Mar 21, 1:08 pm)
Re: [RFC] Unify KVM kernel-space and user-space code into ...
, Avi Kivity
, (Sun Mar 21, 1:09 pm)
Re: [RFC] Unify KVM kernel-space and user-space code into ...
, Avi Kivity
, (Sun Mar 21, 1:11 pm)
Re: [RFC] Unify KVM kernel-space and user-space code into ...
, Antoine Martin
, (Sun Mar 21, 1:18 pm)
Re: [RFC] Unify KVM kernel-space and user-space code into ...
, Avi Kivity
, (Sun Mar 21, 1:22 pm)
Re: [RFC] Unify KVM kernel-space and user-space code into ...
, Avi Kivity
, (Sun Mar 21, 1:24 pm)
Re: [RFC] Unify KVM kernel-space and user-space code into ...
, Ingo Molnar
, (Sun Mar 21, 1:31 pm)
Re: [RFC] Unify KVM kernel-space and user-space code into ...
, Antoine Martin
, (Sun Mar 21, 1:31 pm)
Re: [RFC] Unify KVM kernel-space and user-space code into ...
, Ingo Molnar
, (Sun Mar 21, 1:37 pm)
Re: [RFC] Unify KVM kernel-space and user-space code into ...
, Ingo Molnar
, (Sun Mar 21, 1:55 pm)
Re: [RFC] Unify KVM kernel-space and user-space code into ...
, Ingo Molnar
, (Sun Mar 21, 2:00 pm)
Re: [RFC] Unify KVM kernel-space and user-space code into ...
, Avi Kivity
, (Sun Mar 21, 2:03 pm)
Re: [RFC] Unify KVM kernel-space and user-space code into ...
, Ingo Molnar
, (Sun Mar 21, 2:20 pm)
Re: [RFC] Unify KVM kernel-space and user-space code into ...
, Avi Kivity
, (Sun Mar 21, 2:30 pm)
Re: [RFC] Unify KVM kernel-space and user-space code into ...
, Avi Kivity
, (Sun Mar 21, 2:42 pm)
Re: [RFC] Unify KVM kernel-space and user-space code into ...
, Avi Kivity
, (Sun Mar 21, 2:44 pm)
Re: [RFC] Unify KVM kernel-space and user-space code into ...
, Ingo Molnar
, (Sun Mar 21, 2:52 pm)
Re: [RFC] Unify KVM kernel-space and user-space code into ...
, Ingo Molnar
, (Sun Mar 21, 2:54 pm)
Re: [RFC] Unify KVM kernel-space and user-space code into ...
, Ingo Molnar
, (Sun Mar 21, 3:00 pm)
Re: [RFC] Unify KVM kernel-space and user-space code into ...
, Anthony Liguori
, (Sun Mar 21, 4:35 pm)
Re: [RFC] Unify KVM kernel-space and user-space code into ...
, Anthony Liguori
, (Sun Mar 21, 4:43 pm)
Re: [RFC] Unify KVM kernel-space and user-space code into ...
, Anthony Liguori
, (Sun Mar 21, 4:50 pm)
Re: [RFC] Unify KVM kernel-space and user-space code into ...
, Anthony Liguori
, (Sun Mar 21, 5:16 pm)
Re: [RFC] Unify KVM kernel-space and user-space code into ...
, Anthony Liguori
, (Sun Mar 21, 5:25 pm)
Re: [RFC] Unify KVM kernel-space and user-space code into ...
, Avi Kivity
, (Sun Mar 21, 11:35 pm)
Re: [RFC] Unify KVM kernel-space and user-space code into ...
, Avi Kivity
, (Sun Mar 21, 11:37 pm)
Re: [RFC] Unify KVM kernel-space and user-space code into ...
, Avi Kivity
, (Sun Mar 21, 11:49 pm)
Re: [RFC] Unify KVM kernel-space and user-space code into ...
, Zhang, Yanmin
, (Sun Mar 21, 11:59 pm)
Re: [RFC] Unify KVM kernel-space and user-space code into ...
, Avi Kivity
, (Mon Mar 22, 12:13 am)
Re: [RFC] Unify KVM kernel-space and user-space code into ...
, Avi Kivity
, (Mon Mar 22, 12:18 am)
Re: [PATCH] Enhance perf to collect KVM guest os statistic ...
, Zhang, Yanmin
, (Mon Mar 22, 12:24 am)
Re: [PATCH] Enhance perf to collect KVM guest os statistic ...
, oerg Roedel
, (Mon Mar 22, 3:14 am)
Re: [PATCH] Enhance perf to collect KVM guest os statistic ...
, Ingo Molnar
, (Mon Mar 22, 3:37 am)
Re: [PATCH] Enhance perf to collect KVM guest os statistic ...
, Ingo Molnar
, (Mon Mar 22, 3:59 am)
Re: [RFC] Unify KVM kernel-space and user-space code into ...
, oerg Roedel
, (Mon Mar 22, 4:10 am)
Re: [RFC] Unify KVM kernel-space and user-space code into ...
, Ingo Molnar
, (Mon Mar 22, 4:14 am)
Re: [RFC] Unify KVM kernel-space and user-space code into ...
, Alexander Graf
, (Mon Mar 22, 4:23 am)
Re: [RFC] Unify KVM kernel-space and user-space code into ...
, Ingo Molnar
, (Mon Mar 22, 4:23 am)
Re: [RFC] Unify KVM kernel-space and user-space code into ...
, Ingo Molnar
, (Mon Mar 22, 4:39 am)
Re: [PATCH] Enhance perf to collect KVM guest os statistic ...
, Joerg Roedel
, (Mon Mar 22, 4:47 am)
Re: [RFC] Unify KVM kernel-space and user-space code into ...
, Ingo Molnar
, (Mon Mar 22, 4:48 am)
Re: [RFC] Unify KVM kernel-space and user-space code into ...
, Ingo Molnar
, (Mon Mar 22, 4:59 am)
Re: [RFC] Unify KVM kernel-space and user-space code into ...
, Antoine Martin
, (Mon Mar 22, 5:05 am)
Re: [RFC] Unify KVM kernel-space and user-space code into ...
, Ingo Molnar
, (Mon Mar 22, 5:22 am)
Re: [PATCH] Enhance perf to collect KVM guest os statistic ...
, Ingo Molnar
, (Mon Mar 22, 5:26 am)
Re: [RFC] Unify KVM kernel-space and user-space code into ...
, Avi Kivity
, (Mon Mar 22, 5:29 am)
Re: [RFC] Unify KVM kernel-space and user-space code into ...
, Pekka Enberg
, (Mon Mar 22, 5:31 am)
Re: [RFC] Unify KVM kernel-space and user-space code into ...
, Lukas Kolbe
, (Mon Mar 22, 5:33 am)
Re: [RFC] Unify KVM kernel-space and user-space code into ...
, Avi Kivity
, (Mon Mar 22, 5:36 am)
Re: [RFC] Unify KVM kernel-space and user-space code into ...
, Daniel P. Berrange
, (Mon Mar 22, 5:37 am)
Re: [RFC] Unify KVM kernel-space and user-space code into ...
, Ingo Molnar
, (Mon Mar 22, 5:44 am)
Re: [RFC] Unify KVM kernel-space and user-space code into ...
, Pekka Enberg
, (Mon Mar 22, 5:44 am)
Re: [RFC] Unify KVM kernel-space and user-space code into ...
, Avi Kivity
, (Mon Mar 22, 5:44 am)
Re: [RFC] Unify KVM kernel-space and user-space code into ...
, Avi Kivity
, (Mon Mar 22, 5:49 am)
Re: [RFC] Unify KVM kernel-space and user-space code into ...
, Pekka Enberg
, (Mon Mar 22, 5:50 am)
Re: [RFC] Unify KVM kernel-space and user-space code into ...
, Avi Kivity
, (Mon Mar 22, 5:52 am)
Re: [RFC] Unify KVM kernel-space and user-space code into ...
, Ingo Molnar
, (Mon Mar 22, 5:54 am)
Re: [RFC] Unify KVM kernel-space and user-space code into ...
, Daniel P. Berrange
, (Mon Mar 22, 5:54 am)
Re: [RFC] Unify KVM kernel-space and user-space code into ...
, Pekka Enberg
, (Mon Mar 22, 6:01 am)
Re: [RFC] Unify KVM kernel-space and user-space code into ...
, Daniel P. Berrange
, (Mon Mar 22, 6:05 am)
Re: [RFC] Unify KVM kernel-space and user-space code into ...
, Richard W.M. Jones
, (Mon Mar 22, 6:23 am)
Re: [RFC] Unify KVM kernel-space and user-space code into ...
, Joerg Roedel
, (Mon Mar 22, 6:46 am)
Re: [RFC] Unify KVM kernel-space and user-space code into ...
, Ingo Molnar
, (Mon Mar 22, 6:56 am)
Re: [RFC] Unify KVM kernel-space and user-space code into ...
, Richard W.M. Jones
, (Mon Mar 22, 7:01 am)
Re: [RFC] Unify KVM kernel-space and user-space code into ...
, Ingo Molnar
, (Mon Mar 22, 7:02 am)
Re: [RFC] Unify KVM kernel-space and user-space code into ...
, Ingo Molnar
, (Mon Mar 22, 7:07 am)
Re: [RFC] Unify KVM kernel-space and user-space code into ...
, oerg Roedel
, (Mon Mar 22, 7:20 am)
Re: [RFC] Unify KVM kernel-space and user-space code into ...
, Ingo Molnar
, (Mon Mar 22, 7:26 am)
Re: [RFC] Unify KVM kernel-space and user-space code into ...
, Ingo Molnar
, (Mon Mar 22, 7:32 am)
Re: [RFC] Unify KVM kernel-space and user-space code into ...
, Anthony Liguori
, (Mon Mar 22, 7:43 am)
Re: [RFC] Unify KVM kernel-space and user-space code into ...
, Avi Kivity
, (Mon Mar 22, 7:46 am)
Re: [RFC] Unify KVM kernel-space and user-space code into ...
, Ingo Molnar
, (Mon Mar 22, 7:47 am)
Re: [RFC] Unify KVM kernel-space and user-space code into ...
, Ingo Molnar
, (Mon Mar 22, 7:54 am)
Re: [RFC] Unify KVM kernel-space and user-space code into ...
, Ingo Molnar
, (Mon Mar 22, 8:55 am)
Re: [RFC] Unify KVM kernel-space and user-space code into ...
, Anthony Liguori
, (Mon Mar 22, 9:08 am)
Re: [RFC] Unify KVM kernel-space and user-space code into ...
, Ingo Molnar
, (Mon Mar 22, 9:08 am)
Re: [RFC] Unify KVM kernel-space and user-space code into ...
, Avi Kivity
, (Mon Mar 22, 9:12 am)
Re: [RFC] Unify KVM kernel-space and user-space code into ...
, Avi Kivity
, (Mon Mar 22, 9:13 am)
Re: [RFC] Unify KVM kernel-space and user-space code into ...
, Avi Kivity
, (Mon Mar 22, 9:16 am)
Re: [RFC] Unify KVM kernel-space and user-space code into ...
, Ingo Molnar
, (Mon Mar 22, 9:32 am)
Re: [RFC] Unify KVM kernel-space and user-space code into ...
, Pekka Enberg
, (Mon Mar 22, 9:40 am)
Re: [PATCH] Enhance perf to collect KVM guest os statistic ...
, Arnaldo Carvalho de Melo
, (Mon Mar 22, 9:44 am)
Re: [RFC] Unify KVM kernel-space and user-space code into ...
, Ingo Molnar
, (Mon Mar 22, 9:51 am)
Re: [RFC] Unify KVM kernel-space and user-space code into ...
, Ingo Molnar
, (Mon Mar 22, 9:59 am)
Re: [RFC] Unify KVM kernel-space and user-space code into ...
, Avi Kivity
, (Mon Mar 22, 10:08 am)
Re: [RFC] Unify KVM kernel-space and user-space code into ...
, Ingo Molnar
, (Mon Mar 22, 10:11 am)
Re: [RFC] Unify KVM kernel-space and user-space code into ...
, Frank Ch. Eigler
, (Mon Mar 22, 10:17 am)
Re: [RFC] Unify KVM kernel-space and user-space code into ...
, Pekka Enberg
, (Mon Mar 22, 10:27 am)
Re: [RFC] Unify KVM kernel-space and user-space code into ...
, Avi Kivity
, (Mon Mar 22, 10:29 am)
Re: [RFC] Unify KVM kernel-space and user-space code into ...
, Avi Kivity
, (Mon Mar 22, 10:32 am)
Re: [RFC] Unify KVM kernel-space and user-space code into ...
, Ingo Molnar
, (Mon Mar 22, 10:34 am)
Re: [RFC] Unify KVM kernel-space and user-space code into ...
, Ingo Molnar
, (Mon Mar 22, 10:39 am)
Re: [RFC] Unify KVM kernel-space and user-space code into ...
, Ingo Molnar
, (Mon Mar 22, 10:43 am)
Re: [RFC] Unify KVM kernel-space and user-space code into ...
, Avi Kivity
, (Mon Mar 22, 10:44 am)
Re: [RFC] Unify KVM kernel-space and user-space code into ...
, Pekka Enberg
, (Mon Mar 22, 10:52 am)
Re: [RFC] Unify KVM kernel-space and user-space code into ...
, Avi Kivity
, (Mon Mar 22, 10:55 am)
Re: [RFC] Unify KVM kernel-space and user-space code into ...
, Avi Kivity
, (Mon Mar 22, 10:58 am)
Re: [RFC] Unify KVM kernel-space and user-space code into ...
, Avi Kivity
, (Mon Mar 22, 11:02 am)
Re: [RFC] Unify KVM kernel-space and user-space code into ...
, Avi Kivity
, (Mon Mar 22, 11:04 am)
Re: [RFC] Unify KVM kernel-space and user-space code into ...
, Avi Kivity
, (Mon Mar 22, 11:06 am)
Re: [RFC] Unify KVM kernel-space and user-space code into ...
, Pekka Enberg
, (Mon Mar 22, 11:10 am)
Re: [RFC] Unify KVM kernel-space and user-space code into ...
, Avi Kivity
, (Mon Mar 22, 11:15 am)
Re: [RFC] Unify KVM kernel-space and user-space code into ...
, Anthony Liguori
, (Mon Mar 22, 11:28 am)
Re: [RFC] Unify KVM kernel-space and user-space code into ...
, Anthony Liguori
, (Mon Mar 22, 11:30 am)
Re: [RFC] Unify KVM kernel-space and user-space code into ...
, Anthony Liguori
, (Mon Mar 22, 11:35 am)
Re: [RFC] Unify KVM kernel-space and user-space code into ...
, Anthony Liguori
, (Mon Mar 22, 11:41 am)
Re: [RFC] Unify KVM kernel-space and user-space code into ...
, Avi Kivity
, (Mon Mar 22, 11:55 am)
Re: [RFC] Unify KVM kernel-space and user-space code into ...
, Avi Kivity
, (Mon Mar 22, 12:04 pm)
Re: [RFC] Unify KVM kernel-space and user-space code into ...
, Ingo Molnar
, (Mon Mar 22, 12:10 pm)
Re: [RFC] Unify KVM kernel-space and user-space code into ...
, Anthony Liguori
, (Mon Mar 22, 12:15 pm)
Re: [RFC] Unify KVM kernel-space and user-space code into ...
, Anthony Liguori
, (Mon Mar 22, 12:18 pm)
Re: [RFC] Unify KVM kernel-space and user-space code into ...
, Ingo Molnar
, (Mon Mar 22, 12:20 pm)
Re: [RFC] Unify KVM kernel-space and user-space code into ...
, Joerg Roedel
, (Mon Mar 22, 12:20 pm)
Re: [RFC] Unify KVM kernel-space and user-space code into ...
, Ingo Molnar
, (Mon Mar 22, 12:22 pm)
Re: [RFC] Unify KVM kernel-space and user-space code into ...
, Avi Kivity
, (Mon Mar 22, 12:23 pm)
Re: [RFC] Unify KVM kernel-space and user-space code into ...
, Ingo Molnar
, (Mon Mar 22, 12:27 pm)
Re: [RFC] Unify KVM kernel-space and user-space code into ...
, Andrea Arcangeli
, (Mon Mar 22, 12:28 pm)
Re: [RFC] Unify KVM kernel-space and user-space code into ...
, Avi Kivity
, (Mon Mar 22, 12:28 pm)
Re: [RFC] Unify KVM kernel-space and user-space code into ...
, Anthony Liguori
, (Mon Mar 22, 12:29 pm)
Re: [RFC] Unify KVM kernel-space and user-space code into ...
, Daniel P. Berrange
, (Mon Mar 22, 12:31 pm)
Re: [RFC] Unify KVM kernel-space and user-space code into ...
, Anthony Liguori
, (Mon Mar 22, 12:33 pm)
Re: [RFC] Unify KVM kernel-space and user-space code into ...
, Alexander Graf
, (Mon Mar 22, 12:39 pm)
Re: [RFC] Unify KVM kernel-space and user-space code into ...
, Avi Kivity
, (Mon Mar 22, 12:44 pm)
Re: [RFC] Unify KVM kernel-space and user-space code into ...
, Avi Kivity
, (Mon Mar 22, 12:45 pm)
Re: [RFC] Unify KVM kernel-space and user-space code into ...
, Avi Kivity
, (Mon Mar 22, 12:47 pm)
Re: [RFC] Unify KVM kernel-space and user-space code into ...
, Ingo Molnar
, (Mon Mar 22, 12:49 pm)
Re: [RFC] Unify KVM kernel-space and user-space code into ...
, Ingo Molnar
, (Mon Mar 22, 12:54 pm)
Re: [RFC] Unify KVM kernel-space and user-space code into ...
, Alexander Graf
, (Mon Mar 22, 12:58 pm)
Re: [RFC] Unify KVM kernel-space and user-space code into ...
, Antoine Martin
, (Mon Mar 22, 1:00 pm)
Re: [RFC] Unify KVM kernel-space and user-space code into ...
, Ingo Molnar
, (Mon Mar 22, 1:06 pm)
Re: [RFC] Unify KVM kernel-space and user-space code into ...
, Avi Kivity
, (Mon Mar 22, 1:15 pm)
Re: [RFC] Unify KVM kernel-space and user-space code into ...
, Antoine Martin
, (Mon Mar 22, 1:19 pm)
Re: [RFC] Unify KVM kernel-space and user-space code into ...
, Ingo Molnar
, (Mon Mar 22, 1:21 pm)
Re: [RFC] Unify KVM kernel-space and user-space code into ...
, Ingo Molnar
, (Mon Mar 22, 1:29 pm)
Re: [RFC] Unify KVM kernel-space and user-space code into ...
, Ingo Molnar
, (Mon Mar 22, 1:32 pm)
Re: [RFC] Unify KVM kernel-space and user-space code into ...
, Ingo Molnar
, (Mon Mar 22, 1:35 pm)
Re: [RFC] Unify KVM kernel-space and user-space code into ...
, Avi Kivity
, (Mon Mar 22, 1:35 pm)
Re: [RFC] Unify KVM kernel-space and user-space code into ...
, Avi Kivity
, (Mon Mar 22, 1:40 pm)
Re: [RFC] Unify KVM kernel-space and user-space code into ...
, Avi Kivity
, (Mon Mar 22, 1:43 pm)
Re: [RFC] Unify KVM kernel-space and user-space code into ...
, Avi Kivity
, (Mon Mar 22, 1:45 pm)
Re: [RFC] Unify KVM kernel-space and user-space code into ...
, Ingo Molnar
, (Mon Mar 22, 1:46 pm)
Re: [RFC] Unify KVM kernel-space and user-space code into ...
, Avi Kivity
, (Mon Mar 22, 1:53 pm)
Re: [RFC] Unify KVM kernel-space and user-space code into ...
, Daniel P. Berrange
, (Mon Mar 22, 1:58 pm)
Re: [RFC] Unify KVM kernel-space and user-space code into ...
, Anthony Liguori
, (Mon Mar 22, 3:06 pm)
Re: [PATCH] Enhance perf to collect KVM guest os statistic ...
, Zhang, Yanmin
, (Mon Mar 22, 8:14 pm)
Re: [RFC] Unify KVM kernel-space and user-space code into ...
, Avi Kivity
, (Tue Mar 23, 2:07 am)
Re: [RFC] Unify KVM kernel-space and user-space code into ...
, Olivier Galibert
, (Tue Mar 23, 2:46 am)
Re: [RFC] Unify KVM kernel-space and user-space code into ...
, Kevin Wolf
, (Tue Mar 23, 3:13 am)
Re: [RFC] Unify KVM kernel-space and user-space code into ...
, Antoine Martin
, (Tue Mar 23, 3:28 am)
Re: [RFC] Unify KVM kernel-space and user-space code into ...
, Bernd Petrovitsch
, (Tue Mar 23, 3:48 am)
Re: [PATCH] Enhance perf to collect KVM guest os statistic ...
, Arnaldo Carvalho de Melo
, (Tue Mar 23, 6:15 am)
Re: [PATCH] Enhance perf to collect KVM guest os statistic ...
, Soeren Sandmann
, (Tue Mar 23, 6:18 am)
Re: [PATCH] Enhance perf to collect KVM guest os statistic ...
, Andi Kleen
, (Tue Mar 23, 6:49 am)
Re: [PATCH] Enhance perf to collect KVM guest os statistic ...
, Soeren Sandmann
, (Tue Mar 23, 7:04 am)
Re: [RFC] Unify KVM kernel-space and user-space code into ...
, Joerg Roedel
, (Tue Mar 23, 7:06 am)
Re: [RFC] Unify KVM kernel-space and user-space code into ...
, Anthony Liguori
, (Tue Mar 23, 7:09 am)
Re: [PATCH] Enhance perf to collect KVM guest os statistic ...
, Arnaldo Carvalho de Melo
, (Tue Mar 23, 7:10 am)
Re: [PATCH] Enhance perf to collect KVM guest os statistic ...
, Andi Kleen
, (Tue Mar 23, 7:20 am)
Re: [PATCH] Enhance perf to collect KVM guest os statistic ...
, Arnaldo Carvalho de Melo
, (Tue Mar 23, 7:29 am)
Re: [PATCH] Enhance perf to collect KVM guest os statistic ...
, Frank Ch. Eigler
, (Tue Mar 23, 7:46 am)
Re: [PATCH] Enhance perf to collect KVM guest os statistic ...
, Peter Zijlstra
, (Tue Mar 23, 8:23 am)
Re: [RFC] Unify KVM kernel-space and user-space code into ...
, Avi Kivity
, (Tue Mar 23, 9:39 am)
Re: [RFC] Unify KVM kernel-space and user-space code into ...
, Joerg Roedel
, (Tue Mar 23, 11:21 am)
Re: [RFC] Unify KVM kernel-space and user-space code into ...
, Peter Zijlstra
, (Tue Mar 23, 11:27 am)
Re: [RFC] Unify KVM kernel-space and user-space code into ...
, Javier Guerra Giraldez
, (Tue Mar 23, 12:05 pm)
Re: [PATCH] Enhance perf to collect KVM guest os statistic ...
, Zhang, Yanmin
, (Tue Mar 23, 6:39 pm)
Re: [RFC] Unify KVM kernel-space and user-space code into ...
, Avi Kivity
, (Tue Mar 23, 9:57 pm)
Re: [RFC] Unify KVM kernel-space and user-space code into ...
, Andi Kleen
, (Tue Mar 23, 10:09 pm)
Re: [RFC] Unify KVM kernel-space and user-space code into ...
, Avi Kivity
, (Tue Mar 23, 11:42 pm)
Re: [RFC] Unify KVM kernel-space and user-space code into ...
, Andi Kleen
, (Wed Mar 24, 12:38 am)
Re: [RFC] Unify KVM kernel-space and user-space code into ...
, Avi Kivity
, (Wed Mar 24, 1:59 am)
Re: [RFC] Unify KVM kernel-space and user-space code into ...
, Andi Kleen
, (Wed Mar 24, 2:31 am)
Re: [RFC] Unify KVM kernel-space and user-space code into ...
, Joerg Roedel
, (Wed Mar 24, 4:59 am)
Re: [RFC] Unify KVM kernel-space and user-space code into ...
, Paolo Bonzini
, (Wed Mar 24, 5:06 am)
Re: [RFC] Unify KVM kernel-space and user-space code into ...
, Avi Kivity
, (Wed Mar 24, 5:08 am)
Re: [RFC] Unify KVM kernel-space and user-space code into ...
, Joerg Roedel
, (Wed Mar 24, 5:50 am)
Re: [RFC] Unify KVM kernel-space and user-space code into ...
, Avi Kivity
, (Wed Mar 24, 6:05 am)
Re: [RFC] Unify KVM kernel-space and user-space code into ...
, Joerg Roedel
, (Wed Mar 24, 6:46 am)
Re: [RFC] Unify KVM kernel-space and user-space code into ...
, Alexander Graf
, (Wed Mar 24, 6:53 am)
Re: [RFC] Unify KVM kernel-space and user-space code into ...
, Avi Kivity
, (Wed Mar 24, 6:57 am)
Re: [RFC] Unify KVM kernel-space and user-space code into ...
, Avi Kivity
, (Wed Mar 24, 6:59 am)
Re: [RFC] Unify KVM kernel-space and user-space code into ...
, Alexander Graf
, (Wed Mar 24, 7:24 am)
Re: [RFC] Unify KVM kernel-space and user-space code into ...
, Joerg Roedel
, (Wed Mar 24, 8:01 am)
Re: [RFC] Unify KVM kernel-space and user-space code into ...
, Avi Kivity
, (Wed Mar 24, 8:06 am)
Re: [RFC] Unify KVM kernel-space and user-space code into ...
, Avi Kivity
, (Wed Mar 24, 8:12 am)
Re: [RFC] Unify KVM kernel-space and user-space code into ...
, Daniel P. Berrange
, (Wed Mar 24, 8:26 am)
Re: [RFC] Unify KVM kernel-space and user-space code into ...
, Joerg Roedel
, (Wed Mar 24, 8:37 am)
Re: [RFC] Unify KVM kernel-space and user-space code into ...
, Avi Kivity
, (Wed Mar 24, 8:43 am)
Re: [RFC] Unify KVM kernel-space and user-space code into ...
, Joerg Roedel
, (Wed Mar 24, 8:46 am)
Re: [RFC] Unify KVM kernel-space and user-space code into ...
, Avi Kivity
, (Wed Mar 24, 8:49 am)
Re: [RFC] Unify KVM kernel-space and user-space code into ...
, Joerg Roedel
, (Wed Mar 24, 8:50 am)
Re: [RFC] Unify KVM kernel-space and user-space code into ...
, Avi Kivity
, (Wed Mar 24, 8:52 am)
Re: [RFC] Unify KVM kernel-space and user-space code into ...
, Joerg Roedel
, (Wed Mar 24, 8:59 am)
Re: [RFC] Unify KVM kernel-space and user-space code into ...
, Peter Zijlstra
, (Wed Mar 24, 9:03 am)
Re: [RFC] Unify KVM kernel-space and user-space code into ...
, Avi Kivity
, (Wed Mar 24, 9:09 am)
Re: [RFC] Unify KVM kernel-space and user-space code into ...
, Avi Kivity
, (Wed Mar 24, 9:16 am)
Re: [RFC] Unify KVM kernel-space and user-space code into ...
, Joerg Roedel
, (Wed Mar 24, 9:17 am)
Re: [RFC] Unify KVM kernel-space and user-space code into ...
, Avi Kivity
, (Wed Mar 24, 9:20 am)
Re: [RFC] Unify KVM kernel-space and user-space code into ...
, Joerg Roedel
, (Wed Mar 24, 9:23 am)
Re: [RFC] Unify KVM kernel-space and user-space code into ...
, Joerg Roedel
, (Wed Mar 24, 9:31 am)
Re: [RFC] Unify KVM kernel-space and user-space code into ...
, Avi Kivity
, (Wed Mar 24, 9:32 am)
Re: [RFC] Unify KVM kernel-space and user-space code into ...
, Joerg Roedel
, (Wed Mar 24, 9:40 am)
Re: [RFC] Unify KVM kernel-space and user-space code into ...
, Joerg Roedel
, (Wed Mar 24, 9:45 am)
Re: [RFC] Unify KVM kernel-space and user-space code into ...
, Peter Zijlstra
, (Wed Mar 24, 9:45 am)
Re: [RFC] Unify KVM kernel-space and user-space code into ...
, Avi Kivity
, (Wed Mar 24, 9:47 am)
Re: [RFC] Unify KVM kernel-space and user-space code into ...
, Avi Kivity
, (Wed Mar 24, 9:48 am)
Re: [RFC] Unify KVM kernel-space and user-space code into ...
, Avi Kivity
, (Wed Mar 24, 9:52 am)
Re: [RFC] Unify KVM kernel-space and user-space code into ...
, Arnaldo Carvalho de Melo
, (Wed Mar 24, 10:47 am)
Re: [RFC] Unify KVM kernel-space and user-space code into ...
, Avi Kivity
, (Wed Mar 24, 11:20 am)
Re: [RFC] Unify KVM kernel-space and user-space code into ...
, Arnaldo Carvalho de Melo
, (Wed Mar 24, 11:27 am)
Re: [RFC] Unify KVM kernel-space and user-space code into ...
, Zhang, Yanmin
, (Thu Mar 25, 2:00 am)
Re: [RFC] Unify KVM kernel-space and user-space code into ...
, Antoine Martin
, (Thu Apr 8, 7:29 am)
Navigation
Create content
Mailing list archives
Recent posts
Popular discussions
linux-kernel
:
David Howells
[PATCH] KEYS: Use the variable 'key' in keyctl_describe_key()
Dave Jones
Re: OT: character encodings (was: Linux 2.6.20-rc4)
Greg Kroah-Hartman
[PATCH 17/36] sysdev: detect multiple driver registrations
Sam Ravnborg
Re: [PATCH] kbuild: fix make V=1
Nick Piggin
Re: [PATCH 0/24] make atomic_read() behave consistently across all architectures
git
:
Stephen R. van den Berg
Re: [RFC] origin link for cherry-pick and revert
Junio C Hamano
Re: [PATCH 1/2] Teach git-describe to display distances from tags.
Johannes Schindelin
Re: [PATCH 2/2] git-svn: support fetch with autocrlf on
Junio C Hamano
Re: [PATCH 6/6] Teach core object handling functions about gitlinks
Michael S. Tsirkin
git-kill: rewrite history removing a commit
linux-netdev
:
Jarek Poplawski
Re: [PATCH] flush_work_sync vs. flush_scheduled_work Re: [PATCH] PHYLIB: IRQ event...
Lennert Buytenhek
Re: Distributed Switch Architecture(DSA)
Daniel Schaffrath
Re: tcp bw in 2.6
Matt Mackall
Re: [regression] nf_iterate(), BUG: unable to handle kernel NULL pointer dereference
Guo-Fu Tseng
Re: jme: UDP checksum error, and lots of them
openbsd-misc
:
Claudio Jeker
Re: Vlan Tag on Vlan Tag (l2tunneling)
Josh Grosse
ssh/sshd challenge-response seems to have stopped working in -current
Pieter Verberne
File collision while using pkg_add
Tomas Bodzar
bsd: uvm_mapent_alloc: out of static map entries
Community First Financial
Teacher A+ Loan
git-commits-head
:
Linux Kernel Mailing List
ath9k: Added get_survey callback in order to get channel noise
Linux Kernel Mailing List
tracing: protect reader of cmdline output
Linux Kernel Mailing List
kconfig: recalc symbol value before showing search results
Linux Kernel Mailing List
KVM: VMX: Clear CR4.VMXE in hardware_disable
Linux Kernel Mailing List
USB: set correct configuration in probe of ti_usb_3410_5052
Colocation donated by:
Syndicate