Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1365321
| Path | csiph.com!goblin3!goblin.stu.neva.ru!sewer!news.mixmin.net!aioe.org!bofh.it!news.nic.it!robomod |
|---|---|
| From | js1304@gmail.com |
| Newsgroups | linux.kernel |
| Subject | mm/slab: reduce lock contention in alloc path |
| Date | Mon, 28 Mar 2016 07:30:03 +0200 |
| Message-ID | <rhxUt-2rs-3@gated-at.bofh.it> (permalink) |
| X-Original-To | Andrew Morton <akpm@linux-foundation.org> |
| Dkim-Signature | v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=from:to:cc:subject:date:message-id; bh=78c+AU42HIwHvRe39b1gkq4mdeGpMUl4EP8apoZ06Lg=; b=a747m5zan7qSEozn+c+K6LEw7dXUfYq3KVBlcxr335iOOGQrDDz9gcCXq1EAUIpgh4 RLWNBEsydtgHEnQEeljw/XR2rCIz6iVxlaqtLKUAk1erIqQX4K+NZimp3zRjxbCRKhVS Q7Sn5qfv8gsmDkHoJGFgAhGikkSr1eCg8BIccK49BPV1MrZHbwtjNUP9LAnu25cDKsx/ bwui4r7SlGgJ68P15ijLCTjY0Lem0OecYj2G2zv//v94f8mZnGSnHxwNm1Fl1h6LWWpZ RS62yHAit1VHkshgR412PheCh6TuOB88zK8d2y0zfgWnGAHQWZEtni+CuYEbAMf8lx/W +vAg== |
| X-Google-Dkim-Signature | v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:from:to:cc:subject:date:message-id; bh=78c+AU42HIwHvRe39b1gkq4mdeGpMUl4EP8apoZ06Lg=; b=PftNU68CAs826HCX2ccEL144gXh72QhJGBmHjGnAI14OsC3gnwt2okNAPs8dTqZqxX nuBOjs2nGTPXX1MaUDB5DDddPcr7F1MT2rhGfSSvIFaqOkIqgIwcKhRuiWCM7yjdBU0M nB9xdCfgxP16dU1a8fOvo12Ln8nNFW4SbR6SZgwoHq2UmC9PW2EzAbMZpm/MHVk+Sfi9 tzMnLydM5myoFreTt3+SvzHlDJIkt50Ji5W/yk/lTMaSJJiVbMDydXX1Wb7vtz1eBPit 6t+J7jmAvcwG7WTBA22vcrqbHOeze7DDD04pqrkpShAmBvPvvuQEQKlmxO2WThXxqZzO XyKQ== |
| X-Gm-Message-State | AD7BkJKTDGxPoQdwnUSM5F6SZxmPap5YaRKbMxufGTO8IwythOh38FRmS8vM0huJteNBQw== |
| X-Received | by 10.66.141.76 with SMTP id rm12mr40320248pab.30.1459142832197; Sun, 27 Mar 2016 22:27:12 -0700 (PDT) |
| X-Google-Original-From | iamjoonsoo.kim@lge.com |
| X-Mailer | git-send-email 1.9.1 |
| Sender | robomod@news.nic.it |
| List-ID | <linux-kernel.vger.kernel.org> |
| X-Mailing-List | linux-kernel@vger.kernel.org |
| Approved | robomod@news.nic.it |
| Lines | 58 |
| Organization | linux.* mail to news gateway |
| X-Original-Cc | Christoph Lameter <cl@linux.com>, Pekka Enberg <penberg@kernel.org>, David Rientjes <rientjes@google.com>, Jesper Dangaard Brouer <brouer@redhat.com>, linux-mm@kvack.org, linux-kernel@vger.kernel.org, Joonsoo Kim <iamjoonsoo.kim@lge.com> |
| X-Original-Date | Mon, 28 Mar 2016 14:26:50 +0900 |
| X-Original-Message-ID | <1459142821-20303-1-git-send-email-iamjoonsoo.kim@lge.com> |
| X-Original-Sender | linux-kernel-owner@vger.kernel.org |
| Xref | csiph.com linux.kernel:1365321 |
Show key headers only | View raw
From: Joonsoo Kim <iamjoonsoo.kim@lge.com>
While processing concurrent allocation, SLAB could be contended
a lot because it did a lots of work with holding a lock. This
patchset try to reduce the number of critical section to reduce
lock contention. Major changes are lockless decision to allocate
more slab and lockless cpu cache refill from the newly allocated slab.
Below is the result of concurrent allocation/free in slab allocation
benchmark made by Christoph a long time ago. I make the output simpler.
The number shows cycle count during alloc/free respectively so less
is better.
* Before
Kmalloc N*alloc N*free(32): Average=365/806
Kmalloc N*alloc N*free(64): Average=452/690
Kmalloc N*alloc N*free(128): Average=736/886
Kmalloc N*alloc N*free(256): Average=1167/985
Kmalloc N*alloc N*free(512): Average=2088/1125
Kmalloc N*alloc N*free(1024): Average=4115/1184
Kmalloc N*alloc N*free(2048): Average=8451/1748
Kmalloc N*alloc N*free(4096): Average=16024/2048
* After
Kmalloc N*alloc N*free(32): Average=344/792
Kmalloc N*alloc N*free(64): Average=347/882
Kmalloc N*alloc N*free(128): Average=390/959
Kmalloc N*alloc N*free(256): Average=393/1067
Kmalloc N*alloc N*free(512): Average=683/1229
Kmalloc N*alloc N*free(1024): Average=1295/1325
Kmalloc N*alloc N*free(2048): Average=2513/1664
Kmalloc N*alloc N*free(4096): Average=4742/2172
It shows that performance improves greatly (roughly more than 50%)
for the object class whose size is more than 128 bytes.
Thanks.
Joonsoo Kim (11):
mm/slab: hold a slab_mutex when calling __kmem_cache_shrink()
mm/slab: remove BAD_ALIEN_MAGIC again
mm/slab: drain the free slab as much as possible
mm/slab: factor out kmem_cache_node initialization code
mm/slab: clean-up kmem_cache_node setup
mm/slab: don't keep free slabs if free_objects exceeds free_limit
mm/slab: racy access/modify the slab color
mm/slab: make cache_grow() handle the page allocated on arbitrary node
mm/slab: separate cache_grow() to two parts
mm/slab: refill cpu cache through a new slab without holding a node
lock
mm/slab: lockless decision to grow cache
mm/slab.c | 495 ++++++++++++++++++++++++++++---------------------------
mm/slab_common.c | 4 +
2 files changed, 255 insertions(+), 244 deletions(-)
--
1.9.1
Back to linux.kernel | Previous | Next — Next in thread | Find similar | Unroll thread
mm/slab: reduce lock contention in alloc path js1304@gmail.com - 2016-03-28 07:30 +0200 [PATCH 11/11] mm/slab: lockless decision to grow cache js1304@gmail.com - 2016-03-28 07:30 +0200
csiph-web