login
Login
/
Register
Search
Search this site:
Forums
News
Blogs
Features
Site
Home
»
Mailing list archives
»
linux-kernel
»
2010
»
March
»
24
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: Tuesday, March 23, 2010 - 6:39 pm
On Tue, 2010-03-23 at 10:15 -0300, Arnaldo Carvalho de Melo wrote:
quoted text
> Em Tue, Mar 23, 2010 at 11:14:41AM +0800, Zhang, Yanmin escreveu: > > On Mon, 2010-03-22 at 13:44 -0300, Arnaldo Carvalho de Melo wrote: > > > Em Mon, Mar 22, 2010 at 03:24:47PM +0800, Zhang, Yanmin escreveu: > > > > On Fri, 2010-03-19 at 09:21 +0100, Ingo Molnar wrote: > > > > Then, perf could access all files. It's possible because guest os instance > > > > happens to be multi-threading in a process. One of the defects is the accessing to > > > > guest os becomes slow or impossible when guest os is very busy. > > > > > > If the MMAP events on the guest included a cookie that could later be > > > used to query for the symtab of that DSO, we wouldn't need to access the > > > guest FS at all, right? > > > It depends on specific sub commands. As for 'perf kvm top', developers > > want to see the profiling immediately. Even with 'perf kvm record', > > developers also want to > > That is not a problem, if you have the relevant buildids in your cache > (Look in your machine at ~/.debug/), it will be as fast as ever. > > If you use a distro that has its userspace with build-ids, you probably > use it always without noticing :-) > > > see results quickly. At least I'm eager for the results when > > investigating a performance issue. > > Sure thing. > > > > With build-ids and debuginfo-install like tools the symbol > > > resolution could be performed by using the cookies (build-ids) as > > > keys to get to the *-debuginfo packages with matching symtabs (and > > > DWARF for source annotation, etc). > > > We can't make sure guest os uses the same os images, or don't know > > where we could find the original DVD images being used to install > > guest os. > > You don't have to have guest and host sharing the same OS image, you > just have to somehow populate your buildid cache with what you need, be > it using sshfs or what Ingo is suggesting once, or using what your > vendor provides (debuginfo packages). And you just have to do it once, > for the relevant apps, to have it in your buildid cache. > > > Current perf does save build id, including both kernls's and other > > application lib/executables. > > Yeah, I know, I implemented it. :-) > > > > We have that for the kernel as: > > > > [acme@doppio linux-2.6-tip]$ l /sys/kernel/notes > > > -r--r--r-- 1 root root 36 2010-03-22 13:14 /sys/kernel/notes > > > [acme@doppio linux-2.6-tip]$ l /sys/module/ipv6/sections/.note.gnu.build-id > > > -r--r--r-- 1 root root 4096 2010-03-22 13:38 /sys/module/ipv6/sections/.note.gnu.build-id > > > [acme@doppio linux-2.6-tip]$ > > > > That way we would cover DSOs being reinstalled in long running 'perf > > > record' sessions too. > > > That's one of objectives of perf to support long running. > > But it doesn't fully supports right now, as I explained, build-ids are > collected at the end of the record session, because we have to open the > DSOs that had hits to get the 20 bytes cookie we need, the build-id. > > If we had it in the PERF_RECORD_MMAP record, we would close this race, > and the added cost at load time should be minimal, to get the ELF > section with it and put it somewhere in task struct.
Well, you are improving upon perfection.
quoted text
> > If only we could coalesce it a bit to reclaim this: > > [acme@doppio linux-2.6-tip]$ pahole -C task_struct ../build/v2.6.34-rc1-tip+/kernel/sched.o | tail -5 > /* size: 5968, cachelines: 94, members: 150 */ > /* sum members: 5943, holes: 7, sum holes: 25 */ > /* bit holes: 1, sum bit holes: 28 bits */ > /* last cacheline: 16 bytes */ > }; > [acme@doppio linux-2.6-tip]$
That reminds me I listened to your presentation on 2007 OLS. :)
quoted text
> > 8-) > > Or at least get just one of those 4 bytes holes then we could stick it > at the end to get our build-id there, accessing it would be done only > at PERF_RECORD_MMAP injection time, i.e. close to the time when we > actually are loading the executable mmap, i.e. close to the time when > the loader is injecting the build-id, I guess the extra memory and > processing costs would be in the noise. > > > > This was discussed some time ago but would require help from the bits > > > that load DSOs. > > > > build-ids then would be first class citizens. > > - Arnaldo
--
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
Mailing list archives
Recent posts
Popular discussions
linux-kernel
:
Fortier,Vincent [Montreal]
2.6.21.5 june 30th to july 1st date hang?
Jeff Dike
[ PATCH 2/6 ] UML - Formatting fixes around os_{read_write}_file callers
Liam Girdwood
[PATCH 07/13] regulator: regulator test harness
Oleg Nesterov
Re: Getting the new RxRPC patches upstream
Stefan Seyfried
Re: 2.6.19-rc5: grub is much slower resuming from suspend-to-disk than in 2.6.18
linux-netdev
:
Arnaud Ebalard
Re: [REGRESSION,BISECTED] MIPv6 support broken by f4f914b58019f0
Jan Engelhardt
Re: [PATCH iptables] extension: add xt_cpu match
Jarek Poplawski
Re: [PATCH] pkt_sched: Destroy gen estimators under rtnl_lock().
Sebastian Andrzej Siewior
[PATCH 8/8] net/emergency: remove locking from reycling pool if emergncy pools are...
David Miller
Re: [PATCH] qlcnic: dont assume NET_IP_ALIGN is 2
git
:
Jakub Narebski
Re: git on MacOSX and files with decomposed utf-8 file names
Brandon Casey
Re: Thunderbird and patches (was Re: [PATCH v2] Enable setting attach as the def...
Christian Couder
[PATCH 1/3] rev-parse: add test script for "--verify"
Ramkumar Ramachandra
Re: [GSoC update] git-remote-svn: The final one
Junio C Hamano
Re: git-rm isn't the inverse action of git-add
openbsd-misc
:
Joachim Schipper
Re: UVC Webcams
Florin Andrei
SOLVED [was: firewall is very slow, something's wrong]
Todd Alan Smith
Re: Microsoft gets the Most Secure Operating Systems award
Neal Hogan
Re: Need Advice: Thinkpad T60 or T61?
Sam Fourman Jr.
Re: Real men don't attack straw men
git-commits-head
:
Linux Kernel Mailing List
ACPI: Disable ARB_DISABLE on platforms where it is not needed
Linux Kernel Mailing List
m68knommu: add read_barrier_depends() and irqs_disabled_flags()
Linux Kernel Mailing List
[MTD] Add mtd panic_write function pointer
Linux Kernel Mailing List
[ARM] pxa: remove duplicate select statements from Kconfig
Linux Kernel Mailing List
mlx4_core: Don't read reserved fields in mlx4_QUERY_ADAPTER()
Colocation donated by:
Syndicate