Merge branch 'sched/fast-headers' into sched/core
Merge the scheduler build speedup of the fast-headers tree.
Cumulative scheduler (kernel/sched/) build time speedup on a
Linux distribution's config, which enables all scheduler features,
compared to the vanilla kernel:
_____________________________________________________________________________
|
| Vanilla kernel (v5.13-rc7):
|_____________________________________________________________________________
|
| Performance counter stats for 'make -j96 kernel/sched/' (3 runs):
|
| 126,975,564,374 instructions # 1.45 insn per cycle ( +- 0.00% )
| 87,637,847,671 cycles # 3.959 GHz ( +- 0.30% )
| 22,136.96 msec cpu-clock # 7.499 CPUs utilized ( +- 0.29% )
|
| 2.9520 +- 0.0169 seconds time elapsed ( +- 0.57% )
|_____________________________________________________________________________
|
| Patched kernel:
|_____________________________________________________________________________
|
| Performance counter stats for 'make -j96 kernel/sched/' (3 runs):
|
| 50,420,496,914 instructions # 1.47 insn per cycle ( +- 0.00% )
| 34,234,322,038 cycles # 3.946 GHz ( +- 0.31% )
| 8,675.81 msec cpu-clock # 3.053 CPUs utilized ( +- 0.45% )
|
| 2.8420 +- 0.0181 seconds time elapsed ( +- 0.64% )
|_____________________________________________________________________________
Summary:
- CPU time used to build the scheduler dropped by -60.9%, a reduction
from 22.1 clock-seconds to 8.7 clock-seconds.
- Wall-clock time to build the scheduler dropped by -3.9%, a reduction
from 2.95 seconds to 2.84 seconds.
Signed-off-by: Ingo Molnar <mingo@kernel.org>
This commit is contained in:
commit
ccacfe56d7
69 changed files with 407 additions and 163 deletions
1
include/linux/cgroup_api.h
Normal file
1
include/linux/cgroup_api.h
Normal file
|
|
@ -0,0 +1 @@
|
|||
#include <linux/cgroup.h>
|
||||
1
include/linux/cpumask_api.h
Normal file
1
include/linux/cpumask_api.h
Normal file
|
|
@ -0,0 +1 @@
|
|||
#include <linux/cpumask.h>
|
||||
1
include/linux/fs_api.h
Normal file
1
include/linux/fs_api.h
Normal file
|
|
@ -0,0 +1 @@
|
|||
#include <linux/fs.h>
|
||||
1
include/linux/gfp_api.h
Normal file
1
include/linux/gfp_api.h
Normal file
|
|
@ -0,0 +1 @@
|
|||
#include <linux/gfp.h>
|
||||
1
include/linux/hashtable_api.h
Normal file
1
include/linux/hashtable_api.h
Normal file
|
|
@ -0,0 +1 @@
|
|||
#include <linux/hashtable.h>
|
||||
1
include/linux/hrtimer_api.h
Normal file
1
include/linux/hrtimer_api.h
Normal file
|
|
@ -0,0 +1 @@
|
|||
#include <linux/hrtimer.h>
|
||||
1
include/linux/kobject_api.h
Normal file
1
include/linux/kobject_api.h
Normal file
|
|
@ -0,0 +1 @@
|
|||
#include <linux/kobject.h>
|
||||
1
include/linux/kref_api.h
Normal file
1
include/linux/kref_api.h
Normal file
|
|
@ -0,0 +1 @@
|
|||
#include <linux/kref.h>
|
||||
1
include/linux/ktime_api.h
Normal file
1
include/linux/ktime_api.h
Normal file
|
|
@ -0,0 +1 @@
|
|||
#include <linux/ktime.h>
|
||||
1
include/linux/llist_api.h
Normal file
1
include/linux/llist_api.h
Normal file
|
|
@ -0,0 +1 @@
|
|||
#include <linux/llist.h>
|
||||
1
include/linux/lockdep_api.h
Normal file
1
include/linux/lockdep_api.h
Normal file
|
|
@ -0,0 +1 @@
|
|||
#include <linux/lockdep.h>
|
||||
1
include/linux/mm_api.h
Normal file
1
include/linux/mm_api.h
Normal file
|
|
@ -0,0 +1 @@
|
|||
#include <linux/mm.h>
|
||||
1
include/linux/mutex_api.h
Normal file
1
include/linux/mutex_api.h
Normal file
|
|
@ -0,0 +1 @@
|
|||
#include <linux/mutex.h>
|
||||
1
include/linux/perf_event_api.h
Normal file
1
include/linux/perf_event_api.h
Normal file
|
|
@ -0,0 +1 @@
|
|||
#include <linux/perf_event.h>
|
||||
1
include/linux/pgtable_api.h
Normal file
1
include/linux/pgtable_api.h
Normal file
|
|
@ -0,0 +1 @@
|
|||
#include <linux/pgtable.h>
|
||||
1
include/linux/ptrace_api.h
Normal file
1
include/linux/ptrace_api.h
Normal file
|
|
@ -0,0 +1 @@
|
|||
#include <linux/ptrace.h>
|
||||
1
include/linux/rcuwait_api.h
Normal file
1
include/linux/rcuwait_api.h
Normal file
|
|
@ -0,0 +1 @@
|
|||
#include <linux/rcuwait.h>
|
||||
1
include/linux/refcount_api.h
Normal file
1
include/linux/refcount_api.h
Normal file
|
|
@ -0,0 +1 @@
|
|||
#include <linux/refcount.h>
|
||||
1
include/linux/sched/affinity.h
Normal file
1
include/linux/sched/affinity.h
Normal file
|
|
@ -0,0 +1 @@
|
|||
#include <linux/sched.h>
|
||||
1
include/linux/sched/cond_resched.h
Normal file
1
include/linux/sched/cond_resched.h
Normal file
|
|
@ -0,0 +1 @@
|
|||
#include <linux/sched.h>
|
||||
|
|
@ -6,6 +6,8 @@
|
|||
* NORMAL/BATCH tasks.
|
||||
*/
|
||||
|
||||
#include <linux/sched.h>
|
||||
|
||||
#define MAX_DL_PRIO 0
|
||||
|
||||
static inline int dl_prio(int prio)
|
||||
|
|
|
|||
1
include/linux/sched/posix-timers.h
Normal file
1
include/linux/sched/posix-timers.h
Normal file
|
|
@ -0,0 +1 @@
|
|||
#include <linux/posix-timers.h>
|
||||
1
include/linux/sched/rseq_api.h
Normal file
1
include/linux/sched/rseq_api.h
Normal file
|
|
@ -0,0 +1 @@
|
|||
#include <linux/rseq.h>
|
||||
1
include/linux/sched/task_flags.h
Normal file
1
include/linux/sched/task_flags.h
Normal file
|
|
@ -0,0 +1 @@
|
|||
#include <linux/sched.h>
|
||||
1
include/linux/sched/thread_info_api.h
Normal file
1
include/linux/sched/thread_info_api.h
Normal file
|
|
@ -0,0 +1 @@
|
|||
#include <linux/thread_info.h>
|
||||
|
|
@ -5,6 +5,8 @@
|
|||
#ifndef LINUX_SCHED_CLOCK
|
||||
#define LINUX_SCHED_CLOCK
|
||||
|
||||
#include <linux/types.h>
|
||||
|
||||
#ifdef CONFIG_GENERIC_SCHED_CLOCK
|
||||
/**
|
||||
* struct clock_read_data - data required to read from sched_clock()
|
||||
|
|
|
|||
1
include/linux/seqlock_api.h
Normal file
1
include/linux/seqlock_api.h
Normal file
|
|
@ -0,0 +1 @@
|
|||
#include <linux/seqlock.h>
|
||||
1
include/linux/softirq.h
Normal file
1
include/linux/softirq.h
Normal file
|
|
@ -0,0 +1 @@
|
|||
#include <linux/interrupt.h>
|
||||
1
include/linux/spinlock_api.h
Normal file
1
include/linux/spinlock_api.h
Normal file
|
|
@ -0,0 +1 @@
|
|||
#include <linux/spinlock.h>
|
||||
1
include/linux/swait_api.h
Normal file
1
include/linux/swait_api.h
Normal file
|
|
@ -0,0 +1 @@
|
|||
#include <linux/swait.h>
|
||||
1
include/linux/syscalls_api.h
Normal file
1
include/linux/syscalls_api.h
Normal file
|
|
@ -0,0 +1 @@
|
|||
#include <linux/syscalls.h>
|
||||
1
include/linux/u64_stats_sync_api.h
Normal file
1
include/linux/u64_stats_sync_api.h
Normal file
|
|
@ -0,0 +1 @@
|
|||
#include <linux/u64_stats_sync.h>
|
||||
1
include/linux/wait_api.h
Normal file
1
include/linux/wait_api.h
Normal file
|
|
@ -0,0 +1 @@
|
|||
#include <linux/wait.h>
|
||||
1
include/linux/workqueue_api.h
Normal file
1
include/linux/workqueue_api.h
Normal file
|
|
@ -0,0 +1 @@
|
|||
#include <linux/workqueue.h>
|
||||
Loading…
Add table
Add a link
Reference in a new issue