All of lore.kernel.org
 help / color / mirror / Atom feed
From: cov@codeaurora.org (Christopher Covington)
To: linux-arm-kernel@lists.infradead.org
Subject: [PATCH v8 4/6] arm64: introduce CONFIG_PARAVIRT, PARAVIRT_TIME_ACCOUNTING and pv_time_ops
Date: Wed, 08 Jan 2014 14:13:16 -0500	[thread overview]
Message-ID: <52CDA34C.2030605@codeaurora.org> (raw)
In-Reply-To: <1389206998-27875-4-git-send-email-stefano.stabellini@eu.citrix.com>

Hi Stefano,

On 01/08/2014 01:49 PM, Stefano Stabellini wrote:
> Introduce CONFIG_PARAVIRT and PARAVIRT_TIME_ACCOUNTING on ARM64.
> Necessary duplication of paravirt.h and paravirt.c with ARM.
> 
> The only paravirt interface supported is pv_time_ops.steal_clock, so no
> runtime pvops patching needed.
> 
> This allows us to make use of steal_account_process_tick for stolen
> ticks accounting.
> 
> Signed-off-by: Stefano Stabellini <stefano.stabellini@eu.citrix.com>
> CC: will.deacon at arm.com
> CC: nico at linaro.org
> CC: marc.zyngier at arm.com
> CC: cov at codeaurora.org
> CC: arnd at arndb.de
> CC: olof at lixom.net
> CC: Catalin.Marinas at arm.com

Looks good to me.

Acked-by Christopher Covington <cov@codeaurora.org>

While I don't think it should necessarily gate these changes, I wonder if at
some point the config options could be consolidated across the various
architectures using them.

Regards,
Christopher

-- 
Employee of Qualcomm Innovation Center, Inc.
Qualcomm Innovation Center, Inc. is a member of Code Aurora Forum,
hosted by the Linux Foundation.

WARNING: multiple messages have this Message-ID (diff)
From: Christopher Covington <cov@codeaurora.org>
To: Stefano Stabellini <stefano.stabellini@eu.citrix.com>
Cc: xen-devel@lists.xensource.com, linux@arm.linux.org.uk,
	Ian.Campbell@citrix.com, arnd@arndb.de, marc.zyngier@arm.com,
	Catalin.Marinas@arm.com, konrad.wilk@oracle.com,
	will.deacon@arm.com, linux-kernel@vger.kernel.org,
	nico@linaro.org, olof@lixom.net,
	linux-arm-kernel@lists.infradead.org
Subject: Re: [PATCH v8 4/6] arm64: introduce CONFIG_PARAVIRT, PARAVIRT_TIME_ACCOUNTING and pv_time_ops
Date: Wed, 08 Jan 2014 14:13:16 -0500	[thread overview]
Message-ID: <52CDA34C.2030605@codeaurora.org> (raw)
In-Reply-To: <1389206998-27875-4-git-send-email-stefano.stabellini@eu.citrix.com>

Hi Stefano,

On 01/08/2014 01:49 PM, Stefano Stabellini wrote:
> Introduce CONFIG_PARAVIRT and PARAVIRT_TIME_ACCOUNTING on ARM64.
> Necessary duplication of paravirt.h and paravirt.c with ARM.
> 
> The only paravirt interface supported is pv_time_ops.steal_clock, so no
> runtime pvops patching needed.
> 
> This allows us to make use of steal_account_process_tick for stolen
> ticks accounting.
> 
> Signed-off-by: Stefano Stabellini <stefano.stabellini@eu.citrix.com>
> CC: will.deacon@arm.com
> CC: nico@linaro.org
> CC: marc.zyngier@arm.com
> CC: cov@codeaurora.org
> CC: arnd@arndb.de
> CC: olof@lixom.net
> CC: Catalin.Marinas@arm.com

Looks good to me.

Acked-by Christopher Covington <cov@codeaurora.org>

While I don't think it should necessarily gate these changes, I wonder if at
some point the config options could be consolidated across the various
architectures using them.

Regards,
Christopher

-- 
Employee of Qualcomm Innovation Center, Inc.
Qualcomm Innovation Center, Inc. is a member of Code Aurora Forum,
hosted by the Linux Foundation.

  reply	other threads:[~2014-01-08 19:13 UTC|newest]

Thread overview: 35+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2014-01-08 18:48 [PATCH v8 0/6] xen/arm/arm64: CONFIG_PARAVIRT and stolen ticks accounting Stefano Stabellini
2014-01-08 18:48 ` Stefano Stabellini
2014-01-08 18:48 ` Stefano Stabellini
2014-01-08 18:49 ` [PATCH v8 1/6] xen: move xen_setup_runstate_info and get_runstate_snapshot to drivers/xen/time.c Stefano Stabellini
2014-01-08 18:49   ` Stefano Stabellini
2014-01-08 18:49   ` Stefano Stabellini
2014-01-08 18:49 ` [PATCH v8 2/6] kernel: missing include in cputime.c Stefano Stabellini
2014-01-08 18:49   ` Stefano Stabellini
2014-01-08 18:49   ` Stefano Stabellini
2014-01-08 18:49 ` [PATCH v8 3/6] arm: introduce CONFIG_PARAVIRT, PARAVIRT_TIME_ACCOUNTING and pv_time_ops Stefano Stabellini
2014-01-08 18:49   ` Stefano Stabellini
2014-01-08 18:49   ` Stefano Stabellini
2014-01-09 12:13   ` Ian Campbell
2014-01-09 12:13     ` Ian Campbell
2014-01-09 12:13     ` Ian Campbell
2014-01-08 18:49 ` [PATCH v8 4/6] arm64: " Stefano Stabellini
2014-01-08 18:49   ` Stefano Stabellini
2014-01-08 18:49   ` Stefano Stabellini
2014-01-08 19:13   ` Christopher Covington [this message]
2014-01-08 19:13     ` Christopher Covington
2014-01-09 12:13   ` Catalin Marinas
2014-01-09 12:13     ` Catalin Marinas
2014-01-09 12:15     ` Ian Campbell
2014-01-09 12:15       ` Ian Campbell
2014-01-09 17:50       ` Stefano Stabellini
2014-01-09 17:50         ` Stefano Stabellini
2014-01-09 17:53         ` Catalin Marinas
2014-01-09 17:53           ` Catalin Marinas
2014-01-09 17:53           ` Catalin Marinas
2014-01-08 18:49 ` [PATCH v8 5/6] core: remove ifdef CONFIG_PARAVIRT Stefano Stabellini
2014-01-08 18:49   ` Stefano Stabellini
2014-01-08 18:49   ` Stefano Stabellini
2014-01-08 18:49 ` [PATCH v8 6/6] xen/arm: account for stolen ticks Stefano Stabellini
2014-01-08 18:49   ` Stefano Stabellini
2014-01-08 18:49   ` 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=52CDA34C.2030605@codeaurora.org \
    --to=cov@codeaurora.org \
    --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.