~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

TOMOYO Linux Cross Reference
Linux/Documentation/translations/zh_CN/mm/overcommit-accounting.rst

Version: ~ [ linux-6.12-rc7 ] ~ [ linux-6.11.7 ] ~ [ linux-6.10.14 ] ~ [ linux-6.9.12 ] ~ [ linux-6.8.12 ] ~ [ linux-6.7.12 ] ~ [ linux-6.6.60 ] ~ [ linux-6.5.13 ] ~ [ linux-6.4.16 ] ~ [ linux-6.3.13 ] ~ [ linux-6.2.16 ] ~ [ linux-6.1.116 ] ~ [ linux-6.0.19 ] ~ [ linux-5.19.17 ] ~ [ linux-5.18.19 ] ~ [ linux-5.17.15 ] ~ [ linux-5.16.20 ] ~ [ linux-5.15.171 ] ~ [ linux-5.14.21 ] ~ [ linux-5.13.19 ] ~ [ linux-5.12.19 ] ~ [ linux-5.11.22 ] ~ [ linux-5.10.229 ] ~ [ linux-5.9.16 ] ~ [ linux-5.8.18 ] ~ [ linux-5.7.19 ] ~ [ linux-5.6.19 ] ~ [ linux-5.5.19 ] ~ [ linux-5.4.285 ] ~ [ linux-5.3.18 ] ~ [ linux-5.2.21 ] ~ [ linux-5.1.21 ] ~ [ linux-5.0.21 ] ~ [ linux-4.20.17 ] ~ [ linux-4.19.323 ] ~ [ linux-4.18.20 ] ~ [ linux-4.17.19 ] ~ [ linux-4.16.18 ] ~ [ linux-4.15.18 ] ~ [ linux-4.14.336 ] ~ [ linux-4.13.16 ] ~ [ linux-4.12.14 ] ~ [ linux-4.11.12 ] ~ [ linux-4.10.17 ] ~ [ linux-4.9.337 ] ~ [ linux-4.4.302 ] ~ [ linux-3.10.108 ] ~ [ linux-2.6.32.71 ] ~ [ linux-2.6.0 ] ~ [ linux-2.4.37.11 ] ~ [ unix-v6-master ] ~ [ ccs-tools-1.8.12 ] ~ [ policy-sample ] ~
Architecture: ~ [ i386 ] ~ [ alpha ] ~ [ m68k ] ~ [ mips ] ~ [ ppc ] ~ [ sparc ] ~ [ sparc64 ] ~

  1 :Original: Documentation/mm/overcommit-accounting.rst
  2 
  3 :翻译:
  4 
  5  司延腾 Yanteng Si <siyanteng@loongson.cn>
  6 
  7 :校译:
  8 
  9 
 10 
 11 ==============
 12 超量使用审计
 13 ==============
 14 
 15 Linux内核支持下列超量使用处理模式
 16 
 17 0
 18         启发式超量使用处理。拒绝明显的地址空间超量使用。用于一个典型的系统。
 19         它确保严重的疯狂分配失败,同时允许超量使用以减少swap的使用。在这种模式下,
 20         允许root分配稍多的内存。这是默认的。
 21 1
 22         总是超量使用。适用于一些科学应用。经典的例子是使用稀疏数组的代码,只是依赖
 23         几乎完全由零页组成的虚拟内存
 24 
 25 2
 26         不超量使用。系统提交的总地址空间不允许超过swap+一个可配置的物理RAM的数量
 27         (默认为50%)。根据你使用的数量,在大多数情况下,这意味着一个进程在访问页面时
 28         不会被杀死,但会在内存分配上收到相应的错误。
 29 
 30         对于那些想保证他们的内存分配在未来可用而又不需要初始化每一个页面的应用程序来说
 31         是很有用的。
 32 
 33 超量使用策略是通过sysctl  `vm.overcommit_memory` 设置的。
 34 
 35 可以通过 `vm.overcommit_ratio` (百分比)或 `vm.overcommit_kbytes` (绝对值)
 36 来设置超限数量。这些只有在 `vm.overcommit_memory` 被设置为2时才有效果。
 37 
 38 在 ``/proc/meminfo`` 中可以分别以CommitLimit和Committed_AS的形式查看当前
 39 的超量使用和提交量。
 40 
 41 陷阱
 42 ====
 43 
 44 C语言的堆栈增长是一个隐含的mremap。如果你想得到绝对的保证,并在接近边缘的地方运行,
 45 你 **必须** 为你认为你需要的最大尺寸的堆栈进行mmap。对于典型的堆栈使用来说,这并
 46 不重要,但如果你真的非常关心的话,这就是一个值得关注的案例。
 47 
 48 
 49 在模式2中,MAP_NORESERVE标志被忽略。
 50 
 51 
 52 它是如何工作的
 53 ==============
 54 
 55 超量使用是基于以下规则
 56 
 57 对于文件映射
 58         | SHARED or READ-only   -       0 cost (该文件是映射而不是交换)
 59         | PRIVATE WRITABLE      -       每个实例的映射大小
 60 
 61 对于匿名或者 ``/dev/zero`` 映射
 62         | SHARED                        -       映射的大小
 63         | PRIVATE READ-only     -       0 cost (但作用不大)
 64         | PRIVATE WRITABLE      -       每个实例的映射大小
 65 
 66 额外的计数
 67         | 通过mmap制作可写副本的页面
 68         | 从同一池中提取的shmfs内存
 69 
 70 状态
 71 ====
 72 
 73 *       我们核算mmap内存映射
 74 *       我们核算mprotect在提交中的变化
 75 *       我们核算mremap的大小变化
 76 *       我们的审计 brk
 77 *       审计munmap
 78 *       我们在/proc中报告commit 状态
 79 *       核对并检查分叉的情况
 80 *       审查堆栈处理/执行中的构建
 81 *       叙述SHMfs的情况
 82 *       实现实际限制的执行
 83 
 84 待续
 85 ====
 86 *       ptrace 页计数(这很难)。

~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

kernel.org | git.kernel.org | LWN.net | Project Home | SVN repository | Mail admin

Linux® is a registered trademark of Linus Torvalds in the United States and other countries.
TOMOYO® is a registered trademark of NTT DATA CORPORATION.

sflogo.php