summaryrefslogtreecommitdiffstats
path: root/mm/memory-failure.c
diff options
context:
space:
mode:
authorKirill A. Shutemov2014-01-22 00:49:07 +0100
committerLinus Torvalds2014-01-22 01:19:44 +0100
commitb35f1819acd9243a3ff7ad25b1fa8bd6bfe80fb2 (patch)
tree140f810d09226caa12531e0a02126af64e71e314 /mm/memory-failure.c
parentmm: get rid of unnecessary pageblock scanning in setup_zone_migrate_reserve (diff)
downloadkernel-qcow2-linux-b35f1819acd9243a3ff7ad25b1fa8bd6bfe80fb2.tar.gz
kernel-qcow2-linux-b35f1819acd9243a3ff7ad25b1fa8bd6bfe80fb2.tar.xz
kernel-qcow2-linux-b35f1819acd9243a3ff7ad25b1fa8bd6bfe80fb2.zip
mm: create a separate slab for page->ptl allocation
If DEBUG_SPINLOCK and DEBUG_LOCK_ALLOC are enabled spinlock_t on x86_64 is 72 bytes. For page->ptl they will be allocated from kmalloc-96 slab, so we loose 24 on each. An average system can easily allocate few tens thousands of page->ptl and overhead is significant. Let's create a separate slab for page->ptl allocation to solve this. To make sure that it really works this time, some numbers from my test machine (just booted, no load): Before: # grep '^\(kmalloc-96\|page->ptl\)' /proc/slabinfo kmalloc-96 31987 32190 128 30 1 : tunables 120 60 8 : slabdata 1073 1073 92 After: # grep '^\(kmalloc-96\|page->ptl\)' /proc/slabinfo page->ptl 27516 28143 72 53 1 : tunables 120 60 8 : slabdata 531 531 9 kmalloc-96 3853 5280 128 30 1 : tunables 120 60 8 : slabdata 176 176 0 Note that the patch is useful not only for debug case, but also for PREEMPT_RT, where spinlock_t is always bloated. Signed-off-by: Kirill A. Shutemov <kirill.shutemov@linux.intel.com> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'mm/memory-failure.c')
0 files changed, 0 insertions, 0 deletions