cregit-Linux how code gets into the kernel

Release 4.10 arch/s390/include/asm/smp.h

/*
 *    Copyright IBM Corp. 1999, 2012
 *    Author(s): Denis Joseph Barrow,
 *               Martin Schwidefsky <schwidefsky@de.ibm.com>,
 *               Heiko Carstens <heiko.carstens@de.ibm.com>,
 */
#ifndef __ASM_SMP_H

#define __ASM_SMP_H

#include <asm/sigp.h>

#ifdef CONFIG_SMP

#include <asm/lowcore.h>


#define raw_smp_processor_id()	(S390_lowcore.cpu_nr)

extern struct mutex smp_cpu_state_mutex;
extern unsigned int smp_cpu_mt_shift;
extern unsigned int smp_cpu_mtid;
extern __vector128 __initdata boot_cpu_vector_save_area[__NUM_VXRS];

extern int __cpu_up(unsigned int cpu, struct task_struct *tidle);

extern void arch_send_call_function_single_ipi(int cpu);
extern void arch_send_call_function_ipi_mask(const struct cpumask *mask);

extern void smp_call_online_cpu(void (*func)(void *), void *);
extern void smp_call_ipl_cpu(void (*func)(void *), void *);

extern int smp_find_processor_id(u16 address);
extern int smp_store_status(int cpu);
extern void smp_save_dump_cpus(void);
extern int smp_vcpu_scheduled(int cpu);
extern void smp_yield_cpu(int cpu);
extern void smp_cpu_set_polarization(int cpu, int val);
extern int smp_cpu_get_polarization(int cpu);
extern void smp_fill_possible_mask(void);
extern void smp_detect_cpus(void);

#else /* CONFIG_SMP */


#define smp_cpu_mtid	0


static inline void smp_call_ipl_cpu(void (*func)(void *), void *data) { func(data); }

Contributors

PersonTokensPropCommitsCommitProp
martin schwidefskymartin schwidefsky1869.23%150.00%
gerald schaefergerald schaefer830.77%150.00%
Total26100.00%2100.00%


static inline void smp_call_online_cpu(void (*func)(void *), void *data) { func(data); }

Contributors

PersonTokensPropCommitsCommitProp
heiko carstensheiko carstens2596.15%150.00%
martin schwidefskymartin schwidefsky13.85%150.00%
Total26100.00%2100.00%


static inline int smp_find_processor_id(u16 address) { return 0; }

Contributors

PersonTokensPropCommitsCommitProp
martin schwidefskymartin schwidefsky1292.31%150.00%
heiko carstensheiko carstens17.69%150.00%
Total13100.00%2100.00%


static inline int smp_store_status(int cpu) { return 0; }

Contributors

PersonTokensPropCommitsCommitProp
heiko carstensheiko carstens13100.00%1100.00%
Total13100.00%1100.00%


static inline int smp_vcpu_scheduled(int cpu) { return 1; }

Contributors

PersonTokensPropCommitsCommitProp
martin schwidefskymartin schwidefsky13100.00%1100.00%
Total13100.00%1100.00%


static inline void smp_yield_cpu(int cpu) { }

Contributors

PersonTokensPropCommitsCommitProp
martin schwidefskymartin schwidefsky666.67%150.00%
michael holzheumichael holzheu333.33%150.00%
Total9100.00%2100.00%


static inline void smp_fill_possible_mask(void) { }

Contributors

PersonTokensPropCommitsCommitProp
michael holzheumichael holzheu450.00%133.33%
martin schwidefskymartin schwidefsky337.50%133.33%
heiko carstensheiko carstens112.50%133.33%
Total8100.00%3100.00%


static inline void smp_detect_cpus(void) { }

Contributors

PersonTokensPropCommitsCommitProp
heiko carstensheiko carstens8100.00%1100.00%
Total8100.00%1100.00%

#endif /* CONFIG_SMP */
static inline void smp_stop_cpu(void) { u16 pcpu = stap(); for (;;) { __pcpu_sigp(pcpu, SIGP_STOP, 0, NULL); cpu_relax(); } }

Contributors

PersonTokensPropCommitsCommitProp
heiko carstensheiko carstens36100.00%2100.00%
Total36100.00%2100.00%

/* Return thread 0 CPU number as base CPU */
static inline int smp_get_base_cpu(int cpu) { return cpu - (cpu % (smp_cpu_mtid + 1)); }

Contributors

PersonTokensPropCommitsCommitProp
heiko carstensheiko carstens23100.00%1100.00%
Total23100.00%1100.00%

#ifdef CONFIG_HOTPLUG_CPU extern int smp_rescan_cpus(void); extern void __noreturn cpu_die(void); extern void __cpu_die(unsigned int cpu); extern int __cpu_disable(void); #else
static inline int smp_rescan_cpus(void) { return 0; }

Contributors

PersonTokensPropCommitsCommitProp
heiko carstensheiko carstens12100.00%1100.00%
Total12100.00%1100.00%


static inline void cpu_die(void) { }

Contributors

PersonTokensPropCommitsCommitProp
heiko carstensheiko carstens8100.00%1100.00%
Total8100.00%1100.00%

#endif #endif /* __ASM_SMP_H */

Overall Contributors

PersonTokensPropCommitsCommitProp
heiko carstensheiko carstens23253.70%1344.83%
martin schwidefskymartin schwidefsky14232.87%517.24%
michael holzheumichael holzheu173.94%310.34%
pre-gitpre-git112.55%13.45%
gerald schaefergerald schaefer81.85%13.45%
carsten ottecarsten otte71.62%13.45%
rusty russellrusty russell51.16%13.45%
thomas gleixnerthomas gleixner51.16%13.45%
linus torvaldslinus torvalds30.69%13.45%
david howellsdavid howells10.23%13.45%
ingo molnaringo molnar10.23%13.45%
Total432100.00%29100.00%
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.