From: Frederic Weisbecker <fweisbec@gmail.com>
To: Vincent Guittot <vincent.guittot@linaro.org>
Cc: linux-kernel@vger.kernel.org, linux-hotplug@vger.kernel.org,
rostedt@goodmis.org, amit.kucheria@linaro.org
Subject: Re: [PATCH 2/2] tracing, perf : add cpu hotplug trace events
Date: Wed, 26 Jan 2011 17:32:43 +0000 [thread overview]
Message-ID: <20110126173241.GD1757@nowhere> (raw)
In-Reply-To: <AANLkTi=hQpCVJWZ_Op4mhnehufcBg2=h_=q4xXD66tGb@mail.gmail.com>
On Tue, Jan 25, 2011 at 09:54:59AM +0100, Vincent Guittot wrote:
> Please find below a new proposal for adding trace events for cpu hotplug.
> The goal is to measure the latency of each part (kernel, architecture)
> and also to trace the cpu hotplug activity with other power events. I
> have tested these traces events on an arm platform.
>
> Subject: [PATCH 1/2] add cpu hotplug tracepoints
>
> this patch adds new events for cpu hotplug tracing
> * plug/unplug sequence
> * core and architecture latency measurements
>
> Signed-off-by: Vincent Guittot <vincent.guittot@linaro.org>
> ---
> kernel/cpu.c | 17 +++++++++++++++++
> 1 files changed, 17 insertions(+), 0 deletions(-)
>
> diff --git a/kernel/cpu.c b/kernel/cpu.c
> index 156cc55..f04e9cf 100644
> --- a/kernel/cpu.c
> +++ b/kernel/cpu.c
> @@ -16,6 +16,9 @@
> #include <linux/mutex.h>
> #include <linux/gfp.h>
>
> +#define CREATE_TRACE_POINTS
> +#include <trace/events/cpu_hotplug.h>
> +
> #ifdef CONFIG_SMP
> /* Serializes the updates to cpu_online_mask, cpu_present_mask */
> static DEFINE_MUTEX(cpu_add_remove_lock);
> @@ -200,7 +203,9 @@ static int __ref take_cpu_down(void *_param)
> int err;
>
> /* Ensure this CPU doesn't handle any more interrupts. */
> + trace_cpu_hotplug_arch_disable_start((unsigned int)(param->hcpu));
> err = __cpu_disable();
> + trace_cpu_hotplug_arch_disable_end((unsigned int)(param->hcpu));
You should create a cpu var instead of doing that not very beautiful cast
twice.
Probably we should eventually rename arch_disable into just disable.
And same for die, because otherwise the name is quite long.
Other than that, looks all good to me.
Thanks.
WARNING: multiple messages have this Message-ID (diff)
From: Frederic Weisbecker <fweisbec@gmail.com>
To: Vincent Guittot <vincent.guittot@linaro.org>
Cc: linux-kernel@vger.kernel.org, linux-hotplug@vger.kernel.org,
rostedt@goodmis.org, amit.kucheria@linaro.org
Subject: Re: [PATCH 2/2] tracing, perf : add cpu hotplug trace events
Date: Wed, 26 Jan 2011 18:32:43 +0100 [thread overview]
Message-ID: <20110126173241.GD1757@nowhere> (raw)
In-Reply-To: <AANLkTi=hQpCVJWZ_Op4mhnehufcBg2=h_=q4xXD66tGb@mail.gmail.com>
On Tue, Jan 25, 2011 at 09:54:59AM +0100, Vincent Guittot wrote:
> Please find below a new proposal for adding trace events for cpu hotplug.
> The goal is to measure the latency of each part (kernel, architecture)
> and also to trace the cpu hotplug activity with other power events. I
> have tested these traces events on an arm platform.
>
> Subject: [PATCH 1/2] add cpu hotplug tracepoints
>
> this patch adds new events for cpu hotplug tracing
> * plug/unplug sequence
> * core and architecture latency measurements
>
> Signed-off-by: Vincent Guittot <vincent.guittot@linaro.org>
> ---
> kernel/cpu.c | 17 +++++++++++++++++
> 1 files changed, 17 insertions(+), 0 deletions(-)
>
> diff --git a/kernel/cpu.c b/kernel/cpu.c
> index 156cc55..f04e9cf 100644
> --- a/kernel/cpu.c
> +++ b/kernel/cpu.c
> @@ -16,6 +16,9 @@
> #include <linux/mutex.h>
> #include <linux/gfp.h>
>
> +#define CREATE_TRACE_POINTS
> +#include <trace/events/cpu_hotplug.h>
> +
> #ifdef CONFIG_SMP
> /* Serializes the updates to cpu_online_mask, cpu_present_mask */
> static DEFINE_MUTEX(cpu_add_remove_lock);
> @@ -200,7 +203,9 @@ static int __ref take_cpu_down(void *_param)
> int err;
>
> /* Ensure this CPU doesn't handle any more interrupts. */
> + trace_cpu_hotplug_arch_disable_start((unsigned int)(param->hcpu));
> err = __cpu_disable();
> + trace_cpu_hotplug_arch_disable_end((unsigned int)(param->hcpu));
You should create a cpu var instead of doing that not very beautiful cast
twice.
Probably we should eventually rename arch_disable into just disable.
And same for die, because otherwise the name is quite long.
Other than that, looks all good to me.
Thanks.
next prev parent reply other threads:[~2011-01-26 17:32 UTC|newest]
Thread overview: 9+ messages / expand[flat|nested] mbox.gz Atom feed top
2011-01-25 8:54 [PATCH 2/2] tracing, perf : add cpu hotplug trace events Vincent Guittot
2011-01-25 8:54 ` Vincent Guittot
2011-01-25 8:59 ` Vincent Guittot
2011-01-26 17:32 ` Frederic Weisbecker [this message]
2011-01-26 17:32 ` Frederic Weisbecker
2011-01-27 10:04 ` Vincent Guittot
2011-01-27 10:04 ` Vincent Guittot
2011-01-28 17:54 ` Frederic Weisbecker
2011-01-28 17:54 ` Frederic Weisbecker
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=20110126173241.GD1757@nowhere \
--to=fweisbec@gmail.com \
--cc=amit.kucheria@linaro.org \
--cc=linux-hotplug@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=rostedt@goodmis.org \
--cc=vincent.guittot@linaro.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.