]> git.proxmox.com Git - mirror_spl-debian.git/commit
Improved vmem cached deadlock detection
authorBrian Behlendorf <behlendorf1@llnl.gov>
Mon, 29 Oct 2012 23:51:59 +0000 (16:51 -0700)
committerBrian Behlendorf <behlendorf1@llnl.gov>
Tue, 6 Nov 2012 22:54:15 +0000 (14:54 -0800)
commit165f13c33abadc06ccaea1c4f654fddfa316a80f
tree167c1501a7d45df8e879256ffbf2204ba241d83f
parent65c2fc5a2ed3a60711cc63e53b3ab01e9d5095ae
Improved vmem cached deadlock detection

The entire goal of performing the slab allocations asynchronously
is to be able to detect when a vmalloc() deadlocks.  In this case,
and only this case, do we want to start allocating emergency objects.
The trick here is to minimize false positives because the overhead
of tracking emergency objects is far higher than normal slab objects.

With that goal in mind the code was reworked to be less sensitive
to slow allocations by increasing the wait time.  Once a cache is
is marked deadlocked all subsequent allocations which can not be
satisfied with existing cache objects will immediately allocate new
emergency objects.  This behavior persists until the asynchronous
allocation completes and clears the deadlocked flag.

The result of these tweaks is that far fewer emergency objects
get created which is important because this minimizes the cost of
releasing them latter in kmem_cache_free().

Signed-off-by: Brian Behlendorf <behlendorf1@llnl.gov>
include/sys/kmem.h
module/spl/spl-kmem.c
module/spl/spl-proc.c