⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 overcommit-accounting

📁 linux 内核源代码
💻
字号:
The Linux kernel supports the following overcommit handling modes0	-	Heuristic overcommit handling. Obvious overcommits of		address space are refused. Used for a typical system. It		ensures a seriously wild allocation fails while allowing		overcommit to reduce swap usage.  root is allowed to 		allocate slighly more memory in this mode. This is the 		default.1	-	Always overcommit. Appropriate for some scientific		applications.2	-	Don't overcommit. The total address space commit		for the system is not permitted to exceed swap + a		configurable percentage (default is 50) of physical RAM.		Depending on the percentage you use, in most situations		this means a process will not be killed while accessing		pages but will receive errors on memory allocation as		appropriate.The overcommit policy is set via the sysctl `vm.overcommit_memory'.The overcommit percentage is set via `vm.overcommit_ratio'.The current overcommit limit and amount committed are viewable in/proc/meminfo as CommitLimit and Committed_AS respectively.Gotchas-------The C language stack growth does an implicit mremap. If you want absoluteguarantees and run close to the edge you MUST mmap your stack for the largest size you think you will need. For typical stack usage this doesnot matter much but it's a corner case if you really really careIn mode 2 the MAP_NORESERVE flag is ignored. How It Works------------The overcommit is based on the following rulesFor a file backed map	SHARED or READ-only	-	0 cost (the file is the map not swap)	PRIVATE WRITABLE	-	size of mapping per instanceFor an anonymous or /dev/zero map	SHARED			-	size of mapping	PRIVATE READ-only	-	0 cost (but of little use)	PRIVATE WRITABLE	-	size of mapping per instanceAdditional accounting	Pages made writable copies by mmap	shmfs memory drawn from the same poolStatus------o	We account mmap memory mappingso	We account mprotect changes in commito	We account mremap changes in sizeo	We account brko	We account munmapo	We report the commit status in /proco	Account and check on forko	Review stack handling/building on execo	SHMfs accountingo	Implement actual limit enforcementTo Do-----o	Account ptrace pages (this is hard)

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -