Skip to content

Commit

Permalink
sched/numa: Convert sched_numa_balancing to a static_branch
Browse files Browse the repository at this point in the history
Variable sched_numa_balancing toggles numa_balancing feature. Hence
moving from a simple read mostly variable to a more apt static_branch.

Suggested-by: Peter Zijlstra <peterz@infradead.org>
Signed-off-by: Srikar Dronamraju <srikar@linux.vnet.ibm.com>
Signed-off-by: Peter Zijlstra (Intel) <peterz@infradead.org>
Cc: Linus Torvalds <torvalds@linux-foundation.org>
Cc: Mel Gorman <mgorman@suse.de>
Cc: Mike Galbraith <efault@gmx.de>
Cc: Rik van Riel <riel@redhat.com>
Cc: Thomas Gleixner <tglx@linutronix.de>
Link: http://lkml.kernel.org/r/1439310261-16124-1-git-send-email-srikar@linux.vnet.ibm.com
Signed-off-by: Ingo Molnar <mingo@kernel.org>
  • Loading branch information
Srikar Dronamraju authored and Ingo Molnar committed Sep 13, 2015
1 parent 2b49d84 commit 2a59572
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 11 deletions.
10 changes: 7 additions & 3 deletions kernel/sched/core.c
Original file line number Diff line number Diff line change
Expand Up @@ -2114,12 +2114,16 @@ static void __sched_fork(unsigned long clone_flags, struct task_struct *p)
#endif /* CONFIG_NUMA_BALANCING */
}

DEFINE_STATIC_KEY_FALSE(sched_numa_balancing);

#ifdef CONFIG_NUMA_BALANCING
__read_mostly bool sched_numa_balancing;

void set_numabalancing_state(bool enabled)
{
sched_numa_balancing = enabled;
if (enabled)
static_branch_enable(&sched_numa_balancing);
else
static_branch_disable(&sched_numa_balancing);
}

#ifdef CONFIG_PROC_SYSCTL
Expand All @@ -2128,7 +2132,7 @@ int sysctl_numa_balancing(struct ctl_table *table, int write,
{
struct ctl_table t;
int err;
int state = sched_numa_balancing;
int state = static_branch_likely(&sched_numa_balancing);

if (write && !capable(CAP_SYS_ADMIN))
return -EPERM;
Expand Down
6 changes: 3 additions & 3 deletions kernel/sched/fair.c
Original file line number Diff line number Diff line change
Expand Up @@ -2069,7 +2069,7 @@ void task_numa_fault(int last_cpupid, int mem_node, int pages, int flags)
int local = !!(flags & TNF_FAULT_LOCAL);
int priv;

if (!sched_numa_balancing)
if (!static_branch_likely(&sched_numa_balancing))
return;

/* for example, ksmd faulting in a user's mm */
Expand Down Expand Up @@ -5562,7 +5562,7 @@ static int migrate_degrades_locality(struct task_struct *p, struct lb_env *env)
unsigned long src_faults, dst_faults;
int src_nid, dst_nid;

if (!sched_numa_balancing)
if (!static_branch_likely(&sched_numa_balancing))
return -1;

if (!p->numa_faults || !(env->sd->flags & SD_NUMA))
Expand Down Expand Up @@ -7874,7 +7874,7 @@ static void task_tick_fair(struct rq *rq, struct task_struct *curr, int queued)
entity_tick(cfs_rq, se, queued);
}

if (sched_numa_balancing)
if (!static_branch_unlikely(&sched_numa_balancing))
task_tick_numa(rq, curr);
}

Expand Down
6 changes: 1 addition & 5 deletions kernel/sched/sched.h
Original file line number Diff line number Diff line change
Expand Up @@ -1003,11 +1003,7 @@ extern struct static_key sched_feat_keys[__SCHED_FEAT_NR];
#define sched_feat(x) (sysctl_sched_features & (1UL << __SCHED_FEAT_##x))
#endif /* SCHED_DEBUG && HAVE_JUMP_LABEL */

#ifdef CONFIG_NUMA_BALANCING
extern bool sched_numa_balancing;
#else
#define sched_numa_balancing (0)
#endif /* CONFIG_NUMA_BALANCING */
extern struct static_key_false sched_numa_balancing;

static inline u64 global_rt_period(void)
{
Expand Down

0 comments on commit 2a59572

Please sign in to comment.