* [PATCH] oprofile: Fix the hang while offline the cpu
@ 2010-10-23 12:12 Santosh Shilimkar
2010-10-27 8:06 ` Robert Richter
0 siblings, 1 reply; 3+ messages in thread
From: Santosh Shilimkar @ 2010-10-23 12:12 UTC (permalink / raw)
To: oprofile-list; +Cc: linux-kernel, Santosh Shilimkar, sricharan, Robert Richter
The kernel build with CONFIG_OPROFILE and CPU_HOTPLUG enabled.
The oprofile is initialised using system timer in absence of hardware
counters supports. Oprofile isn't started from userland.
In this setup while doing a CPU offline the kernel hangs in infinite
for loop inside lock_hrtimer_base() function
This happens because as part of oprofile_cpu_notify(, it tries to
stop an hrtimer which was never started. These per-cpu hrtimers
are started when the oprfile is started.
echo 1 > /dev/oprofile/enable
This patch fix this issue by adding a state variable so that
these hrtimer start/stop is only attempted when oprofile is
started
Reported-by: Jan Sebastien <s-jan@ti.com>
Signed-off-by: sricharan <r.sricharan@ti.com>
Tested-by: sricharan <r.sricharan@ti.com>
Signed-off-by: Santosh Shilimkar <santosh.shilimkar@ti.com>
Cc: Robert Richter <robert.richter@amd.com>
---
drivers/oprofile/timer_int.c | 9 +++++++++
1 files changed, 9 insertions(+), 0 deletions(-)
diff --git a/drivers/oprofile/timer_int.c b/drivers/oprofile/timer_int.c
index dc0ae4d..de487ba 100644
--- a/drivers/oprofile/timer_int.c
+++ b/drivers/oprofile/timer_int.c
@@ -21,6 +21,7 @@
#include "oprof.h"
static DEFINE_PER_CPU(struct hrtimer, oprofile_hrtimer);
+static int oprofile_hrtimer_started;
static enum hrtimer_restart oprofile_hrtimer_notify(struct hrtimer *hrtimer)
{
@@ -33,6 +34,9 @@ static void __oprofile_hrtimer_start(void *unused)
{
struct hrtimer *hrtimer = &__get_cpu_var(oprofile_hrtimer);
+ if (!oprofile_hrtimer_started)
+ return;
+
hrtimer_init(hrtimer, CLOCK_MONOTONIC, HRTIMER_MODE_REL);
hrtimer->function = oprofile_hrtimer_notify;
@@ -42,6 +46,7 @@ static void __oprofile_hrtimer_start(void *unused)
static int oprofile_hrtimer_start(void)
{
+ oprofile_hrtimer_started = 1;
on_each_cpu(__oprofile_hrtimer_start, NULL, 1);
return 0;
}
@@ -50,6 +55,9 @@ static void __oprofile_hrtimer_stop(int cpu)
{
struct hrtimer *hrtimer = &per_cpu(oprofile_hrtimer, cpu);
+ if (!oprofile_hrtimer_started)
+ return;
+
hrtimer_cancel(hrtimer);
}
@@ -59,6 +67,7 @@ static void oprofile_hrtimer_stop(void)
for_each_online_cpu(cpu)
__oprofile_hrtimer_stop(cpu);
+ oprofile_hrtimer_started = 0;
}
static int __cpuinit oprofile_cpu_notify(struct notifier_block *self,
--
1.6.0.4
^ permalink raw reply related [flat|nested] 3+ messages in thread* Re: [PATCH] oprofile: Fix the hang while offline the cpu
2010-10-23 12:12 [PATCH] oprofile: Fix the hang while offline the cpu Santosh Shilimkar
@ 2010-10-27 8:06 ` Robert Richter
2010-10-27 8:45 ` Shilimkar, Santosh
0 siblings, 1 reply; 3+ messages in thread
From: Robert Richter @ 2010-10-27 8:06 UTC (permalink / raw)
To: Santosh Shilimkar
Cc: oprofile-list@lists.sf.net, linux-kernel@vger.kernel.org,
sricharan
On 23.10.10 08:12:06, Santosh Shilimkar wrote:
> The kernel build with CONFIG_OPROFILE and CPU_HOTPLUG enabled.
> The oprofile is initialised using system timer in absence of hardware
> counters supports. Oprofile isn't started from userland.
>
> In this setup while doing a CPU offline the kernel hangs in infinite
> for loop inside lock_hrtimer_base() function
>
> This happens because as part of oprofile_cpu_notify(, it tries to
> stop an hrtimer which was never started. These per-cpu hrtimers
> are started when the oprfile is started.
> echo 1 > /dev/oprofile/enable
Indeed, this is true.
There is also the case vice versa, the cpu is booted with maxcpus
parameter set. When bringing the remaining cpus online the timers are
started even if oprofile is not yet enabled.
>
> This patch fix this issue by adding a state variable so that
> these hrtimer start/stop is only attempted when oprofile is
> started
>
> Reported-by: Jan Sebastien <s-jan@ti.com>
> Signed-off-by: sricharan <r.sricharan@ti.com>
> Tested-by: sricharan <r.sricharan@ti.com>
> Signed-off-by: Santosh Shilimkar <santosh.shilimkar@ti.com>
>
> Cc: Robert Richter <robert.richter@amd.com>
> ---
> drivers/oprofile/timer_int.c | 9 +++++++++
> 1 files changed, 9 insertions(+), 0 deletions(-)
>
> diff --git a/drivers/oprofile/timer_int.c b/drivers/oprofile/timer_int.c
> index dc0ae4d..de487ba 100644
> --- a/drivers/oprofile/timer_int.c
> +++ b/drivers/oprofile/timer_int.c
> @@ -21,6 +21,7 @@
> #include "oprof.h"
>
> static DEFINE_PER_CPU(struct hrtimer, oprofile_hrtimer);
> +static int oprofile_hrtimer_started;
Maybe we rename this in ctr_running. This is similar to the arch/x86
implementation. We don't need the oprofile_ prefix as this is static.
'started' is a bit irritating as we start the timer if the timer is
started.
>
> static enum hrtimer_restart oprofile_hrtimer_notify(struct hrtimer *hrtimer)
> {
> @@ -33,6 +34,9 @@ static void __oprofile_hrtimer_start(void *unused)
> {
> struct hrtimer *hrtimer = &__get_cpu_var(oprofile_hrtimer);
>
> + if (!oprofile_hrtimer_started)
> + return;
> +
> hrtimer_init(hrtimer, CLOCK_MONOTONIC, HRTIMER_MODE_REL);
> hrtimer->function = oprofile_hrtimer_notify;
>
> @@ -42,6 +46,7 @@ static void __oprofile_hrtimer_start(void *unused)
>
> static int oprofile_hrtimer_start(void)
> {
> + oprofile_hrtimer_started = 1;
> on_each_cpu(__oprofile_hrtimer_start, NULL, 1);
We must protect on_each_cpu() and the variable assignment with
get/put_online_cpus(). See also implementation in
arch/x86/oprofile/nmi_int.c.
> return 0;
> }
> @@ -50,6 +55,9 @@ static void __oprofile_hrtimer_stop(int cpu)
> {
> struct hrtimer *hrtimer = &per_cpu(oprofile_hrtimer, cpu);
>
> + if (!oprofile_hrtimer_started)
> + return;
> +
> hrtimer_cancel(hrtimer);
> }
>
> @@ -59,6 +67,7 @@ static void oprofile_hrtimer_stop(void)
>
> for_each_online_cpu(cpu)
> __oprofile_hrtimer_stop(cpu);
> + oprofile_hrtimer_started = 0;
Same here, protect this with get/put_online_cpus().
-Robert
> }
>
> static int __cpuinit oprofile_cpu_notify(struct notifier_block *self,
> --
> 1.6.0.4
>
>
--
Advanced Micro Devices, Inc.
Operating System Research Center
^ permalink raw reply [flat|nested] 3+ messages in thread* RE: [PATCH] oprofile: Fix the hang while offline the cpu
2010-10-27 8:06 ` Robert Richter
@ 2010-10-27 8:45 ` Shilimkar, Santosh
0 siblings, 0 replies; 3+ messages in thread
From: Shilimkar, Santosh @ 2010-10-27 8:45 UTC (permalink / raw)
To: Robert Richter
Cc: oprofile-list@lists.sf.net, linux-kernel@vger.kernel.org,
R, Sricharan
> -----Original Message-----
> From: Robert Richter [mailto:robert.richter@amd.com]
> Sent: Wednesday, October 27, 2010 1:37 PM
> To: Shilimkar, Santosh
> Cc: oprofile-list@lists.sf.net; linux-kernel@vger.kernel.org; R, Sricharan
> Subject: Re: [PATCH] oprofile: Fix the hang while offline the cpu
>
> On 23.10.10 08:12:06, Santosh Shilimkar wrote:
> > The kernel build with CONFIG_OPROFILE and CPU_HOTPLUG enabled.
> > The oprofile is initialised using system timer in absence of hardware
> > counters supports. Oprofile isn't started from userland.
> >
> > In this setup while doing a CPU offline the kernel hangs in infinite
> > for loop inside lock_hrtimer_base() function
> >
> > This happens because as part of oprofile_cpu_notify(, it tries to
> > stop an hrtimer which was never started. These per-cpu hrtimers
> > are started when the oprfile is started.
> > echo 1 > /dev/oprofile/enable
>
> Indeed, this is true.
>
> There is also the case vice versa, the cpu is booted with maxcpus
> parameter set. When bringing the remaining cpus online the timers are
> started even if oprofile is not yet enabled.
>
> >
> > This patch fix this issue by adding a state variable so that
> > these hrtimer start/stop is only attempted when oprofile is
> > started
> >
> > Reported-by: Jan Sebastien <s-jan@ti.com>
> > Signed-off-by: sricharan <r.sricharan@ti.com>
> > Tested-by: sricharan <r.sricharan@ti.com>
> > Signed-off-by: Santosh Shilimkar <santosh.shilimkar@ti.com>
> >
> > Cc: Robert Richter <robert.richter@amd.com>
> > ---
> > drivers/oprofile/timer_int.c | 9 +++++++++
> > 1 files changed, 9 insertions(+), 0 deletions(-)
> >
> > diff --git a/drivers/oprofile/timer_int.c b/drivers/oprofile/timer_int.c
> > index dc0ae4d..de487ba 100644
> > --- a/drivers/oprofile/timer_int.c
> > +++ b/drivers/oprofile/timer_int.c
> > @@ -21,6 +21,7 @@
> > #include "oprof.h"
> >
> > static DEFINE_PER_CPU(struct hrtimer, oprofile_hrtimer);
> > +static int oprofile_hrtimer_started;
>
> Maybe we rename this in ctr_running. This is similar to the arch/x86
> implementation. We don't need the oprofile_ prefix as this is static.
> 'started' is a bit irritating as we start the timer if the timer is
> started.
>
Will rename it to 'ctr_running'
> >
> > static enum hrtimer_restart oprofile_hrtimer_notify(struct hrtimer
> *hrtimer)
> > {
> > @@ -33,6 +34,9 @@ static void __oprofile_hrtimer_start(void *unused)
> > {
> > struct hrtimer *hrtimer = &__get_cpu_var(oprofile_hrtimer);
> >
> > + if (!oprofile_hrtimer_started)
> > + return;
> > +
> > hrtimer_init(hrtimer, CLOCK_MONOTONIC, HRTIMER_MODE_REL);
> > hrtimer->function = oprofile_hrtimer_notify;
> >
> > @@ -42,6 +46,7 @@ static void __oprofile_hrtimer_start(void *unused)
> >
> > static int oprofile_hrtimer_start(void)
> > {
> > + oprofile_hrtimer_started = 1;
> > on_each_cpu(__oprofile_hrtimer_start, NULL, 1);
>
> We must protect on_each_cpu() and the variable assignment with
> get/put_online_cpus(). See also implementation in
> arch/x86/oprofile/nmi_int.c.
>
Good point. Will fix this.
> > return 0;
> > }
> > @@ -50,6 +55,9 @@ static void __oprofile_hrtimer_stop(int cpu)
> > {
> > struct hrtimer *hrtimer = &per_cpu(oprofile_hrtimer, cpu);
> >
> > + if (!oprofile_hrtimer_started)
> > + return;
> > +
> > hrtimer_cancel(hrtimer);
> > }
> >
> > @@ -59,6 +67,7 @@ static void oprofile_hrtimer_stop(void)
> >
> > for_each_online_cpu(cpu)
> > __oprofile_hrtimer_stop(cpu);
> > + oprofile_hrtimer_started = 0;
>
> Same here, protect this with get/put_online_cpus().
Ok.
Will send v2 with above fixes.
Regards,
Santosh
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2010-10-27 8:45 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-10-23 12:12 [PATCH] oprofile: Fix the hang while offline the cpu Santosh Shilimkar
2010-10-27 8:06 ` Robert Richter
2010-10-27 8:45 ` Shilimkar, Santosh
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox