Release 4.15 kernel/smpboot.h
/* SPDX-License-Identifier: GPL-2.0 */
#ifndef SMPBOOT_H
#define SMPBOOT_H
struct task_struct;
#ifdef CONFIG_GENERIC_SMP_IDLE_THREAD
struct task_struct *idle_thread_get(unsigned int cpu);
void idle_thread_set_boot_cpu(void);
void idle_threads_init(void);
#else
static inline struct task_struct *idle_thread_get(unsigned int cpu) { return NULL; }
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Thomas Gleixner | 16 | 100.00% | 1 | 100.00% |
Total | 16 | 100.00% | 1 | 100.00% |
static inline void idle_thread_set_boot_cpu(void) { }
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Thomas Gleixner | 8 | 100.00% | 1 | 100.00% |
Total | 8 | 100.00% | 1 | 100.00% |
static inline void idle_threads_init(void) { }
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Suresh B. Siddha | 7 | 87.50% | 1 | 50.00% |
Thomas Gleixner | 1 | 12.50% | 1 | 50.00% |
Total | 8 | 100.00% | 2 | 100.00% |
#endif
int smpboot_create_threads(unsigned int cpu);
int smpboot_park_threads(unsigned int cpu);
int smpboot_unpark_threads(unsigned int cpu);
void __init cpuhp_threads_init(void);
#endif
Overall Contributors
Person | Tokens | Prop | Commits | CommitProp |
Thomas Gleixner | 90 | 86.54% | 6 | 75.00% |
Suresh B. Siddha | 13 | 12.50% | 1 | 12.50% |
Greg Kroah-Hartman | 1 | 0.96% | 1 | 12.50% |
Total | 104 | 100.00% | 8 | 100.00% |
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.