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

TOMOYO Linux Cross Reference
Linux/Documentation/admin-guide/cputopology.rst

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 ] ~

Diff markup

Differences between /Documentation/admin-guide/cputopology.rst (Version linux-6.11.5) and /Documentation/admin-guide/cputopology.rst (Version linux-6.6.58)


  1 ===========================================         1 ===========================================
  2 How CPU topology info is exported via sysfs         2 How CPU topology info is exported via sysfs
  3 ===========================================         3 ===========================================
  4                                                     4 
  5 CPU topology info is exported via sysfs. Items      5 CPU topology info is exported via sysfs. Items (attributes) are similar
  6 to /proc/cpuinfo output of some architectures.      6 to /proc/cpuinfo output of some architectures. They reside in
  7 /sys/devices/system/cpu/cpuX/topology/. Please      7 /sys/devices/system/cpu/cpuX/topology/. Please refer to the ABI file:
  8 Documentation/ABI/stable/sysfs-devices-system-      8 Documentation/ABI/stable/sysfs-devices-system-cpu.
  9                                                     9 
 10 Architecture-neutral, drivers/base/topology.c,     10 Architecture-neutral, drivers/base/topology.c, exports these attributes.
 11 However the die, cluster, book, and drawer hie     11 However the die, cluster, book, and drawer hierarchy related sysfs files will
 12 only be created if an architecture provides th     12 only be created if an architecture provides the related macros as described
 13 below.                                             13 below.
 14                                                    14 
 15 For an architecture to support this feature, i     15 For an architecture to support this feature, it must define some of
 16 these macros in include/asm-XXX/topology.h::       16 these macros in include/asm-XXX/topology.h::
 17                                                    17 
 18         #define topology_physical_package_id(c     18         #define topology_physical_package_id(cpu)
 19         #define topology_die_id(cpu)               19         #define topology_die_id(cpu)
 20         #define topology_cluster_id(cpu)           20         #define topology_cluster_id(cpu)
 21         #define topology_core_id(cpu)              21         #define topology_core_id(cpu)
 22         #define topology_book_id(cpu)              22         #define topology_book_id(cpu)
 23         #define topology_drawer_id(cpu)            23         #define topology_drawer_id(cpu)
 24         #define topology_sibling_cpumask(cpu)      24         #define topology_sibling_cpumask(cpu)
 25         #define topology_core_cpumask(cpu)         25         #define topology_core_cpumask(cpu)
 26         #define topology_cluster_cpumask(cpu)      26         #define topology_cluster_cpumask(cpu)
 27         #define topology_die_cpumask(cpu)          27         #define topology_die_cpumask(cpu)
 28         #define topology_book_cpumask(cpu)         28         #define topology_book_cpumask(cpu)
 29         #define topology_drawer_cpumask(cpu)       29         #define topology_drawer_cpumask(cpu)
 30                                                    30 
 31 The type of ``**_id macros`` is int.               31 The type of ``**_id macros`` is int.
 32 The type of ``**_cpumask macros`` is ``(const)     32 The type of ``**_cpumask macros`` is ``(const) struct cpumask *``. The latter
 33 correspond with appropriate ``**_siblings`` sy     33 correspond with appropriate ``**_siblings`` sysfs attributes (except for
 34 topology_sibling_cpumask() which corresponds w     34 topology_sibling_cpumask() which corresponds with thread_siblings).
 35                                                    35 
 36 To be consistent on all architectures, include     36 To be consistent on all architectures, include/linux/topology.h
 37 provides default definitions for any of the ab     37 provides default definitions for any of the above macros that are
 38 not defined by include/asm-XXX/topology.h:         38 not defined by include/asm-XXX/topology.h:
 39                                                    39 
 40 1) topology_physical_package_id: -1                40 1) topology_physical_package_id: -1
 41 2) topology_die_id: -1                             41 2) topology_die_id: -1
 42 3) topology_cluster_id: -1                         42 3) topology_cluster_id: -1
 43 4) topology_core_id: 0                             43 4) topology_core_id: 0
 44 5) topology_book_id: -1                            44 5) topology_book_id: -1
 45 6) topology_drawer_id: -1                          45 6) topology_drawer_id: -1
 46 7) topology_sibling_cpumask: just the given CP     46 7) topology_sibling_cpumask: just the given CPU
 47 8) topology_core_cpumask: just the given CPU       47 8) topology_core_cpumask: just the given CPU
 48 9) topology_cluster_cpumask: just the given CP     48 9) topology_cluster_cpumask: just the given CPU
 49 10) topology_die_cpumask: just the given CPU       49 10) topology_die_cpumask: just the given CPU
 50 11) topology_book_cpumask:  just the given CPU     50 11) topology_book_cpumask:  just the given CPU
 51 12) topology_drawer_cpumask: just the given CP     51 12) topology_drawer_cpumask: just the given CPU
 52                                                    52 
 53 Additionally, CPU topology information is prov     53 Additionally, CPU topology information is provided under
 54 /sys/devices/system/cpu and includes these fil     54 /sys/devices/system/cpu and includes these files.  The internal
 55 source for the output is in brackets ("[]").       55 source for the output is in brackets ("[]").
 56                                                    56 
 57     =========== ==============================     57     =========== ==========================================================
 58     kernel_max: the maximum CPU index allowed      58     kernel_max: the maximum CPU index allowed by the kernel configuration.
 59                 [NR_CPUS-1]                        59                 [NR_CPUS-1]
 60                                                    60 
 61     offline:    CPUs that are not online becau     61     offline:    CPUs that are not online because they have been
 62                 HOTPLUGGED off or exceed the l     62                 HOTPLUGGED off or exceed the limit of CPUs allowed by the
 63                 kernel configuration (kernel_m     63                 kernel configuration (kernel_max above).
 64                 [~cpu_online_mask + cpus >= NR     64                 [~cpu_online_mask + cpus >= NR_CPUS]
 65                                                    65 
 66     online:     CPUs that are online and being     66     online:     CPUs that are online and being scheduled [cpu_online_mask]
 67                                                    67 
 68     possible:   CPUs that have been allocated      68     possible:   CPUs that have been allocated resources and can be
 69                 brought online if they are pre     69                 brought online if they are present. [cpu_possible_mask]
 70                                                    70 
 71     present:    CPUs that have been identified     71     present:    CPUs that have been identified as being present in the
 72                 system. [cpu_present_mask]         72                 system. [cpu_present_mask]
 73     =========== ==============================     73     =========== ==========================================================
 74                                                    74 
 75 The format for the above output is compatible      75 The format for the above output is compatible with cpulist_parse()
 76 [see <linux/cpumask.h>].  Some examples follow     76 [see <linux/cpumask.h>].  Some examples follow.
 77                                                    77 
 78 In this example, there are 64 CPUs in the syst     78 In this example, there are 64 CPUs in the system but cpus 32-63 exceed
 79 the kernel max which is limited to 0..31 by th     79 the kernel max which is limited to 0..31 by the NR_CPUS config option
 80 being 32.  Note also that CPUs 2 and 4-31 are      80 being 32.  Note also that CPUs 2 and 4-31 are not online but could be
 81 brought online as they are both present and po     81 brought online as they are both present and possible::
 82                                                    82 
 83      kernel_max: 31                                83      kernel_max: 31
 84         offline: 2,4-31,32-63                      84         offline: 2,4-31,32-63
 85          online: 0-1,3                             85          online: 0-1,3
 86        possible: 0-31                              86        possible: 0-31
 87         present: 0-31                              87         present: 0-31
 88                                                    88 
 89 In this example, the NR_CPUS config option is      89 In this example, the NR_CPUS config option is 128, but the kernel was
 90 started with possible_cpus=144.  There are 4 C     90 started with possible_cpus=144.  There are 4 CPUs in the system and cpu2
 91 was manually taken offline (and is the only CP     91 was manually taken offline (and is the only CPU that can be brought
 92 online.)::                                         92 online.)::
 93                                                    93 
 94      kernel_max: 127                               94      kernel_max: 127
 95         offline: 2,4-127,128-143                   95         offline: 2,4-127,128-143
 96          online: 0-1,3                             96          online: 0-1,3
 97        possible: 0-127                             97        possible: 0-127
 98         present: 0-3                               98         present: 0-3
 99                                                    99 
100 See Documentation/core-api/cpu_hotplug.rst for    100 See Documentation/core-api/cpu_hotplug.rst for the possible_cpus=NUM
101 kernel start parameter as well as more informa    101 kernel start parameter as well as more information on the various cpumasks.
                                                      

~ [ 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