Blame view

kernel/linux-rt-4.4.41/arch/x86/xen/smp.h 488 Bytes
5113f6f70   김현기   kernel add
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
  #ifndef _XEN_SMP_H
  
  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);
  
  #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)
  {
  }
  #endif
  
  #endif