summaryrefslogtreecommitdiffstats
path: root/Documentation/translations
diff options
context:
space:
mode:
authorPengyu Zhang <zpenya1314@gmail.com>2024-10-16 16:18:00 +0200
committerJonathan Corbet <corbet@lwn.net>2024-10-21 17:44:23 +0200
commit53e52302778c65782cb59eb9e9c38c2f23c9ee93 (patch)
tree45a103be9ec92c56825e001422538f3b63533c3e /Documentation/translations
parentDocs/zh_CN: Translate page_tables.rst to Simplified Chinese (diff)
downloadlinux-53e52302778c65782cb59eb9e9c38c2f23c9ee93.tar.xz
linux-53e52302778c65782cb59eb9e9c38c2f23c9ee93.zip
Docs/zh_CN: Fix the pfn calculation error in page_tables.rst
Synchronize the changes of origin document to fix the pfn value. Reviewed-by: Yanteng Si <si.yanteng@linux.dev> Signed-off-by: Pengyu Zhang <zpenya1314@gmail.com> Link: https://lore.kernel.org/r/20241016141801.25487-4-zpenya1314@gmail.com Signed-off-by: Jonathan Corbet <corbet@lwn.net>
Diffstat (limited to 'Documentation/translations')
-rw-r--r--Documentation/translations/zh_CN/mm/page_tables.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/Documentation/translations/zh_CN/mm/page_tables.rst b/Documentation/translations/zh_CN/mm/page_tables.rst
index eac0f93070d9..c9f750fc5298 100644
--- a/Documentation/translations/zh_CN/mm/page_tables.rst
+++ b/Documentation/translations/zh_CN/mm/page_tables.rst
@@ -32,7 +32,7 @@ Linux 将页表定义为一个分级结构,目前有五级。对于支持的
在页粒度为 4KB 且地址范围为32位的情况下,pfn 0 对应地址0x00000000,pfn 1 对应
地址0x00001000,pfn 2 对应地址 0x00002000,以此类推,直到 pfn 0xfffff 对应
0xfffff000。如果页粒度为 16KB,则 pfn 分别对应地址 0x00004000、0x00008000
-... 0xffffc000,pfn 的范围从 0 到 0x3fffff。
+... 0xffffc000,pfn 的范围从 0 到 0x3ffff。
如你所见,对于 4KB 页面粒度,页基址使用地址的 12-31 位,这就是为什么在这种情况下
`PAGE_SHIFT` 被定义为 12,并且 `PAGE_SIZE` 通常由页偏移定义,为 `(1 << PAGE_SHIFT)`。