From: Avi Kivity <avi@qumranet.com>
To: Laurent Vivier <Laurent.Vivier@bull.net>
Cc: Christian Borntraeger <borntraeger@de.ibm.com>,
kvm-devel@lists.sourceforge.net,
linux-kernel <linux-kernel@vger.kernel.org>
Subject: Re: [kvm-devel] [PATCH 0/2][KVM] guest time accounting
Date: Mon, 13 Aug 2007 17:30:22 +0300 [thread overview]
Message-ID: <46C06AFE.2050702@qumranet.com> (raw)
In-Reply-To: <46C0693A.1080900@bull.net>
Laurent Vivier wrote:
> Christian Borntraeger wrote:
>
>> Am Freitag, 10. August 2007 schrieb Laurent Vivier:
>>
>>> The aim of these two patches is to measure the CPU time used by a virtual
>>> machine. All comments are welcome... I'm not sure it's the good way to do
>>>
>> that.
>>
>> I did something similar for or s390guest prototype, that Carsten posted in
>> May. I decided to account guest time to the user process instead of adding a
>> new field to avoid hazzle with old top. As you can read in the patch comment,
>> I personally prefer a new field if we can get one.
>>
>> My implementation uses a similar mechanism like hard and softirq. So I have an
>> sie_enter an sie_exit and a task_is_in_sie function - like irq_enter and
>> irq_exit. The main difference is based on the fact, that s390 has precise
>> accouting for irq, steal, user and system time, and therefore my patch is
>> based on architecture specifc code using CONFIG_VIRT_CPU_ACCOUNT.
>>
>> In general my patch has the same idea as your patch, so I am going to review
>> your patch and see if it would fit for s390.
>>
>> For reference this is the (never posted) old patch for our virtualisation
>> prototype. It wont work with kvm but it gives you the idea what we had in
>> mind on s390.
>>
>>
>
> thank you for your comment.
>
> As virtualization becomes very popular, perhaps we should implement something
> which could be used by all linux supported architectures ?
> (yes, I know it's non-sense for archs like m68k...)
> But my [PATCH 1/2] can be a good start (adding "guest" in cpustat)
> As guest accounting is hw dependent, I think we should add a hook in the
> accounting functions.
>
Isn't PF_VM exactly such a hook? All the hypervisor needs to do is to
set/unset it correctly?
--
error compiling committee.c: too many arguments to function
WARNING: multiple messages have this Message-ID (diff)
From: Avi Kivity <avi-atKUWr5tajBWk0Htik3J/w@public.gmane.org>
To: Laurent Vivier <Laurent.Vivier-6ktuUTfB/bM@public.gmane.org>
Cc: kvm-devel-5NWGOfrQmneRv+LV9MX5uipxlwaOVQ5f@public.gmane.org,
Christian Borntraeger
<borntraeger-tA70FqPdS9bQT0dZR+AlfA@public.gmane.org>,
linux-kernel
<linux-kernel-u79uwXL29TY76Z2rM5mHXA@public.gmane.org>
Subject: Re: [PATCH 0/2][KVM] guest time accounting
Date: Mon, 13 Aug 2007 17:30:22 +0300 [thread overview]
Message-ID: <46C06AFE.2050702@qumranet.com> (raw)
In-Reply-To: <46C0693A.1080900-6ktuUTfB/bM@public.gmane.org>
Laurent Vivier wrote:
> Christian Borntraeger wrote:
>
>> Am Freitag, 10. August 2007 schrieb Laurent Vivier:
>>
>>> The aim of these two patches is to measure the CPU time used by a virtual
>>> machine. All comments are welcome... I'm not sure it's the good way to do
>>>
>> that.
>>
>> I did something similar for or s390guest prototype, that Carsten posted in
>> May. I decided to account guest time to the user process instead of adding a
>> new field to avoid hazzle with old top. As you can read in the patch comment,
>> I personally prefer a new field if we can get one.
>>
>> My implementation uses a similar mechanism like hard and softirq. So I have an
>> sie_enter an sie_exit and a task_is_in_sie function - like irq_enter and
>> irq_exit. The main difference is based on the fact, that s390 has precise
>> accouting for irq, steal, user and system time, and therefore my patch is
>> based on architecture specifc code using CONFIG_VIRT_CPU_ACCOUNT.
>>
>> In general my patch has the same idea as your patch, so I am going to review
>> your patch and see if it would fit for s390.
>>
>> For reference this is the (never posted) old patch for our virtualisation
>> prototype. It wont work with kvm but it gives you the idea what we had in
>> mind on s390.
>>
>>
>
> thank you for your comment.
>
> As virtualization becomes very popular, perhaps we should implement something
> which could be used by all linux supported architectures ?
> (yes, I know it's non-sense for archs like m68k...)
> But my [PATCH 1/2] can be a good start (adding "guest" in cpustat)
> As guest accounting is hw dependent, I think we should add a hook in the
> accounting functions.
>
Isn't PF_VM exactly such a hook? All the hypervisor needs to do is to
set/unset it correctly?
--
error compiling committee.c: too many arguments to function
-------------------------------------------------------------------------
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems? Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now >> http://get.splunk.com/
next prev parent reply other threads:[~2007-08-13 16:05 UTC|newest]
Thread overview: 56+ messages / expand[flat|nested] mbox.gz Atom feed top
2007-08-10 15:58 [PATCH 0/2][KVM] guest time accounting Laurent Vivier
2007-08-13 8:01 ` [kvm-devel] " Avi Kivity
2007-08-13 8:01 ` Avi Kivity
2007-08-13 8:01 ` Avi Kivity
2007-08-13 8:13 ` [kvm-devel] " Laurent Vivier
2007-08-13 8:13 ` Laurent Vivier
2007-08-13 8:38 ` [kvm-devel] " Avi Kivity
2007-08-13 8:38 ` Avi Kivity
2007-08-13 13:08 ` [kvm-devel] " Laurent Vivier
2007-08-13 13:08 ` Laurent Vivier
2007-08-13 13:22 ` [kvm-devel] " Avi Kivity
2007-08-13 13:22 ` Avi Kivity
2007-08-13 13:22 ` [kvm-devel] " Avi Kivity
2007-08-13 13:08 ` Laurent Vivier
2007-08-13 8:38 ` Avi Kivity
2007-08-13 14:15 ` Christian Borntraeger
2007-08-13 14:15 ` Christian Borntraeger
2007-08-13 14:19 ` [kvm-devel] " Avi Kivity
2007-08-13 14:19 ` Avi Kivity
2007-08-13 14:19 ` Avi Kivity
2007-08-13 14:26 ` [kvm-devel] " Christian Borntraeger
2007-08-13 14:26 ` Christian Borntraeger
2007-08-13 14:37 ` [kvm-devel] " Avi Kivity
2007-08-13 14:37 ` Avi Kivity
2007-08-13 20:40 ` [kvm-devel] " Heiko Carstens
2007-08-13 20:40 ` Heiko Carstens
2007-08-13 20:40 ` Heiko Carstens
2007-08-19 9:32 ` List stripping out cc's (was: Re: [kvm-devel] [PATCH 0/2][KVM] guest time accounting) Avi Kivity
2007-08-19 9:32 ` List stripping out cc's (was: " Avi Kivity
2007-08-19 19:53 ` List stripping out cc's Jeff Garzik
2007-08-19 19:53 ` Jeff Garzik
2007-08-19 20:10 ` Avi Kivity
2007-08-19 20:10 ` Avi Kivity
2007-08-19 20:10 ` Avi Kivity
2007-08-19 19:53 ` Jeff Garzik
2007-08-19 9:32 ` List stripping out cc's (was: Re: [kvm-devel] [PATCH 0/2][KVM] guest time accounting) Avi Kivity
2007-08-13 14:37 ` [kvm-devel] [PATCH 0/2][KVM] guest time accounting Avi Kivity
2007-08-13 14:26 ` Christian Borntraeger
2007-08-13 14:15 ` Christian Borntraeger
2007-08-13 8:13 ` Laurent Vivier
2007-08-13 14:05 ` Christian Borntraeger
2007-08-13 14:05 ` Christian Borntraeger
2007-08-13 14:10 ` [kvm-devel] " Avi Kivity
2007-08-13 14:10 ` Avi Kivity
2007-08-13 14:22 ` [kvm-devel] " Christian Borntraeger
2007-08-13 14:22 ` Christian Borntraeger
2007-08-13 14:22 ` [kvm-devel] " Laurent Vivier
2007-08-13 14:22 ` Laurent Vivier
2007-08-13 14:30 ` Avi Kivity [this message]
2007-08-13 14:30 ` Avi Kivity
2007-08-13 14:41 ` [kvm-devel] " Laurent Vivier
2007-08-13 14:41 ` Laurent Vivier
2007-08-13 15:22 ` [kvm-devel] " Christian Borntraeger
2007-08-13 15:22 ` Christian Borntraeger
2007-08-13 15:36 ` [kvm-devel] " Laurent Vivier
2007-08-13 15:36 ` Laurent Vivier
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=46C06AFE.2050702@qumranet.com \
--to=avi@qumranet.com \
--cc=Laurent.Vivier@bull.net \
--cc=borntraeger@de.ibm.com \
--cc=kvm-devel@lists.sourceforge.net \
--cc=linux-kernel@vger.kernel.org \
/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.