diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2013-07-02 19:17:25 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2013-07-02 19:17:25 -0400 |
commit | 2d722f6d5671794c0de0e29e3da75006ac086718 (patch) | |
tree | 042c6320cfd771798f985e79aa0422cbe8096258 /arch/tile | |
parent | f0bb4c0ab064a8aeeffbda1cee380151a594eaab (diff) | |
parent | 2fd1b487884310d0aa0c0640179dc7490ad86313 (diff) |
Merge branch 'sched-core-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip
Pull scheduler updates from Ingo Molnar:
"The main changes:
- load-calculation cleanups and improvements, by Alex Shi
- various nohz related tidying up of statisics, by Frederic
Weisbecker
- factor out /proc functions to kernel/sched/proc.c, by Paul
Gortmaker
- simplify the RT policy scheduler, by Kirill Tkhai
- various fixes and cleanups"
* 'sched-core-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip: (42 commits)
sched/debug: Remove CONFIG_FAIR_GROUP_SCHED mask
sched/debug: Fix formatting of /proc/<PID>/sched
sched: Fix typo in struct sched_avg member description
sched/fair: Fix typo describing flags in enqueue_entity
sched/debug: Add load-tracking statistics to task
sched: Change get_rq_runnable_load() to static and inline
sched/tg: Remove tg.load_weight
sched/cfs_rq: Change atomic64_t removed_load to atomic_long_t
sched/tg: Use 'unsigned long' for load variable in task group
sched: Change cfs_rq load avg to unsigned long
sched: Consider runnable load average in move_tasks()
sched: Compute runnable load avg in cpu_load and cpu_avg_load_per_task
sched: Update cpu load after task_tick
sched: Fix sleep time double accounting in enqueue entity
sched: Set an initial value of runnable avg for new forked task
sched: Move a few runnable tg variables into CONFIG_SMP
Revert "sched: Introduce temporary FAIR_GROUP_SCHED dependency for load-tracking"
sched: Don't mix use of typedef ctl_table and struct ctl_table
sched: Remove WARN_ON(!sd) from init_sched_groups_power()
sched: Fix memory leakage in build_sched_groups()
...
Diffstat (limited to 'arch/tile')
-rw-r--r-- | arch/tile/include/asm/processor.h | 2 | ||||
-rw-r--r-- | arch/tile/kernel/stack.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/arch/tile/include/asm/processor.h b/arch/tile/include/asm/processor.h index 2b70dfb1442e..b3f104953da2 100644 --- a/arch/tile/include/asm/processor.h +++ b/arch/tile/include/asm/processor.h | |||
@@ -225,7 +225,7 @@ extern int do_work_pending(struct pt_regs *regs, u32 flags); | |||
225 | 225 | ||
226 | /* | 226 | /* |
227 | * Return saved (kernel) PC of a blocked thread. | 227 | * Return saved (kernel) PC of a blocked thread. |
228 | * Only used in a printk() in kernel/sched.c, so don't work too hard. | 228 | * Only used in a printk() in kernel/sched/core.c, so don't work too hard. |
229 | */ | 229 | */ |
230 | #define thread_saved_pc(t) ((t)->thread.pc) | 230 | #define thread_saved_pc(t) ((t)->thread.pc) |
231 | 231 | ||
diff --git a/arch/tile/kernel/stack.c b/arch/tile/kernel/stack.c index ed258b8ae320..af8dfc9665f6 100644 --- a/arch/tile/kernel/stack.c +++ b/arch/tile/kernel/stack.c | |||
@@ -442,7 +442,7 @@ void _KBacktraceIterator_init_current(struct KBacktraceIterator *kbt, ulong pc, | |||
442 | regs_to_pt_regs(®s, pc, lr, sp, r52)); | 442 | regs_to_pt_regs(®s, pc, lr, sp, r52)); |
443 | } | 443 | } |
444 | 444 | ||
445 | /* This is called only from kernel/sched.c, with esp == NULL */ | 445 | /* This is called only from kernel/sched/core.c, with esp == NULL */ |
446 | void show_stack(struct task_struct *task, unsigned long *esp) | 446 | void show_stack(struct task_struct *task, unsigned long *esp) |
447 | { | 447 | { |
448 | struct KBacktraceIterator kbt; | 448 | struct KBacktraceIterator kbt; |