diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2014-06-04 11:50:34 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2014-06-04 11:50:34 -0400 |
commit | 1aacb90eaaac057c10fd746e189553e04cfeb291 (patch) | |
tree | eaf5b2eddc9e2e446b5402c106a3bf086aee925a /Documentation/filesystems/proc.txt | |
parent | b05d59dfceaea72565b1648af929b037b0f96d7f (diff) | |
parent | 31789538e3ba7dd164e063d4978c96af1894be4c (diff) |
Merge branch 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/jikos/trivial into next
Pull trivial tree changes from Jiri Kosina:
"Usual pile of patches from trivial tree that make the world go round"
* 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/jikos/trivial: (23 commits)
staging: go7007: remove reference to CONFIG_KMOD
aic7xxx: Remove obsolete preprocessor define
of: dma: doc fixes
doc: fix incorrect formula to calculate CommitLimit value
doc: Note need of bc in the kernel build from 3.10 onwards
mm: Fix printk typo in dmapool.c
modpost: Fix comment typo "Modules.symvers"
Kconfig.debug: Grammar s/addition/additional/
wimax: Spelling s/than/that/, wording s/destinatary/recipient/
aic7xxx: Spelling s/termnation/termination/
arm64: mm: Remove superfluous "the" in comment
of: Spelling s/anonymouns/anonymous/
dma: imx-sdma: Spelling s/determnine/determine/
ath10k: Improve grammar in comments
ath6kl: Spelling s/determnine/determine/
of: Improve grammar for of_alias_get_id() documentation
drm/exynos: Spelling s/contro/control/
radio-bcm2048.c: fix wrong overflow check
doc: printk-formats: do not mention casts for u64/s64
doc: spelling error changes
...
Diffstat (limited to 'Documentation/filesystems/proc.txt')
-rw-r--r-- | Documentation/filesystems/proc.txt | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/Documentation/filesystems/proc.txt b/Documentation/filesystems/proc.txt index 264bcde0c51c..ddc531a74d04 100644 --- a/Documentation/filesystems/proc.txt +++ b/Documentation/filesystems/proc.txt | |||
@@ -234,7 +234,7 @@ Table 1-2: Contents of the status files (as of 2.6.30-rc7) | |||
234 | ShdPnd bitmap of shared pending signals for the process | 234 | ShdPnd bitmap of shared pending signals for the process |
235 | SigBlk bitmap of blocked signals | 235 | SigBlk bitmap of blocked signals |
236 | SigIgn bitmap of ignored signals | 236 | SigIgn bitmap of ignored signals |
237 | SigCgt bitmap of catched signals | 237 | SigCgt bitmap of caught signals |
238 | CapInh bitmap of inheritable capabilities | 238 | CapInh bitmap of inheritable capabilities |
239 | CapPrm bitmap of permitted capabilities | 239 | CapPrm bitmap of permitted capabilities |
240 | CapEff bitmap of effective capabilities | 240 | CapEff bitmap of effective capabilities |
@@ -300,7 +300,7 @@ Table 1-4: Contents of the stat files (as of 2.6.30-rc7) | |||
300 | pending bitmap of pending signals | 300 | pending bitmap of pending signals |
301 | blocked bitmap of blocked signals | 301 | blocked bitmap of blocked signals |
302 | sigign bitmap of ignored signals | 302 | sigign bitmap of ignored signals |
303 | sigcatch bitmap of catched signals | 303 | sigcatch bitmap of caught signals |
304 | wchan address where process went to sleep | 304 | wchan address where process went to sleep |
305 | 0 (place holder) | 305 | 0 (place holder) |
306 | 0 (place holder) | 306 | 0 (place holder) |
@@ -854,7 +854,8 @@ WritebackTmp: Memory used by FUSE for temporary writeback buffers | |||
854 | if strict overcommit accounting is enabled (mode 2 in | 854 | if strict overcommit accounting is enabled (mode 2 in |
855 | 'vm.overcommit_memory'). | 855 | 'vm.overcommit_memory'). |
856 | The CommitLimit is calculated with the following formula: | 856 | The CommitLimit is calculated with the following formula: |
857 | CommitLimit = ('vm.overcommit_ratio' * Physical RAM) + Swap | 857 | CommitLimit = ([total RAM pages] - [total huge TLB pages]) * |
858 | overcommit_ratio / 100 + [total swap pages] | ||
858 | For example, on a system with 1G of physical RAM and 7G | 859 | For example, on a system with 1G of physical RAM and 7G |
859 | of swap with a `vm.overcommit_ratio` of 30 it would | 860 | of swap with a `vm.overcommit_ratio` of 30 it would |
860 | yield a CommitLimit of 7.3G. | 861 | yield a CommitLimit of 7.3G. |