[PATCH 15/32] nohz/cpuset: New API to flush cputimes on nohz cpusets

From: Steven Rostedt
Date: Mon Oct 29 2012 - 16:47:28 EST


From: Frederic Weisbecker <fweisbec@xxxxxxxxx>

Provide a new API that sends an IPI to every CPUs included
in nohz cpusets in order to flush their cputimes. It's going
to be useful for those that want to see accurate cputimes
on a nohz cpuset.

Signed-off-by: Frederic Weisbecker <fweisbec@xxxxxxxxx>
Cc: Alessio Igor Bogani <abogani@xxxxxxxxxx>
Cc: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx>
Cc: Avi Kivity <avi@xxxxxxxxxx>
Cc: Chris Metcalf <cmetcalf@xxxxxxxxxx>
Cc: Christoph Lameter <cl@xxxxxxxxx>
Cc: Daniel Lezcano <daniel.lezcano@xxxxxxxxxx>
Cc: Geoff Levand <geoff@xxxxxxxxxxxxx>
Cc: Gilad Ben Yossef <gilad@xxxxxxxxxxxxx>
Cc: Hakan Akkan <hakanakkan@xxxxxxxxx>
Cc: Ingo Molnar <mingo@xxxxxxxxxx>
Cc: Kevin Hilman <khilman@xxxxxx>
Cc: Max Krasnyansky <maxk@xxxxxxxxxxxx>
Cc: Paul E. McKenney <paulmck@xxxxxxxxxxxxxxxxxx>
Cc: Peter Zijlstra <peterz@xxxxxxxxxxxxx>
Cc: Stephen Hemminger <shemminger@xxxxxxxxxx>
Cc: Steven Rostedt <rostedt@xxxxxxxxxxx>
Cc: Sven-Thorsten Dietrich <thebigcorporation@xxxxxxxxx>
Cc: Thomas Gleixner <tglx@xxxxxxxxxxxxx>
---
include/linux/cpuset.h | 2 ++
include/linux/tick.h | 1 +
kernel/cpuset.c | 34 +++++++++++++++++++++++++++++++++-
kernel/time/tick-sched.c | 21 ++++++++++++++++-----
4 files changed, 52 insertions(+), 6 deletions(-)

diff --git a/include/linux/cpuset.h b/include/linux/cpuset.h
index 631968b..b6c2460 100644
--- a/include/linux/cpuset.h
+++ b/include/linux/cpuset.h
@@ -262,9 +262,11 @@ static inline bool cpuset_adaptive_nohz(void)
}

extern void cpuset_exit_nohz_interrupt(void *unused);
+extern void cpuset_nohz_flush_cputimes(void);
#else
static inline bool cpuset_cpu_adaptive_nohz(int cpu) { return false; }
static inline bool cpuset_adaptive_nohz(void) { return false; }
+static inline void cpuset_nohz_flush_cputimes(void) { }

#endif /* CONFIG_CPUSETS_NO_HZ */

diff --git a/include/linux/tick.h b/include/linux/tick.h
index 598b492..3c31d6e 100644
--- a/include/linux/tick.h
+++ b/include/linux/tick.h
@@ -161,6 +161,7 @@ extern void tick_nohz_check_adaptive(void);
extern void tick_nohz_pre_schedule(void);
extern void tick_nohz_post_schedule(void);
extern bool tick_nohz_account_tick(void);
+extern void tick_nohz_flush_current_times(bool restart_tick);
#else /* !CPUSETS_NO_HZ */
static inline void tick_nohz_enter_kernel(void) { }
static inline void tick_nohz_exit_kernel(void) { }
diff --git a/kernel/cpuset.c b/kernel/cpuset.c
index 1b67e5b..84f9f2b 100644
--- a/kernel/cpuset.c
+++ b/kernel/cpuset.c
@@ -59,6 +59,7 @@
#include <linux/mutex.h>
#include <linux/workqueue.h>
#include <linux/cgroup.h>
+#include <linux/tick.h>

