From: Marcelo Tosatti <mtosatti@redhat.com>
To: Konstantin Khlebnikov <khlebnikov@openvz.org>
Cc: Peter Zijlstra <peterz@infradead.org>,
Ingo Molnar <mingo@elte.hu>, Avi Kivity <avi@redhat.com>,
linux-kernel@vger.kernel.org, kvm@vger.kernel.org
Subject: Re: [PATCH v2] kvm: remove dependence on delay-accounting
Date: Mon, 16 Jan 2012 09:14:46 -0200 [thread overview]
Message-ID: <20120116111446.GF7937@amt.cnet> (raw)
In-Reply-To: <20120114163051.23946.25895.stgit@zurg>
On Sat, Jan 14, 2012 at 08:30:51PM +0400, Konstantin Khlebnikov wrote:
> KVM selects delay-accounting only to get sched-info for steal-time accounting.
> Meanwhile delay-accounting can be disabled by boot option. This is ridiculous.
>
> This patch adds internal boolean option CONFIG_TASK_SCHED_INFO to enable only
> task->sched_info and its collecting inside scheduler.
>
> v2:
> * stupid misprint fixed
>
> Signed-off-by: Konstantin Khlebnikov <khlebnikov@openvz.org>
> ---
> arch/x86/kvm/Kconfig | 5 +----
> include/linux/sched.h | 6 ++----
> init/Kconfig | 7 +++++++
> kernel/sched/core.c | 2 +-
> kernel/sched/stats.h | 4 ++--
> lib/Kconfig.debug | 1 +
> 6 files changed, 14 insertions(+), 11 deletions(-)
>
> diff --git a/arch/x86/kvm/Kconfig b/arch/x86/kvm/Kconfig
> index 1a7fe86..e3952e8 100644
> --- a/arch/x86/kvm/Kconfig
> +++ b/arch/x86/kvm/Kconfig
> @@ -22,8 +22,6 @@ config KVM
> depends on HAVE_KVM
> # for device assignment:
> depends on PCI
> - # for TASKSTATS/TASK_DELAY_ACCT:
> - depends on NET
> select PREEMPT_NOTIFIERS
> select MMU_NOTIFIER
> select ANON_INODES
> @@ -33,8 +31,7 @@ config KVM
> select KVM_ASYNC_PF
> select USER_RETURN_NOTIFIER
> select KVM_MMIO
> - select TASKSTATS
> - select TASK_DELAY_ACCT
> + select TASK_SCHED_INFO
> select PERF_EVENTS
> ---help---
> Support hosting fully virtualized guest machines using hardware
> diff --git a/include/linux/sched.h b/include/linux/sched.h
> index 868cb83..dd5bf78 100644
> --- a/include/linux/sched.h
> +++ b/include/linux/sched.h
> @@ -734,7 +734,6 @@ extern struct user_struct root_user;
>
> struct backing_dev_info;
>
> -#if defined(CONFIG_SCHEDSTATS) || defined(CONFIG_TASK_DELAY_ACCT)
> struct sched_info {
> /* cumulative counters */
> unsigned long pcount; /* # of times run on this cpu */
> @@ -744,7 +743,6 @@ struct sched_info {
> unsigned long long last_arrival,/* when we last ran on a cpu */
> last_queued; /* when we were last queued to run */
> };
> -#endif /* defined(CONFIG_SCHEDSTATS) || defined(CONFIG_TASK_DELAY_ACCT) */
>
> #ifdef CONFIG_TASK_DELAY_ACCT
> struct task_delay_info {
> @@ -782,7 +780,7 @@ struct task_delay_info {
>
> static inline int sched_info_on(void)
> {
> -#ifdef CONFIG_SCHEDSTATS
> +#if IS_ENABLED(CONFIG_SCHEDSTATS) || IS_ENABLED(CONFIG_KVM)
> return 1;
CONFIG_TASK_SCHED_INFO?
next prev parent reply other threads:[~2012-01-16 12:40 UTC|newest]
Thread overview: 7+ messages / expand[flat|nested] mbox.gz Atom feed top
2012-01-14 16:24 [PATCH] kvm: remove dependence on delay-accounting Konstantin Khlebnikov
2012-01-14 16:30 ` [PATCH v2] " Konstantin Khlebnikov
2012-01-16 11:14 ` Marcelo Tosatti [this message]
2012-01-16 13:42 ` Konstantin Khlebnikov
2012-01-16 13:33 ` Peter Zijlstra
2012-01-16 14:05 ` Konstantin Khlebnikov
2012-01-16 13:54 ` [PATCH] sched: remove task-sched-info dynamic disabler Konstantin Khlebnikov
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=20120116111446.GF7937@amt.cnet \
--to=mtosatti@redhat.com \
--cc=avi@redhat.com \
--cc=khlebnikov@openvz.org \
--cc=kvm@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=mingo@elte.hu \
--cc=peterz@infradead.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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox