On Thu, Jun 09, 2022 at 09:27:20PM +0800, Yanteng Si wrote: > update to commit 481cc97349d6 ("mm,doc: Add new > documentation structure") > > Signed-off-by: Yanteng Si <siyanteng@xxxxxxxxxxx> > --- > .../translations/zh_CN/vm/bootmem.rst | 13 +++++++ > Documentation/translations/zh_CN/vm/index.rst | 39 +++++++++++++++---- > Documentation/translations/zh_CN/vm/oom.rst | 13 +++++++ > .../translations/zh_CN/vm/page_allocation.rst | 13 +++++++ > .../translations/zh_CN/vm/page_cache.rst | 13 +++++++ > .../translations/zh_CN/vm/page_reclaim.rst | 13 +++++++ > .../translations/zh_CN/vm/page_tables.rst | 13 +++++++ > .../translations/zh_CN/vm/physical_memory.rst | 13 +++++++ > .../translations/zh_CN/vm/process_addrs.rst | 13 +++++++ > Documentation/translations/zh_CN/vm/shmfs.rst | 13 +++++++ > Documentation/translations/zh_CN/vm/swap.rst | 13 +++++++ > .../translations/zh_CN/vm/vmalloc.rst | 13 +++++++ > 12 files changed, 175 insertions(+), 7 deletions(-) > create mode 100644 Documentation/translations/zh_CN/vm/bootmem.rst > create mode 100644 Documentation/translations/zh_CN/vm/oom.rst > create mode 100644 Documentation/translations/zh_CN/vm/page_allocation.rst > create mode 100644 Documentation/translations/zh_CN/vm/page_cache.rst > create mode 100644 Documentation/translations/zh_CN/vm/page_reclaim.rst > create mode 100644 Documentation/translations/zh_CN/vm/page_tables.rst > create mode 100644 Documentation/translations/zh_CN/vm/physical_memory.rst > create mode 100644 Documentation/translations/zh_CN/vm/process_addrs.rst > create mode 100644 Documentation/translations/zh_CN/vm/shmfs.rst > create mode 100644 Documentation/translations/zh_CN/vm/swap.rst > create mode 100644 Documentation/translations/zh_CN/vm/vmalloc.rst > > diff --git a/Documentation/translations/zh_CN/vm/bootmem.rst b/Documentation/translations/zh_CN/vm/bootmem.rst > new file mode 100644 > index 000000000000..45652031a9cc > --- /dev/null > +++ b/Documentation/translations/zh_CN/vm/bootmem.rst > @@ -0,0 +1,13 @@ > +.. SPDX-License-Identifier: GPL-2.0 > + > +:Original: Documentation/vm/bootmem.rst > + > +:翻译: > + > + 司延腾 Yanteng Si <siyanteng@xxxxxxxxxxx> > + > +:校译: > + > +======== > +启动内存 > +======== > diff --git a/Documentation/translations/zh_CN/vm/index.rst b/Documentation/translations/zh_CN/vm/index.rst > index a1c6d529b6ff..e9adc693184d 100644 > --- a/Documentation/translations/zh_CN/vm/index.rst > +++ b/Documentation/translations/zh_CN/vm/index.rst > @@ -12,11 +12,38 @@ > Linux内存管理文档 > ================= > > -这是一个关于Linux内存管理(mm)子系统内部的文档集,其中有不同层次的细节,包括注释 > -和邮件列表的回复,用于阐述数据结构和算法的基本情况。如果你正在寻找关于简单分配内存的建 > -议,请参阅(Documentation/translations/zh_CN/core-api/memory-allocation.rst)。 > -对于控制和调整指南,请参阅(Documentation/admin-guide/mm/index)。 > -TODO:待引用文档集被翻译完毕后请及时修改此处) > +这是一份关于了解Linux的内存管理子系统的指南。如果你正在寻找关于简单分配内存的 > +建议,请参阅内存分配指南 > +(Documentation/translations/zh_CN/core-api/memory-allocation.rst)。 > +关于控制和调整的指南,请看管理指南 > +(Documentation/translations/zh_CN/admin-guide/mm/index.rst)。 > + > + > +.. toctree:: > + :maxdepth: 1 > + > + physical_memory > + page_tables > + process_addrs > + bootmem > + page_allocation > + vmalloc > + highmem > + page_reclaim > + swap > + page_cache > + shmfs > + oom > + > +TODOLIST: > +* slab > + > +遗留文档 > +======== > + > +这是一个关于Linux内存管理(MM)子系统内部的旧文档的集合,其中有不同层次的细节, > +包括注释和邮件列表的回复,用于阐述数据结构和算法的描述。它应该被很好地整合到上述 > +结构化的文档中,如果它已经完成了它的使命,可以删除。 > > .. toctree:: > :maxdepth: 1 > @@ -25,7 +52,6 @@ TODO:待引用文档集被翻译完毕后请及时修改此处) > balance > damon/index > free_page_reporting > - highmem > ksm > frontswap > hmm > @@ -48,7 +74,6 @@ TODOLIST: > * free_page_reporting > * hugetlbfs_reserv > * page_migration > -* slub > * transhuge > * unevictable-lru > * vmalloced-kernel-stacks > diff --git a/Documentation/translations/zh_CN/vm/oom.rst b/Documentation/translations/zh_CN/vm/oom.rst > new file mode 100644 > index 000000000000..00cc444cf86b > --- /dev/null > +++ b/Documentation/translations/zh_CN/vm/oom.rst > @@ -0,0 +1,13 @@ > +.. SPDX-License-Identifier: GPL-2.0 > + > +:Original: Documentation/vm/oom.rst > + > +:翻译: > + > + 司延腾 Yanteng Si <siyanteng@xxxxxxxxxxx> > + > +:校译: > + > +============ > +内存不足处理 > +============ > diff --git a/Documentation/translations/zh_CN/vm/page_allocation.rst b/Documentation/translations/zh_CN/vm/page_allocation.rst > new file mode 100644 > index 000000000000..ab779498abe6 > --- /dev/null > +++ b/Documentation/translations/zh_CN/vm/page_allocation.rst > @@ -0,0 +1,13 @@ > +.. SPDX-License-Identifier: GPL-2.0 > + > +:Original: Documentation/vm/page_allocation.rst > + > +:翻译: > + > + 司延腾 Yanteng Si <siyanteng@xxxxxxxxxxx> > + > +:校译: > + > +======== > +页面分配 > +======== > diff --git a/Documentation/translations/zh_CN/vm/page_cache.rst b/Documentation/translations/zh_CN/vm/page_cache.rst > new file mode 100644 > index 000000000000..6e000699da78 > --- /dev/null > +++ b/Documentation/translations/zh_CN/vm/page_cache.rst > @@ -0,0 +1,13 @@ > +.. SPDX-License-Identifier: GPL-2.0 > + > +:Original: Documentation/vm/page_cache.rst > + > +:翻译: > + > + 司延腾 Yanteng Si <siyanteng@xxxxxxxxxxx> > + > +:校译: > + > +======== > +页面缓存 > +======== > diff --git a/Documentation/translations/zh_CN/vm/page_reclaim.rst b/Documentation/translations/zh_CN/vm/page_reclaim.rst > new file mode 100644 > index 000000000000..3939d4c4a67b > --- /dev/null > +++ b/Documentation/translations/zh_CN/vm/page_reclaim.rst > @@ -0,0 +1,13 @@ > +.. SPDX-License-Identifier: GPL-2.0 > + > +:Original: Documentation/vm/page_reclaim.rst > + > +:翻译: > + > + 司延腾 Yanteng Si <siyanteng@xxxxxxxxxxx> > + > +:校译: > + > +======== > +页面回收 > +======== > diff --git a/Documentation/translations/zh_CN/vm/page_tables.rst b/Documentation/translations/zh_CN/vm/page_tables.rst > new file mode 100644 > index 000000000000..180fb79befd0 > --- /dev/null > +++ b/Documentation/translations/zh_CN/vm/page_tables.rst > @@ -0,0 +1,13 @@ > +.. SPDX-License-Identifier: GPL-2.0 > + > +:Original: Documentation/vm/page_tables.rst > + > +:翻译: > + > + 司延腾 Yanteng Si <siyanteng@xxxxxxxxxxx> > + > +:校译: > + > +==== > +页表 > +==== > diff --git a/Documentation/translations/zh_CN/vm/physical_memory.rst b/Documentation/translations/zh_CN/vm/physical_memory.rst > new file mode 100644 > index 000000000000..5427baea5306 > --- /dev/null > +++ b/Documentation/translations/zh_CN/vm/physical_memory.rst > @@ -0,0 +1,13 @@ > +.. SPDX-License-Identifier: GPL-2.0 > + > +:Original: Documentation/vm/physical_memory.rst > + > +:翻译: > + > + 司延腾 Yanteng Si <siyanteng@xxxxxxxxxxx> > + > +:校译: > + > +======== > +物理内存 > +======== > diff --git a/Documentation/translations/zh_CN/vm/process_addrs.rst b/Documentation/translations/zh_CN/vm/process_addrs.rst > new file mode 100644 > index 000000000000..980fa32ecf07 > --- /dev/null > +++ b/Documentation/translations/zh_CN/vm/process_addrs.rst > @@ -0,0 +1,13 @@ > +.. SPDX-License-Identifier: GPL-2.0 > + > +:Original: Documentation/vm/process_addrs.rst > + > +:翻译: > + > + 司延腾 Yanteng Si <siyanteng@xxxxxxxxxxx> > + > +:校译: > + > +======== > +进程地址 > +======== > diff --git a/Documentation/translations/zh_CN/vm/shmfs.rst b/Documentation/translations/zh_CN/vm/shmfs.rst > new file mode 100644 > index 000000000000..5b3c85e5f992 > --- /dev/null > +++ b/Documentation/translations/zh_CN/vm/shmfs.rst > @@ -0,0 +1,13 @@ > +.. SPDX-License-Identifier: GPL-2.0 > + > +:Original: Documentation/vm/shmfs.rst > + > +:翻译: > + > + 司延腾 Yanteng Si <siyanteng@xxxxxxxxxxx> > + > +:校译: > + > +================ > +共享内存文件系统 > +================ Missing: diff --git a/Documentation/vm/slab.rst b/Documentation/vm/slab.rst new file mode 100644 index 000000000000..87d5a5bb172f --- /dev/null +++ b/Documentation/vm/slab.rst @@ -0,0 +1,5 @@ +.. SPDX-License-Identifier: GPL-2.0 + +=============== +Slab Allocation +=============== -- Thanks, Wu > diff --git a/Documentation/translations/zh_CN/vm/swap.rst b/Documentation/translations/zh_CN/vm/swap.rst > new file mode 100644 > index 000000000000..568a4472ff11 > --- /dev/null > +++ b/Documentation/translations/zh_CN/vm/swap.rst > @@ -0,0 +1,13 @@ > +.. SPDX-License-Identifier: GPL-2.0 > + > +:Original: Documentation/vm/swap.rst > + > +:翻译: > + > + 司延腾 Yanteng Si <siyanteng@xxxxxxxxxxx> > + > +:校译: > + > +======== > +交换内存 > +======== > diff --git a/Documentation/translations/zh_CN/vm/vmalloc.rst b/Documentation/translations/zh_CN/vm/vmalloc.rst > new file mode 100644 > index 000000000000..efb542878f8c > --- /dev/null > +++ b/Documentation/translations/zh_CN/vm/vmalloc.rst > @@ -0,0 +1,13 @@ > +.. SPDX-License-Identifier: GPL-2.0 > + > +:Original: Documentation/vm/vmalloc.rst > + > +:翻译: > + > + 司延腾 Yanteng Si <siyanteng@xxxxxxxxxxx> > + > +:校译: > + > +================ > +连续虚拟内存分配 > +================ > -- > 2.27.0