/*
* Workqueue for cpuset related tasks.
@@ -1200,6 +1201,23 @@ static void cpuset_change_flag(struct task_struct *tsk,

DEFINE_PER_CPU(atomic_t, cpu_adaptive_nohz_ref);

+static cpumask_t nohz_cpuset_mask;
+
+static void flush_cputime_interrupt(void *unused)
+{
+ tick_nohz_flush_current_times(false);
+}
+
+void cpuset_nohz_flush_cputimes(void)
+{
+ preempt_disable();
+ smp_call_function_many(&nohz_cpuset_mask, flush_cputime_interrupt,
+ NULL, true);
+ preempt_enable();
+ /* Make the utime/stime updates visible */
+ smp_mb();
+}
+
static void cpu_exit_nohz(int cpu)
{
preempt_disable();
@@ -1223,7 +1241,15 @@ static void update_nohz_cpus(struct cpuset *old_cs, struct cpuset *cs)
else
val = atomic_dec_return(ref);

- if (!val) {
+ if (val == 1) {
+ cpumask_set_cpu(cpu, &nohz_cpuset_mask);
+ /*
+ * The mask update needs to be visible right away
+ * so that this CPU is part of the cputime IPI
+ * update right now.
+ */
+ smp_mb();
+ } else if (!val) {
/*
* The update to cpu_adaptive_nohz_ref must be
* visible right away. So that once we restart the tick
@@ -1234,6 +1260,12 @@ static void update_nohz_cpus(struct cpuset *old_cs, struct cpuset *cs)
*/
smp_mb();
cpu_exit_nohz(cpu);
+ /*
+ * Now that the tick has been restarted and cputimes
+ * flushed, we don't need anymore to be part of the
+ * cputime flush IPI.
+ */
+ cpumask_clear_cpu(cpu, &nohz_cpuset_mask);
}
}
}
diff --git a/kernel/time/tick-sched.c b/kernel/time/tick-sched.c
index de8ba59..2627663 100644
--- a/kernel/time/tick-sched.c
+++ b/kernel/time/tick-sched.c
@@ -712,7 +712,6 @@ static void tick_nohz_account_ticks(struct tick_sched *ts)
WARN_ON_ONCE(1);
}
}
- ts->saved_jiffies_whence = JIFFIES_SAVED_NONE;
}

/**
@@ -746,6 +745,7 @@ void tick_nohz_idle_exit(void)
__tick_nohz_restart_sched_tick(ts, now);
#ifndef CONFIG_VIRT_CPU_ACCOUNTING
tick_nohz_account_ticks(ts);
+ ts->saved_jiffies_whence = JIFFIES_SAVED_NONE;
#endif
}

@@ -988,9 +988,7 @@ static void tick_do_timer_check_handler(int cpu)

static void tick_nohz_restart_adaptive(void)
{
- struct tick_sched *ts = &__get_cpu_var(tick_cpu_sched);
-
- tick_nohz_account_ticks(ts);
+ tick_nohz_flush_current_times(true);
tick_nohz_restart_sched_tick();
clear_thread_flag(TIF_NOHZ);
}
@@ -1030,7 +1028,7 @@ void tick_nohz_pre_schedule(void)
* on the prev task.
*/
if (test_thread_flag(TIF_NOHZ)) {
- tick_nohz_account_ticks(ts);
+ tick_nohz_flush_current_times(true);
clear_thread_flag(TIF_NOHZ);
}
}
@@ -1047,6 +1045,19 @@ void tick_nohz_post_schedule(void)
if (ts->tick_stopped)
tick_nohz_restart_sched_tick();
}
+
+void tick_nohz_flush_current_times(bool restart_tick)
+{
+ struct tick_sched *ts = &__get_cpu_var(tick_cpu_sched);
+
+ if (ts->tick_stopped) {
+ tick_nohz_account_ticks(ts);
+ if (restart_tick)
+ ts->saved_jiffies_whence = JIFFIES_SAVED_NONE;
+ else
+ ts->saved_jiffies = jiffies;
+ }
+}
#else

static void tick_do_timer_check_handler(int cpu)
--
1.7.10.4


--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/