![]() System : Linux absol.cf 5.4.0-198-generic #218-Ubuntu SMP Fri Sep 27 20:18:53 UTC 2024 x86_64 User : www-data ( 33) PHP Version : 7.4.33 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare, Directory : /usr/src/linux-headers-5.4.0-193/arch/s390/include/asm/ |
Upload File : |
/* SPDX-License-Identifier: GPL-2.0 */ /* * NUMA support for s390 * * Declare the NUMA core code structures and functions. * * Copyright IBM Corp. 2015 */ #ifndef _ASM_S390_NUMA_H #define _ASM_S390_NUMA_H #ifdef CONFIG_NUMA #include <linux/numa.h> #include <linux/cpumask.h> void numa_setup(void); int numa_pfn_to_nid(unsigned long pfn); void numa_update_cpu_topology(void); extern cpumask_t node_to_cpumask_map[MAX_NUMNODES]; extern int numa_debug_enabled; #else static inline void numa_setup(void) { } static inline void numa_update_cpu_topology(void) { } static inline int numa_pfn_to_nid(unsigned long pfn) { return 0; } #endif /* CONFIG_NUMA */ #endif /* _ASM_S390_NUMA_H */