aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/Documentation/admin-guide/cgroup-v1
diff options
context:
space:
mode:
authorXiongwei Song <xiongwei.song@windriver.com>2023-07-21 13:49:37 +0800
committerTejun Heo <tj@kernel.org>2023-07-21 08:11:27 -1000
commitfe9ebb8cec7968e2e758670952bbe4f1a453ef08 (patch)
tree51345c5f365dd1cc2ae215a2197dd5608a46666c /Documentation/admin-guide/cgroup-v1
parentcgroup/misc: Store atomic64_t reads to u64 (diff)
downloadwireguard-linux-fe9ebb8cec7968e2e758670952bbe4f1a453ef08.tar.xz
wireguard-linux-fe9ebb8cec7968e2e758670952bbe4f1a453ef08.zip
docs: cgroup-v1: correct the term of Page Cache organization in inode
The radix-tree for Page Cache has been replaced with xarray, see commit eb797a8ee0ab ("page cache: Rearrange address_space"), so move "radix-tree" to "xarray". Signed-off-by: Xiongwei Song <xiongwei.song@windriver.com> Signed-off-by: Tejun Heo <tj@kernel.org>
Diffstat (limited to 'Documentation/admin-guide/cgroup-v1')
-rw-r--r--Documentation/admin-guide/cgroup-v1/memory.rst4
1 files changed, 2 insertions, 2 deletions
diff --git a/Documentation/admin-guide/cgroup-v1/memory.rst b/Documentation/admin-guide/cgroup-v1/memory.rst
index fabaad3fd9c2..b49bae598a38 100644
--- a/Documentation/admin-guide/cgroup-v1/memory.rst
+++ b/Documentation/admin-guide/cgroup-v1/memory.rst
@@ -197,11 +197,11 @@ are not accounted. We just account pages under usual VM management.
RSS pages are accounted at page_fault unless they've already been accounted
for earlier. A file page will be accounted for as Page Cache when it's
-inserted into inode (radix-tree). While it's mapped into the page tables of
+inserted into inode (xarray). While it's mapped into the page tables of
processes, duplicate accounting is carefully avoided.
An RSS page is unaccounted when it's fully unmapped. A PageCache page is
-unaccounted when it's removed from radix-tree. Even if RSS pages are fully
+unaccounted when it's removed from xarray. Even if RSS pages are fully
unmapped (by kswapd), they may exist as SwapCache in the system until they
are really freed. Such SwapCaches are also accounted.
A swapped-in page is accounted after adding into swapcache.