Re: [PATCH 05/12] docs/zh_CN: add vm overcommit-accounting translation

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



Alex Shi <seakeel@xxxxxxxxx> 于2022年3月8日周二 23:16写道:
>
> On Sun, Mar 6, 2022 at 12:25 AM Yanteng Si <siyanteng01@xxxxxxxxx> wrote:
> >
> > Translate .../vm/overcommit-accounting.rst into Chinese.
> >
> > Signed-off-by: Yanteng Si <siyanteng@xxxxxxxxxxx>
> > ---
> >  Documentation/translations/zh_CN/vm/index.rst |  2 +-
> >  .../zh_CN/vm/overcommit-accounting.rst        | 86 +++++++++++++++++++
> >  2 files changed, 87 insertions(+), 1 deletion(-)
> >  create mode 100644 Documentation/translations/zh_CN/vm/overcommit-accounting.rst
> >
> > diff --git a/Documentation/translations/zh_CN/vm/index.rst b/Documentation/translations/zh_CN/vm/index.rst
> > index 919e879b8167..2a3a93a4c050 100644
> > --- a/Documentation/translations/zh_CN/vm/index.rst
> > +++ b/Documentation/translations/zh_CN/vm/index.rst
> > @@ -30,6 +30,7 @@ TODO:待引用文档集被翻译完毕后请及时修改此处)
> >     hwpoison
> >     memory-model
> >     mmu_notifier
> > +   overcommit-accounting
> >
> >  TODOLIST:
> >  * arch_pgtable_helpers
> > @@ -37,7 +38,6 @@ TODOLIST:
> >  * hmm
> >  * hugetlbfs_reserv
> >  * numa
> > -* overcommit-accounting
> >  * page_migration
> >  * page_frags
> >  * page_owner
> > diff --git a/Documentation/translations/zh_CN/vm/overcommit-accounting.rst b/Documentation/translations/zh_CN/vm/overcommit-accounting.rst
> > new file mode 100644
> > index 000000000000..1e3eae1338cb
> > --- /dev/null
> > +++ b/Documentation/translations/zh_CN/vm/overcommit-accounting.rst
> > @@ -0,0 +1,86 @@
> > +:Original: Documentation/vm/overcommit.rst
>
> Documentation/vm/overcommit-accounting.rst ?
ok!
>
> > +
> > +:翻译:
> > +
> > + 司延腾 Yanteng Si <siyanteng@xxxxxxxxxxx>
> > +
> > +:校译:
> > +
> > +
> > +
> > +==============
> > +Overcommit审计
>
> overcommit -> 超量使用?
ok!
>
> > +==============
> > +
> > +Linux内核支持下列overcommit处理模式
> > +
> > +0
> > +       启发式overcommit处理。拒绝明显的地址空间overcommit。用于一个典型的系统。
> > +       它确保严重的疯狂分配失败,同时允许overcommit以减少swap的使用。在这种模式下,
> > +       允许root分配稍多的内存。这是默认的。
> > +1
> > +       总是overcommit。适用于一些科学应用。经典的例子是使用稀疏数组的代码,只是依赖
> > +       几乎完全由零页组成的虚拟内存
> > +
> > +2
> > +       不overcommit。系统提交的总地址空间不允许超过swap+一个可配置的物理RAM的数量
> > +       (默认为50%)。根据你使用的数量,在大多数情况下,这意味着一个进程在访问页面时
> > +       不会被杀死,但会在内存分配上收到相应的错误。
> > +
> > +       对于那些想保证他们的内存分配在未来可用而又不需要初始化每一个页面的应用程序来说
> > +       是很有用的。
> > +
> > +overcommit策略是通过sysctl  `vm.overcommit_memory` 设置的。
> > +
> > +可以通过 `vm.overcommit_ratio` (百分比)或 `vm.overcommit_kbytes` (绝对值)
> > +来设置超限数量。这些只有在 `vm.overcommit_memory` 被设置为2时才有效果。
> > +
> > +在 ``/proc/meminfo`` 中可以分别以CommitLimit和Committed_AS的形式查看当前
> > +的overcommit和提交量。
> > +
> > +陷阱
> > +====
> > +
> > +C语言的堆栈增长是一个隐含的mremap。如果你想得到绝对的保证,并在接近边缘的地方运行,
> > +你 **必须** 为你认为你需要的最大尺寸的堆栈进行mmap。对于典型的堆栈使用来说,这并
> > +不重要,但如果你真的非常关心的话,这就是一个值得关注的案例。
> > +
> > +
> > +在模式2中,MAP_NORESERVE标志被忽略。
> > +
> > +
> > +它是如何工作的
> > +==============
> > +
> > +overcommit是基于以下规则
> > +
> > +For a file backed map
>
> 对于文件映射
ok
>
> > +       | SHARED or READ-only   -       0 cost (该文件是映射而不是交换)
> > +       | PRIVATE WRITABLE      -       每个实例的映射大小
> > +
> > +For an anonymous or ``/dev/zero`` map
> 对于匿名或者/dev/zero 映射?
ok
>
> > +       | SHARED                        -       映射的大小
> > +       | PRIVATE READ-only     -       0 cost (但作用不大)
> > +       | PRIVATE WRITABLE      -       每个实例的映射大小
> > +
> > +Additional accounting
> 额外的计数
ok
>
> > +       | 通过mmap制作可写副本的页面
> > +       | 从同一池中提取的shmfs内存
> > +
> > +状态
> > +====
> > +
> > +*      我们核算mmap内存映射
> > +*      我们核算mprotect在提交中的变化
> > +*      我们核算mremap的大小变化
> > +*      我们的审计 brk
> > +*      审计munmap
> > +*      我们在/proc中报告commit 状态
> > +*      核对并检查分叉的情况
> > +*      审查堆栈处理/执行中的构建
> > +*      叙述SHMfs的情况
> > +*      实现实际限制的执行
> > +
> > +待续
> > +====
> > +*      帐户trace页(这很难)。
>
> ptrace 页计数?
ok!

Thanks,
Yanteng
>
> Thanks
> Alex
>
> > --
> > 2.27.0
> >




[Index of Archives]     [Kernel Newbies]     [Security]     [Netfilter]     [Bugtraq]     [Linux FS]     [Yosemite Forum]     [MIPS Linux]     [ARM Linux]     [Linux Security]     [Linux RAID]     [Samba]     [Video 4 Linux]     [Device Mapper]     [Linux Resources]

  Powered by Linux