From: konrad.wilk@oracle.com (Konrad Rzeszutek Wilk)
To: linux-arm-kernel@lists.infradead.org
Subject: [PATCH v7 0/6] xen/arm/arm64: CONFIG_PARAVIRT and stolen ticks accounting
Date: Fri, 28 Jun 2013 11:58:40 -0400 [thread overview]
Message-ID: <20130628155840.GA13468@phenom.dumpdata.com> (raw)
In-Reply-To: <alpine.DEB.2.02.1306271614260.4782@kaball.uk.xensource.com>
On Fri, Jun 28, 2013 at 12:19:54PM +0100, Stefano Stabellini wrote:
> Hi all,
> this patch series introduces stolen ticks accounting for Xen on ARM and
> ARM64.
> Stolen ticks are clocksource ticks that have been "stolen" from the cpu,
> typically because Linux is running in a virtual machine and the vcpu has
> been descheduled.
> To account for these ticks we introduce CONFIG_PARAVIRT and pv_time_ops
> so that we can make use of:
>
> kernel/sched/cputime.c:steal_account_process_tick
>
>
> Stefano Stabellini (6):
> xen: move xen_setup_runstate_info and get_runstate_snapshot to drivers/xen/time.c
> kernel: missing include in cputime.c
> arm: introduce CONFIG_PARAVIRT, PARAVIRT_TIME_ACCOUNTING and pv_time_ops
> arm64: introduce CONFIG_PARAVIRT, PARAVIRT_TIME_ACCOUNTING and pv_time_ops
> core: remove ifdef CONFIG_PARAVIRT
> xen/arm: account for stolen ticks
>
> arch/arm/Kconfig | 20 ++++++++
> arch/arm/include/asm/paravirt.h | 20 ++++++++
> arch/arm/kernel/Makefile | 1 +
> arch/arm/kernel/paravirt.c | 25 ++++++++++
> arch/arm/xen/enlighten.c | 21 +++++++++
> arch/arm64/Kconfig | 20 ++++++++
> arch/arm64/include/asm/paravirt.h | 20 ++++++++
> arch/arm64/kernel/Makefile | 1 +
> arch/arm64/kernel/paravirt.c | 25 ++++++++++
> arch/ia64/xen/time.c | 48 +++-----------------
> arch/x86/xen/time.c | 76 +------------------------------
This is going to hit some of the patches that David
has sent to tglx, I think. You might want to try to rebase on top
of them (tip/time/for-xen, or something like that ) when they
are ready.
But for the Xen generic maintainer I am OK with these changes
so you can stick Acked-by on them.
Are you thinking to push them yourself or via the arm64 maintainer?
WARNING: multiple messages have this Message-ID (diff)
From: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
To: Stefano Stabellini <stefano.stabellini@eu.citrix.com>
Cc: "xen-devel@lists.xensource.com" <xen-devel@lists.xensource.com>,
"linux-kernel@vger.kernel.org" <linux-kernel@vger.kernel.org>,
"linux-arm-kernel@lists.infradead.org"
<linux-arm-kernel@lists.infradead.org>,
"marc.zyngier@arm.com" <marc.zyngier@arm.com>,
Will Deacon <will.deacon@arm.com>,
Ian Campbell <Ian.Campbell@citrix.com>,
Russell King - ARM Linux <linux@arm.linux.org.uk>,
Olof Johansson <olof@lixom.net>,
arnd@arndb.de, Catalin Marinas <catalin.marinas@arm.com>
Subject: Re: [PATCH v7 0/6] xen/arm/arm64: CONFIG_PARAVIRT and stolen ticks accounting
Date: Fri, 28 Jun 2013 11:58:40 -0400 [thread overview]
Message-ID: <20130628155840.GA13468@phenom.dumpdata.com> (raw)
In-Reply-To: <alpine.DEB.2.02.1306271614260.4782@kaball.uk.xensource.com>
On Fri, Jun 28, 2013 at 12:19:54PM +0100, Stefano Stabellini wrote:
> Hi all,
> this patch series introduces stolen ticks accounting for Xen on ARM and
> ARM64.
> Stolen ticks are clocksource ticks that have been "stolen" from the cpu,
> typically because Linux is running in a virtual machine and the vcpu has
> been descheduled.
> To account for these ticks we introduce CONFIG_PARAVIRT and pv_time_ops
> so that we can make use of:
>
> kernel/sched/cputime.c:steal_account_process_tick
>
>
> Stefano Stabellini (6):
> xen: move xen_setup_runstate_info and get_runstate_snapshot to drivers/xen/time.c
> kernel: missing include in cputime.c
> arm: introduce CONFIG_PARAVIRT, PARAVIRT_TIME_ACCOUNTING and pv_time_ops
> arm64: introduce CONFIG_PARAVIRT, PARAVIRT_TIME_ACCOUNTING and pv_time_ops
> core: remove ifdef CONFIG_PARAVIRT
> xen/arm: account for stolen ticks
>
> arch/arm/Kconfig | 20 ++++++++
> arch/arm/include/asm/paravirt.h | 20 ++++++++
> arch/arm/kernel/Makefile | 1 +
> arch/arm/kernel/paravirt.c | 25 ++++++++++
> arch/arm/xen/enlighten.c | 21 +++++++++
> arch/arm64/Kconfig | 20 ++++++++
> arch/arm64/include/asm/paravirt.h | 20 ++++++++
> arch/arm64/kernel/Makefile | 1 +
> arch/arm64/kernel/paravirt.c | 25 ++++++++++
> arch/ia64/xen/time.c | 48 +++-----------------
> arch/x86/xen/time.c | 76 +------------------------------
This is going to hit some of the patches that David
has sent to tglx, I think. You might want to try to rebase on top
of them (tip/time/for-xen, or something like that ) when they
are ready.
But for the Xen generic maintainer I am OK with these changes
so you can stick Acked-by on them.
Are you thinking to push them yourself or via the arm64 maintainer?
WARNING: multiple messages have this Message-ID (diff)
From: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
To: Stefano Stabellini <stefano.stabellini@eu.citrix.com>
Cc: "xen-devel@lists.xensource.com" <xen-devel@lists.xensource.com>,
Russell King - ARM Linux <linux@arm.linux.org.uk>,
Ian Campbell <Ian.Campbell@citrix.com>,
arnd@arndb.de, "marc.zyngier@arm.com" <marc.zyngier@arm.com>,
Catalin Marinas <catalin.marinas@arm.com>,
Will Deacon <will.deacon@arm.com>,
"linux-kernel@vger.kernel.org" <linux-kernel@vger.kernel.org>,
Olof Johansson <olof@lixom.net>,
"linux-arm-kernel@lists.infradead.org"
<linux-arm-kernel@lists.infradead.org>
Subject: Re: [PATCH v7 0/6] xen/arm/arm64: CONFIG_PARAVIRT and stolen ticks accounting
Date: Fri, 28 Jun 2013 11:58:40 -0400 [thread overview]
Message-ID: <20130628155840.GA13468@phenom.dumpdata.com> (raw)
In-Reply-To: <alpine.DEB.2.02.1306271614260.4782@kaball.uk.xensource.com>
On Fri, Jun 28, 2013 at 12:19:54PM +0100, Stefano Stabellini wrote:
> Hi all,
> this patch series introduces stolen ticks accounting for Xen on ARM and
> ARM64.
> Stolen ticks are clocksource ticks that have been "stolen" from the cpu,
> typically because Linux is running in a virtual machine and the vcpu has
> been descheduled.
> To account for these ticks we introduce CONFIG_PARAVIRT and pv_time_ops
> so that we can make use of:
>
> kernel/sched/cputime.c:steal_account_process_tick
>
>
> Stefano Stabellini (6):
> xen: move xen_setup_runstate_info and get_runstate_snapshot to drivers/xen/time.c
> kernel: missing include in cputime.c
> arm: introduce CONFIG_PARAVIRT, PARAVIRT_TIME_ACCOUNTING and pv_time_ops
> arm64: introduce CONFIG_PARAVIRT, PARAVIRT_TIME_ACCOUNTING and pv_time_ops
> core: remove ifdef CONFIG_PARAVIRT
> xen/arm: account for stolen ticks
>
> arch/arm/Kconfig | 20 ++++++++
> arch/arm/include/asm/paravirt.h | 20 ++++++++
> arch/arm/kernel/Makefile | 1 +
> arch/arm/kernel/paravirt.c | 25 ++++++++++
> arch/arm/xen/enlighten.c | 21 +++++++++
> arch/arm64/Kconfig | 20 ++++++++
> arch/arm64/include/asm/paravirt.h | 20 ++++++++
> arch/arm64/kernel/Makefile | 1 +
> arch/arm64/kernel/paravirt.c | 25 ++++++++++
> arch/ia64/xen/time.c | 48 +++-----------------
> arch/x86/xen/time.c | 76 +------------------------------
This is going to hit some of the patches that David
has sent to tglx, I think. You might want to try to rebase on top
of them (tip/time/for-xen, or something like that ) when they
are ready.
But for the Xen generic maintainer I am OK with these changes
so you can stick Acked-by on them.
Are you thinking to push them yourself or via the arm64 maintainer?
next prev parent reply other threads:[~2013-06-28 15:58 UTC|newest]
Thread overview: 30+ messages / expand[flat|nested] mbox.gz Atom feed top
2013-06-28 11:19 [PATCH v7 0/6] xen/arm/arm64: CONFIG_PARAVIRT and stolen ticks accounting Stefano Stabellini
2013-06-28 11:19 ` Stefano Stabellini
2013-06-28 11:19 ` Stefano Stabellini
2013-06-28 11:20 ` [PATCH v7 1/6] xen: move xen_setup_runstate_info and get_runstate_snapshot to drivers/xen/time.c Stefano Stabellini
2013-06-28 11:20 ` Stefano Stabellini
2013-06-28 11:20 ` Stefano Stabellini
2013-06-28 11:20 ` [PATCH v7 2/6] kernel: missing include in cputime.c Stefano Stabellini
2013-06-28 11:20 ` Stefano Stabellini
2013-06-28 11:20 ` Stefano Stabellini
2013-06-28 11:20 ` [PATCH v7 3/6] arm: introduce CONFIG_PARAVIRT, PARAVIRT_TIME_ACCOUNTING and pv_time_ops Stefano Stabellini
2013-06-28 11:20 ` Stefano Stabellini
2013-06-28 11:20 ` Stefano Stabellini
2013-06-28 11:20 ` [PATCH v7 4/6] arm64: " Stefano Stabellini
2013-06-28 11:20 ` Stefano Stabellini
2013-06-28 11:20 ` Stefano Stabellini
2013-06-28 11:20 ` [PATCH v7 5/6] core: remove ifdef CONFIG_PARAVIRT Stefano Stabellini
2013-06-28 11:20 ` Stefano Stabellini
2013-06-28 11:20 ` Stefano Stabellini
2013-06-28 11:20 ` [PATCH v7 6/6] xen/arm: account for stolen ticks Stefano Stabellini
2013-06-28 11:20 ` Stefano Stabellini
2013-06-28 11:20 ` Stefano Stabellini
2013-06-28 15:58 ` Konrad Rzeszutek Wilk [this message]
2013-06-28 15:58 ` [PATCH v7 0/6] xen/arm/arm64: CONFIG_PARAVIRT and stolen ticks accounting Konrad Rzeszutek Wilk
2013-06-28 15:58 ` Konrad Rzeszutek Wilk
2013-06-28 16:01 ` Catalin Marinas
2013-06-28 16:01 ` Catalin Marinas
2013-06-28 16:01 ` Catalin Marinas
2013-06-28 16:27 ` Stefano Stabellini
2013-06-28 16:27 ` Stefano Stabellini
2013-06-28 16:27 ` Stefano Stabellini
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=20130628155840.GA13468@phenom.dumpdata.com \
--to=konrad.wilk@oracle.com \
--cc=linux-arm-kernel@lists.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 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.