2013-11-07 13:43:47 +00:00
|
|
|
#ifndef _LINUX_CPUDL_H
|
|
|
|
#define _LINUX_CPUDL_H
|
|
|
|
|
|
|
|
#include <linux/sched.h>
|
2015-09-02 10:01:34 +00:00
|
|
|
#include <linux/sched/deadline.h>
|
2013-11-07 13:43:47 +00:00
|
|
|
|
|
|
|
#define IDX_INVALID -1
|
|
|
|
|
2014-05-14 14:13:56 +00:00
|
|
|
struct cpudl_item {
|
2013-11-07 13:43:47 +00:00
|
|
|
u64 dl;
|
|
|
|
int cpu;
|
2014-05-14 14:13:56 +00:00
|
|
|
int idx;
|
2013-11-07 13:43:47 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
struct cpudl {
|
|
|
|
raw_spinlock_t lock;
|
|
|
|
int size;
|
|
|
|
cpumask_var_t free_cpus;
|
2014-05-14 14:13:56 +00:00
|
|
|
struct cpudl_item *elements;
|
2013-11-07 13:43:47 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
#ifdef CONFIG_SMP
|
|
|
|
int cpudl_find(struct cpudl *cp, struct task_struct *p,
|
|
|
|
struct cpumask *later_mask);
|
sched/deadline: Split cpudl_set() into cpudl_set() and cpudl_clear()
These 2 exercise independent code paths and need different arguments.
After this change, you call:
cpudl_clear(cp, cpu);
cpudl_set(cp, cpu, dl);
instead of:
cpudl_set(cp, cpu, 0 /* dl */, 0 /* is_valid */);
cpudl_set(cp, cpu, dl, 1 /* is_valid */);
Signed-off-by: Tommaso Cucinotta <tommaso.cucinotta@sssup.it>
Signed-off-by: Peter Zijlstra (Intel) <peterz@infradead.org>
Reviewed-by: Luca Abeni <luca.abeni@unitn.it>
Reviewed-by: Juri Lelli <juri.lelli@arm.com>
Cc: Juri Lelli <juri.lelli@gmail.com>
Cc: Linus Torvalds <torvalds@linux-foundation.org>
Cc: Peter Zijlstra <peterz@infradead.org>
Cc: Thomas Gleixner <tglx@linutronix.de>
Cc: linux-dl@retis.sssup.it
Link: http://lkml.kernel.org/r/1471184828-12644-4-git-send-email-tommaso.cucinotta@sssup.it
Signed-off-by: Ingo Molnar <mingo@kernel.org>
2016-08-14 14:27:08 +00:00
|
|
|
void cpudl_set(struct cpudl *cp, int cpu, u64 dl);
|
|
|
|
void cpudl_clear(struct cpudl *cp, int cpu);
|
2013-11-07 13:43:47 +00:00
|
|
|
int cpudl_init(struct cpudl *cp);
|
2015-01-19 04:49:36 +00:00
|
|
|
void cpudl_set_freecpu(struct cpudl *cp, int cpu);
|
|
|
|
void cpudl_clear_freecpu(struct cpudl *cp, int cpu);
|
2013-11-07 13:43:47 +00:00
|
|
|
void cpudl_cleanup(struct cpudl *cp);
|
|
|
|
#endif /* CONFIG_SMP */
|
|
|
|
|
|
|
|
#endif /* _LINUX_CPUDL_H */
|