Back to home page

OSCL-LXR

 
 

    


0001 /* SPDX-License-Identifier: GPL-2.0 */
0002 /*
0003  * NUMA support for s390
0004  *
0005  * Declare the NUMA core code structures and functions.
0006  *
0007  * Copyright IBM Corp. 2015
0008  */
0009 
0010 #ifndef _ASM_S390_NUMA_H
0011 #define _ASM_S390_NUMA_H
0012 
0013 #ifdef CONFIG_NUMA
0014 
0015 #include <linux/numa.h>
0016 
0017 void numa_setup(void);
0018 
0019 #else
0020 
0021 static inline void numa_setup(void) { }
0022 
0023 #endif /* CONFIG_NUMA */
0024 
0025 #endif /* _ASM_S390_NUMA_H */