numa.h 386 B

12345678910111213141516171819202122232425
  1. /* SPDX-License-Identifier: GPL-2.0 */
  2. /*
  3. * NUMA support for s390
  4. *
  5. * Declare the NUMA core code structures and functions.
  6. *
  7. * Copyright IBM Corp. 2015
  8. */
  9. #ifndef _ASM_S390_NUMA_H
  10. #define _ASM_S390_NUMA_H
  11. #ifdef CONFIG_NUMA
  12. #include <linux/numa.h>
  13. void numa_setup(void);
  14. #else
  15. static inline void numa_setup(void) { }
  16. #endif /* CONFIG_NUMA */
  17. #endif /* _ASM_S390_NUMA_H */