~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

TOMOYO Linux Cross Reference
Linux/include/linux/numa.h

Version: ~ [ linux-6.11.5 ] ~ [ linux-6.10.14 ] ~ [ linux-6.9.12 ] ~ [ linux-6.8.12 ] ~ [ linux-6.7.12 ] ~ [ linux-6.6.58 ] ~ [ linux-6.5.13 ] ~ [ linux-6.4.16 ] ~ [ linux-6.3.13 ] ~ [ linux-6.2.16 ] ~ [ linux-6.1.114 ] ~ [ linux-6.0.19 ] ~ [ linux-5.19.17 ] ~ [ linux-5.18.19 ] ~ [ linux-5.17.15 ] ~ [ linux-5.16.20 ] ~ [ linux-5.15.169 ] ~ [ linux-5.14.21 ] ~ [ linux-5.13.19 ] ~ [ linux-5.12.19 ] ~ [ linux-5.11.22 ] ~ [ linux-5.10.228 ] ~ [ linux-5.9.16 ] ~ [ linux-5.8.18 ] ~ [ linux-5.7.19 ] ~ [ linux-5.6.19 ] ~ [ linux-5.5.19 ] ~ [ linux-5.4.284 ] ~ [ linux-5.3.18 ] ~ [ linux-5.2.21 ] ~ [ linux-5.1.21 ] ~ [ linux-5.0.21 ] ~ [ linux-4.20.17 ] ~ [ linux-4.19.322 ] ~ [ linux-4.18.20 ] ~ [ linux-4.17.19 ] ~ [ linux-4.16.18 ] ~ [ linux-4.15.18 ] ~ [ linux-4.14.336 ] ~ [ linux-4.13.16 ] ~ [ linux-4.12.14 ] ~ [ linux-4.11.12 ] ~ [ linux-4.10.17 ] ~ [ linux-4.9.337 ] ~ [ linux-4.4.302 ] ~ [ linux-3.10.108 ] ~ [ linux-2.6.32.71 ] ~ [ linux-2.6.0 ] ~ [ linux-2.4.37.11 ] ~ [ unix-v6-master ] ~ [ ccs-tools-1.8.9 ] ~ [ policy-sample ] ~
Architecture: ~ [ i386 ] ~ [ alpha ] ~ [ m68k ] ~ [ mips ] ~ [ ppc ] ~ [ sparc ] ~ [ sparc64 ] ~

  1 /* SPDX-License-Identifier: GPL-2.0 */
  2 #ifndef _LINUX_NUMA_H
  3 #define _LINUX_NUMA_H
  4 #include <linux/init.h>
  5 #include <linux/types.h>
  6 
  7 #ifdef CONFIG_NODES_SHIFT
  8 #define NODES_SHIFT     CONFIG_NODES_SHIFT
  9 #else
 10 #define NODES_SHIFT     0
 11 #endif
 12 
 13 #define MAX_NUMNODES    (1 << NODES_SHIFT)
 14 
 15 #define NUMA_NO_NODE    (-1)
 16 #define NUMA_NO_MEMBLK  (-1)
 17 
 18 static inline bool numa_valid_node(int nid)
 19 {
 20         return nid >= 0 && nid < MAX_NUMNODES;
 21 }
 22 
 23 /* optionally keep NUMA memory info available post init */
 24 #ifdef CONFIG_NUMA_KEEP_MEMINFO
 25 #define __initdata_or_meminfo
 26 #else
 27 #define __initdata_or_meminfo __initdata
 28 #endif
 29 
 30 #ifdef CONFIG_NUMA
 31 #include <asm/sparsemem.h>
 32 
 33 /* Generic implementation available */
 34 int numa_nearest_node(int node, unsigned int state);
 35 
 36 #ifndef memory_add_physaddr_to_nid
 37 int memory_add_physaddr_to_nid(u64 start);
 38 #endif
 39 
 40 #ifndef phys_to_target_node
 41 int phys_to_target_node(u64 start);
 42 #endif
 43 
 44 int numa_fill_memblks(u64 start, u64 end);
 45 
 46 #else /* !CONFIG_NUMA */
 47 static inline int numa_nearest_node(int node, unsigned int state)
 48 {
 49         return NUMA_NO_NODE;
 50 }
 51 
 52 static inline int memory_add_physaddr_to_nid(u64 start)
 53 {
 54         return 0;
 55 }
 56 static inline int phys_to_target_node(u64 start)
 57 {
 58         return 0;
 59 }
 60 #endif
 61 
 62 #define numa_map_to_online_node(node) numa_nearest_node(node, N_ONLINE)
 63 
 64 #ifdef CONFIG_HAVE_ARCH_NODE_DEV_GROUP
 65 extern const struct attribute_group arch_node_dev_group;
 66 #endif
 67 
 68 #endif /* _LINUX_NUMA_H */
 69 

~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

kernel.org | git.kernel.org | LWN.net | Project Home | SVN repository | Mail admin

Linux® is a registered trademark of Linus Torvalds in the United States and other countries.
TOMOYO® is a registered trademark of NTT DATA CORPORATION.

sflogo.php