diff options
| author | Seongjun Hong <hsj0512@snu.ac.kr> | 2026-07-01 14:17:46 +0000 |
|---|---|---|
| committer | Vlastimil Babka (SUSE) <vbabka@kernel.org> | 2026-07-02 11:01:23 +0200 |
| commit | ea0c7a9244594f1d71268e8636a8601217e4839d (patch) | |
| tree | 9a939a966fe8f2e48c4813f264353b6cff094ff0 | |
| parent | b2602886c61c4609c61fc12f9c04f6486f04748a (diff) | |
| download | linux-next-ea0c7a9244594f1d71268e8636a8601217e4839d.tar.gz linux-next-ea0c7a9244594f1d71268e8636a8601217e4839d.zip | |
docs: ABI: sysfs-kernel-slab: mark cpu_partial attributes deprecated
The per-cpu slab and per-cpu partial slab mechanisms were removed when
SLUB was fully converted to per-cpu sheaves in Linux 7.0. The cpu_slabs,
slabs_cpu_partial and cpu_partial sysfs attributes were kept as stubs
that always return 0 for backwards compatibility, but their
documentation still described them as if they were functional.
Update the three descriptions to state that the attributes are
deprecated and always read 0, and note that they are retained only for
compatibility. While here, fix a "partialli" typo in the
slabs_cpu_partial description.
Signed-off-by: Seongjun Hong <hsj0512@snu.ac.kr>
Acked-by: Harry Yoo (Oracle) <harry@kernel.org>
Link: https://patch.msgid.link/20260701141755.85119-1-hsj0512@snu.ac.kr
Signed-off-by: Vlastimil Babka (SUSE) <vbabka@kernel.org>
| -rw-r--r-- | Documentation/ABI/testing/sysfs-kernel-slab | 18 |
1 files changed, 12 insertions, 6 deletions
diff --git a/Documentation/ABI/testing/sysfs-kernel-slab b/Documentation/ABI/testing/sysfs-kernel-slab index b26e4299f822..c52034e3e794 100644 --- a/Documentation/ABI/testing/sysfs-kernel-slab +++ b/Documentation/ABI/testing/sysfs-kernel-slab @@ -113,8 +113,10 @@ KernelVersion: 2.6.22 Contact: Pekka Enberg <penberg@cs.helsinki.fi>, Christoph Lameter <cl@gentwo.org> Description: - The cpu_slabs file is read-only and displays how many cpu slabs - are active and their NUMA locality. + The cpu_slabs file is read-only. It is deprecated and always + reads "0" since the removal of per-cpu slabs in Linux 7.0. It + previously displayed how many cpu slabs were active and their + NUMA locality. The file is kept for backwards compatibility. What: /sys/kernel/slab/<cache>/cpuslab_flush Date: April 2009 @@ -509,12 +511,16 @@ What: /sys/kernel/slab/<cache>/slabs_cpu_partial Date: Aug 2011 Contact: Christoph Lameter <cl@gentwo.org> Description: - This read-only file shows the number of partialli allocated - frozen slabs. + This read-only file is deprecated and always reads "0(0)" since + the removal of per-cpu partial slabs in Linux 7.0. It previously + showed the number of partially allocated frozen slabs. The file + is kept for backwards compatibility. What: /sys/kernel/slab/<cache>/cpu_partial Date: Aug 2011 Contact: Christoph Lameter <cl@gentwo.org> Description: - This read-only file shows the number of per cpu partial - pages to keep around. + This file is deprecated and always reads "0" since the removal of + per-cpu partial slabs in Linux 7.0. It previously showed the + number of per-cpu partial pages to keep around. The file is kept + for backwards compatibility. |
