Release 4.11 init/main.c
/*
* linux/init/main.c
*
* Copyright (C) 1991, 1992 Linus Torvalds
*
* GK 2/5/95 - Changed to support mounting root fs via NFS
* Added initrd & change_root: Werner Almesberger & Hans Lermen, Feb '96
* Moan early if gcc is old, avoiding bogus kernels - Paul Gortmaker, May '96
* Simplified starting of init: Michael A. Griffith <grif@acm.org>
*/
#define DEBUG
/* Enable initcall_debug */
#include <linux/types.h>
#include <linux/extable.h>
#include <linux/module.h>
#include <linux/proc_fs.h>
#include <linux/binfmts.h>
#include <linux/kernel.h>
#include <linux/syscalls.h>
#include <linux/stackprotector.h>
#include <linux/string.h>
#include <linux/ctype.h>
#include <linux/delay.h>
#include <linux/ioport.h>
#include <linux/init.h>
#include <linux/initrd.h>
#include <linux/bootmem.h>
#include <linux/acpi.h>
#include <linux/tty.h>
#include <linux/nmi.h>
#include <linux/percpu.h>
#include <linux/kmod.h>
#include <linux/vmalloc.h>
#include <linux/kernel_stat.h>
#include <linux/start_kernel.h>
#include <linux/security.h>
#include <linux/smp.h>
#include <linux/profile.h>
#include <linux/rcupdate.h>
#include <linux/moduleparam.h>
#include <linux/kallsyms.h>
#include <linux/writeback.h>
#include <linux/cpu.h>
#include <linux/cpuset.h>
#include <linux/cgroup.h>
#include <linux/efi.h>
#include <linux/tick.h>
#include <linux/interrupt.h>
#include <linux/taskstats_kern.h>
#include <linux/delayacct.h>
#include <linux/unistd.h>
#include <linux/rmap.h>
#include <linux/mempolicy.h>
#include <linux/key.h>
#include <linux/buffer_head.h>
#include <linux/page_ext.h>
#include <linux/debug_locks.h>
#include <linux/debugobjects.h>
#include <linux/lockdep.h>
#include <linux/kmemleak.h>
#include <linux/pid_namespace.h>
#include <linux/device.h>
#include <linux/kthread.h>
#include <linux/sched.h>
#include <linux/sched/init.h>
#include <linux/signal.h>
#include <linux/idr.h>
#include <linux/kgdb.h>
#include <linux/ftrace.h>
#include <linux/async.h>
#include <linux/kmemcheck.h>
#include <linux/sfi.h>
#include <linux/shmem_fs.h>
#include <linux/slab.h>
#include <linux/perf_event.h>
#include <linux/ptrace.h>
#include <linux/blkdev.h>
#include <linux/elevator.h>
#include <linux/sched_clock.h>
#include <linux/sched/task.h>
#include <linux/sched/task_stack.h>
#include <linux/context_tracking.h>
#include <linux/random.h>
#include <linux/list.h>
#include <linux/integrity.h>
#include <linux/proc_ns.h>
#include <linux/io.h>
#include <linux/cache.h>
#include <linux/rodata_test.h>
#include <asm/io.h>
#include <asm/bugs.h>
#include <asm/setup.h>
#include <asm/sections.h>
#include <asm/cacheflush.h>
static int kernel_init(void *);
extern void init_IRQ(void);
extern void fork_init(void);
extern void radix_tree_init(void);
/*
* Debug helper: via this flag we know that we are in 'early bootup code'
* where only the boot processor is running with IRQ disabled. This means
* two things - IRQ must not be enabled before the flag is cleared and some
* operations which are not allowed with IRQ disabled are allowed while the
* flag is set.
*/
bool early_boot_irqs_disabled __read_mostly;
enum system_states system_state __read_mostly;
EXPORT_SYMBOL(system_state);
/*
* Boot command-line arguments
*/
#define MAX_INIT_ARGS CONFIG_INIT_ENV_ARG_LIMIT
#define MAX_INIT_ENVS CONFIG_INIT_ENV_ARG_LIMIT
extern void time_init(void);
/* Default late time init is NULL. archs can override this later. */
void (*__initdata late_time_init)(void);
/* Untouched command line saved by arch-specific code. */
char __initdata boot_command_line[COMMAND_LINE_SIZE];
/* Untouched saved command line (eg. for /proc) */
char *saved_command_line;
/* Command line for parameter parsing */
static char *static_command_line;
/* Command line for per-initcall parameter parsing */
static char *initcall_command_line;
static char *execute_command;
static char *ramdisk_execute_command;
/*
* Used to generate warnings if static_key manipulation functions are used
* before jump_label_init is called.
*/
bool static_key_initialized __read_mostly;
EXPORT_SYMBOL_GPL(static_key_initialized);
/*
* If set, this is an indication to the drivers that reset the underlying
* device before going ahead with the initialization otherwise driver might
* rely on the BIOS and skip the reset operation.
*
* This is useful if kernel is booting in an unreliable environment.
* For ex. kdump situation where previous kernel has crashed, BIOS has been
* skipped and devices will be in unknown state.
*/
unsigned int reset_devices;
EXPORT_SYMBOL(reset_devices);
static int __init set_reset_devices(char *str)
{
reset_devices = 1;
return 1;
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Vivek Goyal | 18 | 100.00% | 1 | 100.00% |
Total | 18 | 100.00% | 1 | 100.00% |
__setup("reset_devices", set_reset_devices);
static const char *argv_init[MAX_INIT_ARGS+2] = { "init", NULL, };
const char *envp_init[MAX_INIT_ENVS+2] = { "HOME=/", "TERM=linux", NULL, };
static const char *panic_later, *panic_param;
extern const struct obs_kernel_param __setup_start[], __setup_end[];
static bool __init obsolete_checksetup(char *line)
{
const struct obs_kernel_param *p;
bool had_early_param = false;
p = __setup_start;
do {
int n = strlen(p->str);
if (parameqn(line, p->str, n)) {
if (p->early) {
/* Already done in parse_early_param?
* (Needs exact match on param part).
* Keep iterating, as we can have early
* params and __setups of same names 8( */
if (line[n] == '\0' || line[n] == '=')
had_early_param = true;
} else if (!p->setup_func) {
pr_warn("Parameter %s is obsolete, ignored\n",
p->str);
return true;
} else if (p->setup_func(line + n))
return true;
}
p++;
} while (p < __setup_end);
return had_early_param;
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Linus Torvalds (pre-git) | 69 | 51.88% | 3 | 27.27% |
Andrew Morton | 27 | 20.30% | 2 | 18.18% |
Dmitry Torokhov | 19 | 14.29% | 1 | 9.09% |
Rusty Russell | 11 | 8.27% | 3 | 27.27% |
Yaowei Bai | 6 | 4.51% | 1 | 9.09% |
Michal Schmidt | 1 | 0.75% | 1 | 9.09% |
Total | 133 | 100.00% | 11 | 100.00% |
/*
* This should be approx 2 Bo*oMips to start (note initial shift), and will
* still work even if initially too large, it will just take slightly longer
*/
unsigned long loops_per_jiffy = (1<<12);
EXPORT_SYMBOL(loops_per_jiffy);
static int __init debug_kernel(char *str)
{
console_loglevel = CONSOLE_LOGLEVEL_DEBUG;
return 0;
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Linus Torvalds (pre-git) | 16 | 88.89% | 1 | 33.33% |
Yinghai Lu | 1 | 5.56% | 1 | 33.33% |
Borislav Petkov | 1 | 5.56% | 1 | 33.33% |
Total | 18 | 100.00% | 3 | 100.00% |
static int __init quiet_kernel(char *str)
{
console_loglevel = CONSOLE_LOGLEVEL_QUIET;
return 0;
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Linus Torvalds (pre-git) | 16 | 88.89% | 1 | 33.33% |
Yinghai Lu | 1 | 5.56% | 1 | 33.33% |
Borislav Petkov | 1 | 5.56% | 1 | 33.33% |
Total | 18 | 100.00% | 3 | 100.00% |
early_param("debug", debug_kernel);
early_param("quiet", quiet_kernel);
static int __init loglevel(char *str)
{
int newlevel;
/*
* Only update loglevel value when a correct setting was passed,
* to prevent blind crashes (when loglevel being set to 0) that
* are quite hard to debug
*/
if (get_option(&str, &newlevel)) {
console_loglevel = newlevel;
return 0;
}
return -EINVAL;
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
matthias.kunze@gmx-topmail.de | 21 | 53.85% | 1 | 33.33% |
Alexander Sverdlin | 17 | 43.59% | 1 | 33.33% |
Alex Riesen | 1 | 2.56% | 1 | 33.33% |
Total | 39 | 100.00% | 3 | 100.00% |
early_param("loglevel", loglevel);
/* Change NUL term back to "=", to make "param" the whole string. */
static int __init repair_env_string(char *param, char *val,
const char *unused, void *arg)
{
if (val) {
/* param=val or param="val"? */
if (val == param+strlen(param)+1)
val[-1] = '=';
else if (val == param+strlen(param)+2) {
val[-2] = '=';
memmove(val-1, val, strlen(val)+1);
val--;
} else
BUG();
}
return 0;
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Rusty Russell | 62 | 60.78% | 2 | 20.00% |
Linus Torvalds (pre-git) | 15 | 14.71% | 4 | 40.00% |
Len Brown | 11 | 10.78% | 1 | 10.00% |
Jim Cromie | 5 | 4.90% | 1 | 10.00% |
Chris Metcalf | 5 | 4.90% | 1 | 10.00% |
Luis R. Rodriguez | 4 | 3.92% | 1 | 10.00% |
Total | 102 | 100.00% | 10 | 100.00% |
/* Anything after -- gets handed straight to init. */
static int __init set_init_arg(char *param, char *val,
const char *unused, void *arg)
{
unsigned int i;
if (panic_later)
return 0;
repair_env_string(param, val, unused, NULL);
for (i = 0; argv_init[i]; i++) {
if (i == MAX_INIT_ARGS) {
panic_later = "init";
panic_param = param;
return 0;
}
}
argv_init[i] = param;
return 0;
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Rusty Russell | 85 | 93.41% | 1 | 50.00% |
Luis R. Rodriguez | 6 | 6.59% | 1 | 50.00% |
Total | 91 | 100.00% | 2 | 100.00% |
/*
* Unknown boot options get handed to init, unless they look like
* unused parameters (modprobe will find them in /proc/cmdline).
*/
static int __init unknown_bootoption(char *param, char *val,
const char *unused, void *arg)
{
repair_env_string(param, val, unused, NULL);
/* Handle obsolete-style parameters */
if (obsolete_checksetup(param))
return 0;
/* Unused module parameter. */
if (strchr(param, '.') && (!val || strchr(param, '.') < val))
return 0;
if (panic_later)
return 0;
if (val) {
/* Environment option */
unsigned int i;
for (i = 0; envp_init[i]; i++) {
if (i == MAX_INIT_ENVS) {
panic_later = "env";
panic_param = param;
}
if (!strncmp(param, envp_init[i], val - param))
break;
}
envp_init[i] = param;
} else {
/* Command line option */
unsigned int i;
for (i = 0; argv_init[i]; i++) {
if (i == MAX_INIT_ARGS) {
panic_later = "init";
panic_param = param;
}
}
argv_init[i] = param;
}
return 0;
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Rusty Russell | 80 | 40.40% | 2 | 12.50% |
Linus Torvalds (pre-git) | 43 | 21.72% | 8 | 50.00% |
Andrew Morton | 21 | 10.61% | 1 | 6.25% |
Chris Metcalf | 21 | 10.61% | 1 | 6.25% |
William Lee Irwin III | 18 | 9.09% | 1 | 6.25% |
Greg Kroah-Hartman | 7 | 3.54% | 1 | 6.25% |
Luis R. Rodriguez | 6 | 3.03% | 1 | 6.25% |
Tetsuo Handa | 2 | 1.01% | 1 | 6.25% |
Total | 198 | 100.00% | 16 | 100.00% |
static int __init init_setup(char *str)
{
unsigned int i;
execute_command = str;
/*
* In case LILO is going to boot us with default command line,
* it prepends "auto" before the whole cmdline which makes
* the shell think it should execute a script with such name.
* So we ignore all arguments entered _before_ init=... [MJ]
*/
for (i = 1; i < MAX_INIT_ARGS; i++)
argv_init[i] = NULL;
return 1;
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Rusty Russell | 42 | 97.67% | 1 | 50.00% |
Adam Kropelin | 1 | 2.33% | 1 | 50.00% |
Total | 43 | 100.00% | 2 | 100.00% |
__setup("init=", init_setup);
static int __init rdinit_setup(char *str)
{
unsigned int i;
ramdisk_execute_command = str;
/* See "auto" comment in init_setup */
for (i = 1; i < MAX_INIT_ARGS; i++)
argv_init[i] = NULL;
return 1;
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Olof Johansson | 43 | 100.00% | 1 | 100.00% |
Total | 43 | 100.00% | 1 | 100.00% |
__setup("rdinit=", rdinit_setup);
#ifndef CONFIG_SMP
static const unsigned int setup_max_cpus = NR_CPUS;
static inline void setup_nr_cpu_ids(void) { }
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Mike Travis | 8 | 100.00% | 1 | 100.00% |
Total | 8 | 100.00% | 1 | 100.00% |
static inline void smp_prepare_cpus(unsigned int maxcpus) { }
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Rusty Russell | 10 | 100.00% | 1 | 100.00% |
Total | 10 | 100.00% | 1 | 100.00% |
#endif
/*
* We need to store the untouched command line for future reference.
* We also need to store the touched command line since the parameter
* parsing is performed in place, and we should allow a component to
* store reference of name/value for future reference.
*/
static void __init setup_command_line(char *command_line)
{
saved_command_line =
memblock_virt_alloc(strlen(boot_command_line) + 1, 0);
initcall_command_line =
memblock_virt_alloc(strlen(boot_command_line) + 1, 0);
static_command_line = memblock_virt_alloc(strlen(command_line) + 1, 0);
strcpy(saved_command_line, boot_command_line);
strcpy(static_command_line, command_line);
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Alon Bar-Lev | 47 | 70.15% | 1 | 33.33% |
Krzysztof Mazur | 11 | 16.42% | 1 | 33.33% |
Santosh Shilimkar | 9 | 13.43% | 1 | 33.33% |
Total | 67 | 100.00% | 3 | 100.00% |
/*
* We need to finalize in a non-__init function or else race conditions
* between the root thread and the init thread may cause start_kernel to
* be reaped by free_initmem before the root thread has proceeded to
* cpu_idle.
*
* gcc-3.4 accidentally inlines this function, so use noinline.
*/
static __initdata DECLARE_COMPLETION(kthreadd_done);
static noinline void __ref rest_init(void)
{
int pid;
rcu_scheduler_starting();
/*
* We need to spawn init first so that it obtains pid 1, however
* the init task will end up wanting to create kthreads, which, if
* we schedule it before we create kthreadd, will OOPS.
*/
kernel_thread(kernel_init, NULL, CLONE_FS);
numa_default_policy();
pid = kernel_thread(kthreadd, NULL, CLONE_FS | CLONE_FILES);
rcu_read_lock();
kthreadd_task = find_task_by_pid_ns(pid, &init_pid_ns);
rcu_read_unlock();
complete(&kthreadd_done);
/*
* The boot idle thread must execute schedule()
* at least once to get things moving:
*/
init_idle_bootup_task(current);
schedule_preempt_disabled();
/* Call into cpu_idle with preempt disabled */
cpu_startup_entry(CPUHP_ONLINE);
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Eric W. Biedermann | 22 | 27.85% | 1 | 5.56% |
Linus Torvalds | 15 | 18.99% | 1 | 5.56% |
Paul E. McKenney | 9 | 11.39% | 2 | 11.11% |
Ingo Molnar | 8 | 10.13% | 2 | 11.11% |
Peter Zijlstra | 7 | 8.86% | 2 | 11.11% |
Thomas Gleixner | 5 | 6.33% | 2 | 11.11% |
Pavel Emelyanov | 4 | 5.06% | 1 | 5.56% |
Andi Kleen | 3 | 3.80% | 1 | 5.56% |
Andrew Morton | 2 | 2.53% | 2 | 11.11% |
Sam Ravnborg | 1 | 1.27% | 1 | 5.56% |
Nicholas Piggin | 1 | 1.27% | 1 | 5.56% |
Fabian Frederick | 1 | 1.27% | 1 | 5.56% |
Rakib Mullick | 1 | 1.27% | 1 | 5.56% |
Total | 79 | 100.00% | 18 | 100.00% |
/* Check for early params. */
static int __init do_early_param(char *param, char *val,
const char *unused, void *arg)
{
const struct obs_kernel_param *p;
for (p = __setup_start; p < __setup_end; p++) {
if ((p->early && parameq(param, p->str)) ||
(strcmp(param, "console") == 0 &&
strcmp(p->str, "earlycon") == 0)
) {
if (p->setup_func(val) != 0)
pr_warn("Malformed early option '%s'\n", param);
}
}
/* We accept everything at this stage. */
return 0;
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Andrew Morton | 73 | 67.59% | 2 | 28.57% |
Yinghai Lu | 24 | 22.22% | 1 | 14.29% |
Jim Cromie | 5 | 4.63% | 1 | 14.29% |
Luis R. Rodriguez | 4 | 3.70% | 1 | 14.29% |
Michal Schmidt | 1 | 0.93% | 1 | 14.29% |
Rusty Russell | 1 | 0.93% | 1 | 14.29% |
Total | 108 | 100.00% | 7 | 100.00% |
void __init parse_early_options(char *cmdline)
{
parse_args("early options", cmdline, NULL, 0, 0, 0, NULL,
do_early_param);
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Magnus Damm | 23 | 79.31% | 1 | 33.33% |
Pawel Moll | 4 | 13.79% | 1 | 33.33% |
Luis R. Rodriguez | 2 | 6.90% | 1 | 33.33% |
Total | 29 | 100.00% | 3 | 100.00% |
/* Arch code calls this early on, or if not, just before other parsing. */
void __init parse_early_param(void)
{
static int done __initdata;
static char tmp_cmdline[COMMAND_LINE_SIZE] __initdata;
if (done)
return;
/* All fall through to do_early_param. */
strlcpy(tmp_cmdline, boot_command_line, COMMAND_LINE_SIZE);
parse_early_options(tmp_cmdline);
done = 1;
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Andrew Morton | 41 | 91.11% | 1 | 25.00% |
Fabian Frederick | 2 | 4.44% | 1 | 25.00% |
Alon Bar-Lev | 1 | 2.22% | 1 | 25.00% |
Magnus Damm | 1 | 2.22% | 1 | 25.00% |
Total | 45 | 100.00% | 4 | 100.00% |
void __init __weak arch_post_acpi_subsys_init(void) { }
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Thomas Gleixner | 8 | 100.00% | 1 | 100.00% |
Total | 8 | 100.00% | 1 | 100.00% |
void __init __weak smp_setup_processor_id(void)
{
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Andrew Morton | 5 | 62.50% | 1 | 50.00% |
Benjamin Herrenschmidt | 3 | 37.50% | 1 | 50.00% |
Total | 8 | 100.00% | 2 | 100.00% |
# if THREAD_SIZE >= PAGE_SIZE
void __init __weak thread_stack_cache_init(void)
{
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Benjamin Herrenschmidt | 7 | 87.50% | 1 | 50.00% |
Linus Torvalds | 1 | 12.50% | 1 | 50.00% |
Total | 8 | 100.00% | 2 | 100.00% |
#endif
/*
* Set up kernel memory allocators
*/
static void __init mm_init(void)
{
/*
* page_ext requires contiguous pages,
* bigger than MAX_ORDER unless SPARSEMEM.
*/
page_ext_init_flatmem();
mem_init();
kmem_cache_init();
percpu_init_late();
pgtable_init();
vmalloc_init();
ioremap_huge_init();
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Pekka J Enberg | 18 | 58.06% | 1 | 16.67% |
JoonSoo Kim | 4 | 12.90% | 1 | 16.67% |
Tejun Heo | 3 | 9.68% | 1 | 16.67% |
Toshi Kani | 3 | 9.68% | 1 | 16.67% |
Benjamin Herrenschmidt | 2 | 6.45% | 1 | 16.67% |
Kirill A. Shutemov | 1 | 3.23% | 1 | 16.67% |
Total | 31 | 100.00% | 6 | 100.00% |
asmlinkage __visible void __init start_kernel(void)
{
char *command_line;
char *after_dashes;
set_task_stack_end_magic(&init_task);
smp_setup_processor_id();
debug_objects_early_init();
/*
* Set up the the initial canary ASAP:
*/
boot_init_stack_canary();
cgroup_init_early();
local_irq_disable();
early_boot_irqs_disabled = true;
/*
* Interrupts are still disabled. Do necessary setups, then
* enable them
*/
boot_cpu_init();
page_address_init();
pr_notice("%s", linux_banner);
setup_arch(&command_line);
mm_init_cpumask(&init_mm);
setup_command_line(command_line);
setup_nr_cpu_ids();
setup_per_cpu_areas();
boot_cpu_state_init();
smp_prepare_boot_cpu(); /* arch-specific boot-cpu hooks */
build_all_zonelists(NULL, NULL);
page_alloc_init();
pr_notice("Kernel command line: %s\n", boot_command_line);
parse_early_param();
after_dashes = parse_args("Booting kernel",
static_command_line, __start___param,
__stop___param - __start___param,
-1, -1, NULL, &unknown_bootoption);
if (!IS_ERR_OR_NULL(after_dashes))
parse_args("Setting init args", after_dashes, NULL, 0, -1, -1,
NULL, set_init_arg);
jump_label_init();
/*
* These use large bootmem allocations and must precede
* kmem_cache_init()
*/
setup_log_buf(0);
pidhash_init();
vfs_caches_init_early();
sort_main_extable();
trap_init();
mm_init();
/*
* Set up the scheduler prior starting any interrupts (such as the
* timer interrupt). Full topology setup happens at smp_init()
* time - but meanwhile we still have a functioning scheduler.
*/
sched_init();
/*
* Disable preemption - early bootup scheduling is extremely
* fragile until we cpu_idle() for the first time.
*/
preempt_disable();
if (WARN(!irqs_disabled(),
"Interrupts were enabled *very* early, fixing it\n"))
local_irq_disable();
radix_tree_init();
/*
* Allow workqueue creation and work item queueing/cancelling
* early. Work item execution depends on kthreads and starts after
* workqueue_init().
*/
workqueue_init_early();
rcu_init();
/* trace_printk() and trace points may be used after this */
trace_init();
context_tracking_init();
/* init some links before init_ISA_irqs() */
early_irq_init();
init_IRQ();
tick_init();
rcu_init_nohz();
init_timers();
hrtimers_init();
softirq_init();
timekeeping_init();
time_init();
sched_clock_postinit();
printk_safe_init();
perf_event_init();
profile_init();
call_function_init();
WARN(!irqs_disabled(), "Interrupts were enabled early\n");
early_boot_irqs_disabled = false;
local_irq_enable();
kmem_cache_init_late();
/*
* HACK ALERT! This is early. We're enabling the console before
* we've done PCI setups etc, and console_init() must be aware of
* this. But we do want output early, in case something goes wrong.
*/
console_init();
if (panic_later)
panic("Too many boot %s vars at `%s'", panic_later,
panic_param);
lockdep_info();
/*
* Need to run this when irqs are enabled, because it wants
* to self-test [hard/soft]-irqs on/off lock inversion bugs
* too:
*/
locking_selftest();
#ifdef CONFIG_BLK_DEV_INITRD
if (initrd_start && !initrd_below_start_ok &&
page_to_pfn(virt_to_page((void *)initrd_start)) < min_low_pfn) {
pr_crit("initrd overwritten (0x%08lx < 0x%08lx) - disabling it.\n",
page_to_pfn(virt_to_page((void *)initrd_start)),
min_low_pfn);
initrd_start = 0;
}
#endif
page_ext_init();
debug_objects_mem_init();
kmemleak_init();
setup_per_cpu_pageset();
numa_policy_init();
if (late_time_init)
late_time_init();
calibrate_delay();
pidmap_init();
anon_vma_init();
acpi_early_init();
#ifdef CONFIG_X86
if (efi_enabled(EFI_RUNTIME_SERVICES))
efi_enter_virtual_mode();
#endif
#ifdef CONFIG_X86_ESPFIX64
/* Should be run before the first non-init thread is created */
init_espfix_bsp();
#endif
thread_stack_cache_init();
cred_init();
fork_init();
proc_caches_init();
buffer_init();
key_init();
security_init();
dbg_late_init();
vfs_caches_init();
pagecache_init();
signals_init();
proc_root_init();
nsfs_init();
cpuset_init();
cgroup_init();
taskstats_init_early();
delayacct_init();
check_bugs();
acpi_subsystem_init();
arch_post_acpi_subsys_init();
sfi_init_late();
if (efi_enabled(EFI_RUNTIME_SERVICES)) {
efi_free_boot_services();
}
ftrace_init();
/* Do the rest non-__init'ed, we're now alive */
rest_init();
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Linus Torvalds (pre-git) | 87 | 17.30% | 29 | 21.32% |
Rusty Russell | 45 | 8.95% | 4 | 2.94% |
Andrew Morton | 37 | 7.36% | 12 | 8.82% |
Linus Torvalds | 28 | 5.57% | 8 | 5.88% |
Pekka J Enberg | 27 | 5.37% | 4 | 2.94% |
Geert Uytterhoeven | 20 | 3.98% | 2 | 1.47% |
Ingo Molnar | 19 | 3.78% | 5 | 3.68% |
Thomas Gleixner | 17 | 3.38% | 5 | 3.68% |
Steven Rostedt | 16 | 3.18% | 3 | 2.21% |
Heiko Carstens | 15 | 2.98% | 1 | 0.74% |
Tejun Heo | 12 | 2.39% | 3 | 2.21% |
H. Peter Anvin | 9 | 1.79% | 2 | 1.47% |
Josh Triplett | 9 | 1.79% | 2 | 1.47% |
John Stultz | 9 | 1.79% | 2 | 1.47% |
Ard van Breemen | 9 | 1.79% | 1 | 0.74% |
Mike Travis | 7 | 1.39% | 2 | 1.47% |
Alon Bar-Lev | 7 | 1.39% | 1 | 0.74% |
Rafael J. Wysocki | 6 | 1.19% | 2 | 1.47% |
Matt Fleming | 6 | 1.19% | 1 | 0.74% |
Shailabh Nagar | 6 | 1.19% | 2 | 1.47% |
Aaron Tomlin | 6 | 1.19% | 1 | 0.74% |
David Howells | 6 | 1.19% | 2 | 1.47% |
Paul Menage | 5 | 0.99% | 1 | 0.74% |
Andi Kleen | 4 | 0.80% | 2 | 1.47% |
Luis R. Rodriguez | 4 | 0.80% | 1 | 0.74% |
Stas Sergeev | 4 | 0.80% | 1 | 0.74% |
Catalin Marinas | 4 | 0.80% | 2 | 1.47% |
Daniel R Thompson | 4 | 0.80% | 1 | 0.74% |
Yinghai Lu | 4 | 0.80% | 1 | 0.74% |
Al Viro | 3 | 0.60% | 1 | 0.74% |
Takao Indoh | 3 | 0.60% | 1 | 0.74% |
Haicheng Li | 3 | 0.60% | 1 | 0.74% |
Lei Ming | 3 | 0.60% | 1 | 0.74% |
Jason Wessel | 3 | 0.60% | 2 | 1.47% |
Stéphane Eranian | 3 | 0.60% | 1 | 0.74% |
Dipankar Sarma | 3 | 0.60% | 1 | 0.74% |
Christoph Lameter | 3 | 0.60% | 1 | 0.74% |
Stephen Boyd | 3 | 0.60% | 1 | 0.74% |
Feng Tang | 3 | 0.60% | 1 | 0.74% |
Jeremy Fitzhardinge | 3 | 0.60% | 1 | 0.74% |
Frédéric Weisbecker | 3 | 0.60% | 1 | 0.74% |
Yang Shi | 3 | 0.60% | 1 | 0.74% |
Benjamin Herrenschmidt | 2 | 0.40% | 1 | 0.74% |
John Levon | 2 | 0.40% | 1 | 0.74% |
Petr Mladek | 2 | 0.40% | 1 | 0.74% |
Li Zefan | 2 | 0.40% | 1 | 0.74% |
Paul Jackson | 2 | 0.40% | 1 | 0.74% |
Chris Wright | 2 | 0.40% | 2 | 1.47% |
Peter Zijlstra | 2 | 0.40% | 1 | 0.74% |
Pawel Moll | 2 | 0.40% | 1 | 0.74% |
Nicholas Piggin | 2 | 0.40% | 1 | 0.74% |
Greg Kroah-Hartman | 2 | 0.40% | 1 | 0.74% |
Fabian Frederick | 2 | 0.40% | 1 | 0.74% |
Jiang Liu | 2 | 0.40% | 1 | 0.74% |
Alex Riesen | 2 | 0.40% | 1 | 0.74% |
Tetsuo Handa | 2 | 0.40% | 1 | 0.74% |
Mel Gorman | 1 | 0.20% | 1 | 0.74% |
Matthew Wilcox | 1 | 0.20% | 1 | 0.74% |
Heinrich Schuchardt | 1 | 0.20% | 1 | 0.74% |
Sergey Senozhatsky | 1 | 0.20% | 1 | 0.74% |
Total | 503 | 100.00% | 136 | 100.00% |
/* Call all constructor functions linked into the kernel. */
static void __init do_ctors(void)
{
#ifdef CONFIG_CONSTRUCTORS
ctor_fn_t *fn = (ctor_fn_t *) __ctors_start;
for (; fn < (ctor_fn_t *) __ctors_end; fn++)
(*fn)();
#endif
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Peter Oberparleiter | 40 | 90.91% | 1 | 50.00% |
H Hartley Sweeten | 4 | 9.09% | 1 | 50.00% |
Total | 44 | 100.00% | 2 | 100.00% |
bool initcall_debug;
core_param(initcall_debug, initcall_debug, bool, 0644);
#ifdef CONFIG_KALLSYMS
struct blacklist_entry {
struct list_head next;
char *buf;
};
static __initdata_or_module LIST_HEAD(blacklisted_initcalls);
static int __init initcall_blacklist(char *str)
{
char *str_entry;
struct blacklist_entry *entry;
/* str argument is a comma-separated list of functions */
do {
str_entry = strsep(&str, ",");
if (str_entry) {
pr_debug("blacklisting initcall %s\n", str_entry);
entry = alloc_bootmem(sizeof(*entry));
entry->buf = alloc_bootmem(strlen(str_entry) + 1);
strcpy(entry->buf, str_entry);
list_add(&entry->next, &blacklisted_initcalls);
}
} while (str_entry);
return 0;
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Prarit Bhargava | 100 | 100.00% | 1 | 100.00% |
Total | 100 | 100.00% | 1 | 100.00% |
static bool __init_or_module initcall_blacklisted(initcall_t fn)
{
struct blacklist_entry *entry;
char fn_name[KSYM_SYMBOL_LEN];
unsigned long addr;
if (list_empty(&blacklisted_initcalls))
return false;
addr = (unsigned long) dereference_function_descriptor(fn);
sprint_symbol_no_offset(fn_name, addr);
/*
* fn will be "function_name [module_name]" where [module_name] is not
* displayed for built-in init functions. Strip off the [module_name].
*/
strreplace(fn_name, ' ', '\0');
list_for_each_entry(entry, &blacklisted_initcalls, next) {
if (!strcmp(fn_name, entry->buf)) {
pr_debug("initcall %s blacklisted\n", fn_name);
return true;
}
}
return false;
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Prarit Bhargava | 67 | 66.34% | 2 | 40.00% |
Rasmus Villemoes | 30 | 29.70% | 2 | 40.00% |
Geliang Tang | 4 | 3.96% | 1 | 20.00% |
Total | 101 | 100.00% | 5 | 100.00% |
#else
static int __init initcall_blacklist(char *str)
{
pr_warn("initcall_blacklist requires CONFIG_KALLSYMS\n");
return 0;
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Prarit Bhargava | 19 | 100.00% | 1 | 100.00% |
Total | 19 | 100.00% | 1 | 100.00% |
static bool __init_or_module initcall_blacklisted(initcall_t fn)
{
return false;
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Prarit Bhargava | 13 | 100.00% | 1 | 100.00% |
Total | 13 | 100.00% | 1 | 100.00% |
#endif
__setup("initcall_blacklist=", initcall_blacklist);
static int __init_or_module do_one_initcall_debug(initcall_t fn)
{
ktime_t calltime, delta, rettime;
unsigned long long duration;
int ret;
printk(KERN_DEBUG "calling %pF @ %i\n", fn, task_pid_nr(current));
calltime = ktime_get();
ret = fn();
rettime = ktime_get();
delta = ktime_sub(rettime, calltime);
duration = (unsigned long long) ktime_to_ns(delta) >> 10;
printk(KERN_DEBUG "initcall %pF returned %d after %lld usecs\n",
fn, ret, duration);
return ret;
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Ingo Molnar | 26 | 28.57% | 1 | 5.88% |
Frédéric Weisbecker | 21 | 23.08% | 3 | 17.65% |
Américo Wang | 13 | 14.29% | 1 | 5.88% |
Andrew Morton | 9 | 9.89% | 4 | 23.53% |
Kevin Winchester | 6 | 6.59% | 2 | 11.76% |
Linus Torvalds (pre-git) | 5 | 5.49% | 1 | 5.88% |
Linus Torvalds | 4 | 4.40% | 1 | 5.88% |
Will Newton | 3 | 3.30% | 1 | 5.88% |
Arjan van de Ven | 3 | 3.30% | 2 | 11.76% |
Tim Bird | 1 | 1.10% | 1 | 5.88% |
Total | 91 | 100.00% | 17 | 100.00% |
int __init_or_module do_one_initcall(initcall_t fn)
{
int count = preempt_count();
int ret;
char msgbuf[64];
if (initcall_blacklisted(fn))
return -EPERM;
if (initcall_debug)
ret = do_one_initcall_debug(fn);
else
ret = fn();
msgbuf[0] = 0;
if (preempt_count() != count) {
sprintf(msgbuf, "preemption imbalance ");
preempt_count_set(count);
}
if (irqs_disabled()) {
strlcat(msgbuf, "disabled interrupts ", sizeof(msgbuf));
local_irq_enable();
}
WARN(msgbuf[0], "initcall %pF returned with %s\n", fn, msgbuf);
add_latent_entropy();
return ret;
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Kevin Winchester | 34 | 27.87% | 2 | 11.11% |
Cyrill V. Gorcunov | 28 | 22.95% | 2 | 11.11% |
Andrew Morton | 22 | 18.03% | 2 | 11.11% |
Prarit Bhargava | 11 | 9.02% | 1 | 5.56% |
Steven Rostedt | 10 | 8.20% | 3 | 16.67% |
Linus Torvalds (pre-git) | 4 | 3.28% | 1 | 5.56% |
Emese Revfy | 3 | 2.46% | 1 | 5.56% |
Peter Zijlstra | 3 | 2.46% | 1 | 5.56% |
Arjan van de Ven | 2 | 1.64% | 1 | 5.56% |
Linus Torvalds | 2 | 1.64% | 2 | 11.11% |
Ingo Molnar | 2 | 1.64% | 1 | 5.56% |
Frédéric Weisbecker | 1 | 0.82% | 1 | 5.56% |
Total | 122 | 100.00% | 18 | 100.00% |
extern initcall_t __initcall_start[];
extern initcall_t __initcall0_start[];
extern initcall_t __initcall1_start[];
extern initcall_t __initcall2_start[];
extern initcall_t __initcall3_start[];
extern initcall_t __initcall4_start[];
extern initcall_t __initcall5_start[];
extern initcall_t __initcall6_start[];
extern initcall_t __initcall7_start[];
extern initcall_t __initcall_end[];
static initcall_t *initcall_levels[] __initdata = {
__initcall0_start,
__initcall1_start,
__initcall2_start,
__initcall3_start,
__initcall4_start,
__initcall5_start,
__initcall6_start,
__initcall7_start,
__initcall_end,
};
/* Keep these in sync with initcalls in include/linux/init.h */
static char *initcall_level_names[] __initdata = {
"early",
"core",
"postcore",
"arch",
"subsys",
"fs",
"device",
"late",
};
static void __init do_initcall_level(int level)
{
initcall_t *fn;
strcpy(initcall_command_line, saved_command_line);
parse_args(initcall_level_names[level],
initcall_command_line, __start___param,
__stop___param - __start___param,
level, level,
NULL, &repair_env_string);
for (fn = initcall_levels[level]; fn < initcall_levels[level+1]; fn++)
do_one_initcall(*fn);
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Pawel Moll | 42 | 57.53% | 1 | 12.50% |
Linus Torvalds | 19 | 26.03% | 1 | 12.50% |
H Hartley Sweeten | 5 | 6.85% | 1 | 12.50% |
Luis R. Rodriguez | 2 | 2.74% | 1 | 12.50% |
Krzysztof Mazur | 2 | 2.74% | 1 | 12.50% |
Linus Torvalds (pre-git) | 1 | 1.37% | 1 | 12.50% |
Chris Metcalf | 1 | 1.37% | 1 | 12.50% |
Jim Cromie | 1 | 1.37% | 1 | 12.50% |
Total | 73 | 100.00% | 8 | 100.00% |
static void __init do_initcalls(void)
{
int level;
for (level = 0; level < ARRAY_SIZE(initcall_levels) - 1; level++)
do_initcall_level(level);
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Pawel Moll | 35 | 100.00% | 1 | 100.00% |
Total | 35 | 100.00% | 1 | 100.00% |
/*
* Ok, the machine is now initialized. None of the devices
* have been touched yet, but the CPU subsystem is up and
* running, and memory and process management works.
*
* Now we can finally start doing some real work..
*/
static void __init do_basic_setup(void)
{
cpuset_init_smp();
shmem_init();
driver_init();
init_irq_proc();
do_ctors();
usermodehelper_enable();
do_initcalls();
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Linus Torvalds (pre-git) | 8 | 26.67% | 3 | 25.00% |
Linus Torvalds | 5 | 16.67% | 2 | 16.67% |
Peter Oberparleiter | 3 | 10.00% | 1 | 8.33% |
Eric W. Biedermann | 3 | 10.00% | 1 | 8.33% |
Patrick Mochel | 3 | 10.00% | 1 | 8.33% |
Lai Jiangshan | 3 | 10.00% | 1 | 8.33% |
Kay Sievers | 2 | 6.67% | 1 | 8.33% |
Wang YanQing | 2 | 6.67% | 1 | 8.33% |
Hugh Dickins | 1 | 3.33% | 1 | 8.33% |
Total | 30 | 100.00% | 12 | 100.00% |
static void __init do_pre_smp_initcalls(void)
{
initcall_t *fn;
for (fn = __initcall_start; fn < __initcall0_start; fn++)
do_one_initcall(*fn);
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Eduard - Gabriel Munteanu | 26 | 81.25% | 2 | 50.00% |
H Hartley Sweeten | 5 | 15.62% | 1 | 25.00% |
Pawel Moll | 1 | 3.12% | 1 | 25.00% |
Total | 32 | 100.00% | 4 | 100.00% |
/*
* This function requests modules which should be loaded by default and is
* called twice right after initrd is mounted and right before init is
* exec'd. If such modules are on either initrd or rootfs, they will be
* loaded before control is passed to userland.
*/
void __init load_default_modules(void)
{
load_default_elevator_module();
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Tejun Heo | 11 | 100.00% | 1 | 100.00% |
Total | 11 | 100.00% | 1 | 100.00% |
static int run_init_process(const char *init_filename)
{
argv_init[0] = init_filename;
return do_execve(getname_kernel(init_filename),
(const char __user *const __user *)argv_init,
(const char __user *const __user *)envp_init);
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Andrew Morton | 23 | 46.94% | 1 | 20.00% |
Al Viro | 22 | 44.90% | 2 | 40.00% |
Linus Torvalds | 3 | 6.12% | 1 | 20.00% |
David Howells | 1 | 2.04% | 1 | 20.00% |
Total | 49 | 100.00% | 5 | 100.00% |
static int try_to_run_init_process(const char *init_filename)
{
int ret;
ret = run_init_process(init_filename);
if (ret && ret != -ENOENT) {
pr_err("Starting init: %s exists but couldn't execute it (error %d)\n",
init_filename, ret);
}
return ret;
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Michael Opdenacker | 44 | 100.00% | 1 | 100.00% |
Total | 44 | 100.00% | 1 | 100.00% |
static noinline void __init kernel_init_freeable(void);
#if defined(CONFIG_STRICT_KERNEL_RWX) || defined(CONFIG_STRICT_MODULE_RWX)
bool rodata_enabled __ro_after_init = true;
static int __init set_debug_rodata(char *str)
{
return strtobool(str, &rodata_enabled);
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Kees Cook | 20 | 100.00% | 1 | 100.00% |
Total | 20 | 100.00% | 1 | 100.00% |
__setup("rodata=", set_debug_rodata);
#endif
#ifdef CONFIG_STRICT_KERNEL_RWX
static void mark_readonly(void)
{
if (rodata_enabled) {
mark_rodata_ro();
rodata_test();
} else
pr_info("Kernel memory protection disabled.\n");
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Kees Cook | 21 | 80.77% | 1 | 50.00% |
Jinbum Park | 5 | 19.23% | 1 | 50.00% |
Total | 26 | 100.00% | 2 | 100.00% |
#else
static inline void mark_readonly(void)
{
pr_warn("This architecture does not have kernel memory protection.\n");
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Kees Cook | 14 | 100.00% | 1 | 100.00% |
Total | 14 | 100.00% | 1 | 100.00% |
#endif
static int __ref kernel_init(void *unused)
{
int ret;
kernel_init_freeable();
/* need to finish all async __init code before freeing the memory */
async_synchronize_full();
free_initmem();
mark_readonly();
system_state = SYSTEM_RUNNING;
numa_default_policy();
rcu_end_inkernel_boot();
if (ramdisk_execute_command) {
ret = run_init_process(ramdisk_execute_command);
if (!ret)
return 0;
pr_err("Failed to execute %s (error %d)\n",
ramdisk_execute_command, ret);
}
/*
* We try each of these until one succeeds.
*
* The Bourne shell can be used instead of init if we are
* trying to recover a really broken machine.
*/
if (execute_command) {
ret = run_init_process(execute_command);
if (!ret)
return 0;
panic("Requested init %s failed (error %d).",
execute_command, ret);
}
if (!try_to_run_init_process("/sbin/init") ||
!try_to_run_init_process("/etc/init") ||
!try_to_run_init_process("/bin/init") ||
!try_to_run_init_process("/bin/sh"))
return 0;
panic("No working init found. Try passing init= option to kernel. "
"See Linux Documentation/admin-guide/init.rst for guidance.");
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Linus Torvalds (pre-git) | 32 | 24.06% | 11 | 37.93% |
Al Viro | 28 | 21.05% | 2 | 6.90% |
Michael Opdenacker | 25 | 18.80% | 1 | 3.45% |
Olof Johansson | 15 | 11.28% | 1 | 3.45% |
Andrew Lutomirski | 9 | 6.77% | 1 | 3.45% |
Arjan van de Ven | 6 | 4.51% | 2 | 6.90% |
Andrew Morton | 4 | 3.01% | 3 | 10.34% |
Paul E. McKenney | 3 | 2.26% | 1 | 3.45% |
Andi Kleen | 3 | 2.26% | 1 | 3.45% |
Linus Torvalds | 2 | 1.50% | 1 | 3.45% |
Avery, Brian | 2 | 1.50% | 1 | 3.45% |
Kees Cook | 1 | 0.75% | 1 | 3.45% |
Rakib Mullick | 1 | 0.75% | 1 | 3.45% |
Vivek Goyal | 1 | 0.75% | 1 | 3.45% |
Mauro Carvalho Chehab | 1 | 0.75% | 1 | 3.45% |
Total | 133 | 100.00% | 29 | 100.00% |
static noinline void __init kernel_init_freeable(void)
{
/*
* Wait until kthreadd is all set-up.
*/
wait_for_completion(&kthreadd_done);
/* Now the scheduler is fully set up and can do blocking allocations */
gfp_allowed_mask = __GFP_BITS_MASK;
/*
* init can allocate pages on any node
*/
set_mems_allowed(node_states[N_MEMORY]);
/*
* init can run on any cpu.
*/
set_cpus_allowed_ptr(current, cpu_all_mask);
cad_pid = task_pid(current);
smp_prepare_cpus(setup_max_cpus);
workqueue_init();
init_mm_internals();
do_pre_smp_initcalls();
lockup_detector_init();
smp_init();
sched_init_smp();
page_alloc_init_late();
do_basic_setup();
/* Open the /dev/console on the rootfs, this should never fail */
if (sys_open((const char __user *) "/dev/console", O_RDWR, 0) < 0)
pr_err("Warning: unable to open an initial console.\n");
(void) sys_dup(0);
(void) sys_dup(0);
/*
* check if there is an early userspace init. If yes, let it do all
* the work
*/
if (!ramdisk_execute_command)
ramdisk_execute_command = "/init";
if (sys_access((const char __user *) ramdisk_execute_command, 0) != 0) {
ramdisk_execute_command = NULL;
prepare_namespace();
}
/*
* Ok, we have completed the initial bootup, and
* we're essentially up and running. Get rid of the
* initmem segments and start the user-mode stuff..
*
* rootfs is available now, try loading the public keys
* and default modules
*/
integrity_load_keys();
load_default_modules();
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Vivek Goyal | 72 | 45.28% | 1 | 5.26% |
Eric W. Biedermann | 40 | 25.16% | 1 | 5.26% |
Peter Zijlstra | 10 | 6.29% | 2 | 10.53% |
Miao Xie | 8 | 5.03% | 2 | 10.53% |
Tejun Heo | 6 | 3.77% | 2 | 10.53% |
Linus Torvalds | 5 | 3.14% | 1 | 5.26% |
Dmitry Kasatkin | 4 | 2.52% | 1 | 5.26% |
Michal Hocko | 3 | 1.89% | 1 | 5.26% |
Mel Gorman | 3 | 1.89% | 1 | 5.26% |
Al Viro | 2 | 1.26% | 1 | 5.26% |
Andrew Morton | 1 | 0.63% | 1 | 5.26% |
Vineet Gupta | 1 | 0.63% | 1 | 5.26% |
Andi Kleen | 1 | 0.63% | 1 | 5.26% |
Mike Travis | 1 | 0.63% | 1 | 5.26% |
Rusty Russell | 1 | 0.63% | 1 | 5.26% |
Lai Jiangshan | 1 | 0.63% | 1 | 5.26% |
Total | 159 | 100.00% | 19 | 100.00% |
Overall Contributors
Person | Tokens | Prop | Commits | CommitProp |
Linus Torvalds (pre-git) | 396 | 11.50% | 67 | 19.09% |
Rusty Russell | 365 | 10.60% | 16 | 4.56% |
Andrew Morton | 347 | 10.08% | 31 | 8.83% |
Prarit Bhargava | 247 | 7.17% | 2 | 0.57% |
Pawel Moll | 170 | 4.94% | 1 | 0.28% |
Linus Torvalds | 123 | 3.57% | 17 | 4.84% |
Vivek Goyal | 98 | 2.85% | 2 | 0.57% |
Ingo Molnar | 79 | 2.29% | 14 | 3.99% |
Kees Cook | 72 | 2.09% | 1 | 0.28% |
Alon Bar-Lev | 70 | 2.03% | 1 | 0.28% |
Olof Johansson | 70 | 2.03% | 1 | 0.28% |
Michael Opdenacker | 69 | 2.00% | 1 | 0.28% |
Al Viro | 69 | 2.00% | 4 | 1.14% |
Eric W. Biedermann | 68 | 1.98% | 3 | 0.85% |
Tejun Heo | 47 | 1.37% | 6 | 1.71% |
Pekka J Enberg | 46 | 1.34% | 4 | 1.14% |
Peter Oberparleiter | 44 | 1.28% | 1 | 0.28% |
Kevin Winchester | 40 | 1.16% | 2 | 0.57% |
Thomas Gleixner | 36 | 1.05% | 8 | 2.28% |
Yinghai Lu | 34 | 0.99% | 3 | 0.85% |
Peter Zijlstra | 32 | 0.93% | 6 | 1.71% |
Rasmus Villemoes | 30 | 0.87% | 2 | 0.57% |
Chris Metcalf | 29 | 0.84% | 1 | 0.28% |
Steven Rostedt | 29 | 0.84% | 5 | 1.42% |
Luis R. Rodriguez | 28 | 0.81% | 1 | 0.28% |
Frédéric Weisbecker | 28 | 0.81% | 4 | 1.14% |
Cyrill V. Gorcunov | 28 | 0.81% | 2 | 0.57% |
Eduard - Gabriel Munteanu | 27 | 0.78% | 2 | 0.57% |
matthias.kunze@gmx-topmail.de | 26 | 0.76% | 1 | 0.28% |
David Howells | 25 | 0.73% | 5 | 1.42% |
Magnus Damm | 24 | 0.70% | 1 | 0.28% |
Américo Wang | 21 | 0.61% | 2 | 0.57% |
Geert Uytterhoeven | 20 | 0.58% | 2 | 0.57% |
Jim Cromie | 20 | 0.58% | 2 | 0.57% |
Krzysztof Mazur | 19 | 0.55% | 1 | 0.28% |
Dmitry Torokhov | 19 | 0.55% | 1 | 0.28% |
William Lee Irwin III | 18 | 0.52% | 1 | 0.28% |
Alexander Sverdlin | 17 | 0.49% | 1 | 0.28% |
Andi Kleen | 17 | 0.49% | 4 | 1.14% |
AKASHI Takahiro | 17 | 0.49% | 1 | 0.28% |
Arjan van de Ven | 17 | 0.49% | 4 | 1.14% |
Mike Travis | 16 | 0.46% | 3 | 0.85% |
Heiko Carstens | 15 | 0.44% | 1 | 0.28% |
H Hartley Sweeten | 14 | 0.41% | 1 | 0.28% |
Benjamin Herrenschmidt | 14 | 0.41% | 3 | 0.85% |
Len Brown | 14 | 0.41% | 2 | 0.57% |
Paul E. McKenney | 13 | 0.38% | 4 | 1.14% |
Adrian Bunk | 12 | 0.35% | 4 | 1.14% |
Shailabh Nagar | 12 | 0.35% | 2 | 0.57% |
Greg Kroah-Hartman | 12 | 0.35% | 2 | 0.57% |
Jan Beulich | 10 | 0.29% | 2 | 0.57% |
Hannes Frederic Sowa | 10 | 0.29% | 1 | 0.28% |
Santosh Shilimkar | 9 | 0.26% | 1 | 0.28% |
H. Peter Anvin | 9 | 0.26% | 2 | 0.57% |
John Stultz | 9 | 0.26% | 2 | 0.57% |
Andrew Lutomirski | 9 | 0.26% | 1 | 0.28% |
Josh Triplett | 9 | 0.26% | 2 | 0.57% |
Ard van Breemen | 9 | 0.26% | 1 | 0.28% |
Paul Menage | 8 | 0.23% | 1 | 0.28% |
Arnaldo Carvalho de Melo | 8 | 0.23% | 1 | 0.28% |
Miao Xie | 8 | 0.23% | 2 | 0.57% |
Jinbum Park | 8 | 0.23% | 1 | 0.28% |
Catalin Marinas | 7 | 0.20% | 2 | 0.57% |
JoonSoo Kim | 7 | 0.20% | 1 | 0.28% |
Dmitry Kasatkin | 7 | 0.20% | 1 | 0.28% |
Matt Fleming | 6 | 0.17% | 1 | 0.28% |
Rafael J. Wysocki | 6 | 0.17% | 2 | 0.57% |
Feng Tang | 6 | 0.17% | 1 | 0.28% |
Nicholas Piggin | 6 | 0.17% | 3 | 0.85% |
Fabian Frederick | 6 | 0.17% | 2 | 0.57% |
Toshi Kani | 6 | 0.17% | 1 | 0.28% |
Yaowei Bai | 6 | 0.17% | 1 | 0.28% |
Dipankar Sarma | 6 | 0.17% | 1 | 0.28% |
Stephen Boyd | 6 | 0.17% | 1 | 0.28% |
Jason Wessel | 6 | 0.17% | 2 | 0.57% |
Aaron Tomlin | 6 | 0.17% | 1 | 0.28% |
Paul Jackson | 5 | 0.15% | 1 | 0.28% |
John Levon | 5 | 0.15% | 1 | 0.28% |
Kay Sievers | 5 | 0.15% | 1 | 0.28% |
Mel Gorman | 4 | 0.12% | 2 | 0.57% |
Lai Jiangshan | 4 | 0.12% | 2 | 0.57% |
Stas Sergeev | 4 | 0.12% | 1 | 0.28% |
Daniel R Thompson | 4 | 0.12% | 1 | 0.28% |
Pavel Emelyanov | 4 | 0.12% | 1 | 0.28% |
Tetsuo Handa | 4 | 0.12% | 1 | 0.28% |
Geliang Tang | 4 | 0.12% | 1 | 0.28% |
Theodore Y. Ts'o | 3 | 0.09% | 1 | 0.28% |
Alex Riesen | 3 | 0.09% | 2 | 0.57% |
Vegard Nossum | 3 | 0.09% | 1 | 0.28% |
Michal Hocko | 3 | 0.09% | 1 | 0.28% |
Russell King | 3 | 0.09% | 1 | 0.28% |
Randy Dunlap | 3 | 0.09% | 1 | 0.28% |
Akinobu Mita | 3 | 0.09% | 1 | 0.28% |
Haicheng Li | 3 | 0.09% | 1 | 0.28% |
Stéphane Eranian | 3 | 0.09% | 1 | 0.28% |
Emese Revfy | 3 | 0.09% | 1 | 0.28% |
Christoph Hellwig | 3 | 0.09% | 1 | 0.28% |
Patrick Mochel | 3 | 0.09% | 1 | 0.28% |
Will Newton | 3 | 0.09% | 1 | 0.28% |
Yang Shi | 3 | 0.09% | 1 | 0.28% |
Takao Indoh | 3 | 0.09% | 1 | 0.28% |
Sukadev Bhattiprolu | 3 | 0.09% | 1 | 0.28% |
Jens Axboe | 3 | 0.09% | 1 | 0.28% |
Lei Ming | 3 | 0.09% | 1 | 0.28% |
Christoph Lameter | 3 | 0.09% | 1 | 0.28% |
Paul Gortmaker | 3 | 0.09% | 1 | 0.28% |
Jeremy Fitzhardinge | 3 | 0.09% | 1 | 0.28% |
Laura Abbott | 3 | 0.09% | 1 | 0.28% |
Hannes Reinecke | 3 | 0.09% | 1 | 0.28% |
Avery, Brian | 2 | 0.06% | 1 | 0.28% |
Li Zefan | 2 | 0.06% | 1 | 0.28% |
Wang YanQing | 2 | 0.06% | 1 | 0.28% |
Chris Wright | 2 | 0.06% | 2 | 0.57% |
Adam Kropelin | 2 | 0.06% | 1 | 0.28% |
Jiang Liu | 2 | 0.06% | 1 | 0.28% |
Michal Schmidt | 2 | 0.06% | 1 | 0.28% |
Vineet Gupta | 2 | 0.06% | 1 | 0.28% |
Heinrich Schuchardt | 2 | 0.06% | 1 | 0.28% |
Paolo 'Blaisorblade' Giarrusso | 2 | 0.06% | 1 | 0.28% |
Sam Ravnborg | 2 | 0.06% | 1 | 0.28% |
Petr Mladek | 2 | 0.06% | 1 | 0.28% |
Rakib Mullick | 2 | 0.06% | 1 | 0.28% |
Borislav Petkov | 2 | 0.06% | 1 | 0.28% |
Kirill A. Shutemov | 1 | 0.03% | 1 | 0.28% |
Matthew Wilcox | 1 | 0.03% | 1 | 0.28% |
Sergey Senozhatsky | 1 | 0.03% | 1 | 0.28% |
Mauro Carvalho Chehab | 1 | 0.03% | 1 | 0.28% |
Hugh Dickins | 1 | 0.03% | 1 | 0.28% |
Tim Bird | 1 | 0.03% | 1 | 0.28% |
Frans Klaver | 1 | 0.03% | 1 | 0.28% |
Namhyung Kim | | 0.00% | 0 | 0.00% |
Total | 3443 | 100.00% | 351 | 100.00% |
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.