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

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

Version: ~ [ linux-6.12-rc7 ] ~ [ linux-6.11.7 ] ~ [ linux-6.10.14 ] ~ [ linux-6.9.12 ] ~ [ linux-6.8.12 ] ~ [ linux-6.7.12 ] ~ [ linux-6.6.60 ] ~ [ linux-6.5.13 ] ~ [ linux-6.4.16 ] ~ [ linux-6.3.13 ] ~ [ linux-6.2.16 ] ~ [ linux-6.1.116 ] ~ [ linux-6.0.19 ] ~ [ linux-5.19.17 ] ~ [ linux-5.18.19 ] ~ [ linux-5.17.15 ] ~ [ linux-5.16.20 ] ~ [ linux-5.15.171 ] ~ [ linux-5.14.21 ] ~ [ linux-5.13.19 ] ~ [ linux-5.12.19 ] ~ [ linux-5.11.22 ] ~ [ linux-5.10.229 ] ~ [ linux-5.9.16 ] ~ [ linux-5.8.18 ] ~ [ linux-5.7.19 ] ~ [ linux-5.6.19 ] ~ [ linux-5.5.19 ] ~ [ linux-5.4.285 ] ~ [ linux-5.3.18 ] ~ [ linux-5.2.21 ] ~ [ linux-5.1.21 ] ~ [ linux-5.0.21 ] ~ [ linux-4.20.17 ] ~ [ linux-4.19.323 ] ~ [ 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.12 ] ~ [ policy-sample ] ~
Architecture: ~ [ i386 ] ~ [ alpha ] ~ [ m68k ] ~ [ mips ] ~ [ ppc ] ~ [ sparc ] ~ [ sparc64 ] ~

  1 .. SPDX-License-Identifier: GPL-2.0
  2 .. include:: ../disclaimer-zh_TW.rst
  3 
  4 :Original: Documentation/admin-guide/cputopology.rst
  5 
  6 :翻譯:
  7 
  8   唐藝舟 Tang Yizhou <tangyeechou@gmail.com>
  9 
 10 ==========================
 11 如何通過sysfs將CPU拓撲導出
 12 ==========================
 13 
 14 CPU拓撲信息通過sysfs導出。顯示的項(屬性)和某些架構的/proc/cpuinfo輸出相似。它們位於
 15 /sys/devices/system/cpu/cpuX/topology/。請閱讀ABI文件:
 16 Documentation/ABI/stable/sysfs-devices-system-cpu。
 17 
 18 drivers/base/topology.c是體系結構中性的,它導出了這些屬性。然而,die、cluster、book、
 19 draw這些層次結構相關的文件僅在體系結構提供了下文描述的宏的條件下被創建。
 20 
 21 對於支持這個特性的體系結構,它必須在include/asm-XXX/topology.h中定義這些宏中的一部分::
 22 
 23         #define topology_physical_package_id(cpu)
 24         #define topology_die_id(cpu)
 25         #define topology_cluster_id(cpu)
 26         #define topology_core_id(cpu)
 27         #define topology_book_id(cpu)
 28         #define topology_drawer_id(cpu)
 29         #define topology_sibling_cpumask(cpu)
 30         #define topology_core_cpumask(cpu)
 31         #define topology_cluster_cpumask(cpu)
 32         #define topology_die_cpumask(cpu)
 33         #define topology_book_cpumask(cpu)
 34         #define topology_drawer_cpumask(cpu)
 35 
 36 ``**_id macros`` 的類型是int。
 37 ``**_cpumask macros`` 的類型是 ``(const) struct cpumask *`` 。後者和恰當的
 38 ``**_siblings`` sysfs屬性對應(除了topology_sibling_cpumask(),它和thread_siblings
 39 對應)。
 40 
 41 爲了在所有體系結構上保持一致,include/linux/topology.h提供了上述所有宏的默認定義,以防
 42 它們未在include/asm-XXX/topology.h中定義:
 43 
 44 1) topology_physical_package_id: -1
 45 2) topology_die_id: -1
 46 3) topology_cluster_id: -1
 47 4) topology_core_id: 0
 48 5) topology_book_id: -1
 49 6) topology_drawer_id: -1
 50 7) topology_sibling_cpumask: 僅入參CPU
 51 8) topology_core_cpumask: 僅入參CPU
 52 9) topology_cluster_cpumask: 僅入參CPU
 53 10) topology_die_cpumask: 僅入參CPU
 54 11) topology_book_cpumask:  僅入參CPU
 55 12) topology_drawer_cpumask: 僅入參CPU
 56 
 57 此外,CPU拓撲信息由/sys/devices/system/cpu提供,包含下述文件。輸出對應的內部數據源放在
 58 方括號("[]")中。
 59 
 60     =========== ==================================================================
 61     kernel_max: 內核配置允許的最大CPU下標值。[NR_CPUS-1]
 62 
 63     offline:    由於熱插拔移除或者超過內核允許的CPU上限(上文描述的kernel_max)
 64                 導致未上線的CPU。[~cpu_online_mask + cpus >= NR_CPUS]
 65 
 66     online:     在線的CPU,可供調度使用。[cpu_online_mask]
 67 
 68     possible:   已被分配資源的CPU,如果它們CPU實際存在,可以上線。
 69                 [cpu_possible_mask]
 70 
 71     present:    被系統識別實際存在的CPU。[cpu_present_mask]
 72     =========== ==================================================================
 73 
 74 上述輸出的格式和cpulist_parse()兼容[參見 <linux/cpumask.h>]。下面給些例子。
 75 
 76 在本例中,系統中有64個CPU,但是CPU 32-63超過了kernel_max值,因爲NR_CPUS配置項是32,
 77 取值範圍被限制爲0..31。此外注意CPU2和4-31未上線,但是可以上線,因爲它們同時存在於
 78 present和possible::
 79 
 80      kernel_max: 31
 81         offline: 2,4-31,32-63
 82          online: 0-1,3
 83        possible: 0-31
 84         present: 0-31
 85 
 86 在本例中,NR_CPUS配置項是128,但內核啓動時設置possible_cpus=144。系統中有4個CPU,
 87 CPU2被手動設置下線(也是唯一一個可以上線的CPU)::
 88 
 89      kernel_max: 127
 90         offline: 2,4-127,128-143
 91          online: 0-1,3
 92        possible: 0-127
 93         present: 0-3
 94 
 95 閱讀Documentation/core-api/cpu_hotplug.rst可瞭解開機參數possible_cpus=NUM,同時還
 96 可以瞭解各種cpumask的信息。
 97 

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