cregit-Linux how code gets into the kernel

Release 4.10 arch/x86/xen/smp.h

Directory: arch/x86/xen
#ifndef _XEN_SMP_H

#ifdef CONFIG_SMP
extern void xen_send_IPI_mask(const struct cpumask *mask,
			      int vector);
extern void xen_send_IPI_mask_allbutself(const struct cpumask *mask,
				int vector);
extern void xen_send_IPI_allbutself(int vector);
extern void xen_send_IPI_all(int vector);
extern void xen_send_IPI_self(int vector);

extern int xen_smp_intr_init(unsigned int cpu);
extern void xen_smp_intr_free(unsigned int cpu);

#else /* CONFIG_SMP */


static inline int xen_smp_intr_init(unsigned int cpu) { return 0; }

Contributors

PersonTokensPropCommitsCommitProp
boris ostrovskyboris ostrovsky14100.00%1100.00%
Total14100.00%1100.00%


static inline void xen_smp_intr_free(unsigned int cpu) {}

Contributors

PersonTokensPropCommitsCommitProp
boris ostrovskyboris ostrovsky10100.00%1100.00%
Total10100.00%1100.00%

#endif /* CONFIG_SMP */ #ifdef CONFIG_XEN_PVH extern void xen_pvh_early_cpu_init(int cpu, bool entry); #else
static inline void xen_pvh_early_cpu_init(int cpu, bool entry) { }

Contributors

PersonTokensPropCommitsCommitProp
mukesh rathormukesh rathor12100.00%1100.00%
Total12100.00%1100.00%

#endif #endif

Overall Contributors

PersonTokensPropCommitsCommitProp
ben guthroben guthro5741.30%133.33%
boris ostrovskyboris ostrovsky5136.96%133.33%
mukesh rathormukesh rathor3021.74%133.33%
Total138100.00%3100.00%
Directory: arch/x86/xen
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.