numa_32.h 320 B

12345678910111213141516
  1. #ifndef _ASM_X86_32_NUMA_H
  2. #define _ASM_X86_32_NUMA_H 1
  3. extern int pxm_to_nid(int pxm);
  4. extern void numa_remove_cpu(int cpu);
  5. #ifdef CONFIG_NUMA
  6. extern void __init remap_numa_kva(void);
  7. extern void set_highmem_pages_init(void);
  8. #else
  9. static inline void remap_numa_kva(void)
  10. {
  11. }
  12. #endif
  13. #endif /* _ASM_X86_32_NUMA_H */