]> git.baikalelectronics.ru Git - kernel.git/commit
proc: speed up /proc/*/statm
authorAlexey Dobriyan <adobriyan@gmail.com>
Tue, 7 Apr 2020 03:09:05 +0000 (20:09 -0700)
committerLinus Torvalds <torvalds@linux-foundation.org>
Tue, 7 Apr 2020 17:43:42 +0000 (10:43 -0700)
commit9813f170bda1753fd823254c595d11c532245a63
tree9a68b7a199b7b287098b3197850fbff446bdcfb5
parent5f9b8e3693298fe06d98ed7afdd2ef7cd1c3b5cb
proc: speed up /proc/*/statm

top(1) reads all /proc/*/statm files but kernel threads will always have
zeros.  Print those zeroes directly without going through
seq_put_decimal_ull().

Speed up reading /proc/2/statm (which is kthreadd) is like 3%.

My system has more kernel threads than normal processes after booting KDE.

Signed-off-by: Alexey Dobriyan <adobriyan@gmail.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Link: http://lkml.kernel.org/r/20200307154435.GA2788@avx2
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
fs/proc/array.c