]> git.proxmox.com Git - mirror_spl-debian.git/commit
Proposed fix for low memory ZFS deadlocks
authorBrian Behlendorf <behlendorf1@llnl.gov>
Wed, 14 Jul 2010 04:30:56 +0000 (21:30 -0700)
committerBrian Behlendorf <behlendorf1@llnl.gov>
Wed, 14 Jul 2010 04:30:56 +0000 (21:30 -0700)
commit82b8c8fa64737edfb203156b245b48840139d2c1
treec8299064646021889d84d0aa4e07776a2ba7f4f7
parenta4bfd8ea1b58d8797ec91b18982de243675e63bc
Proposed fix for low memory ZFS deadlocks

Deadlocks in the zvol were observed when one of the ZFS threads
performing IO trys to allocate memory while the system is low
on memory.  The low memory condition causes dirty pages to be
synced to the zvol but this can't progress because the original
thread is blocked waiting on a memory allocation.  Thus we end
up deadlocking.

A proper solution proposed by Wizeman is to change KM_SLEEP from
GFP_KERNEL top GFP_NOFS.  This will prevent the memory allocation
which is trying to allocate memory from forcing a sync to the
zvol in shrink_page_list()->pageout().

The down side to all of this is that we are using a pretty big
hammer by changing KM_SLEEP.  This change means ALL of the zfs
memory allocations will be until to trigger dirty data to be
synced.  The caller still should be able to reclaim memory from
the various slab caches.  We will be totally dependent of other
kernel processes which happen to be running and a small number
of asynchronous reclaim threads to trigger the reclaim of dirty
data pages.  This should be OK but I think we may see some
slightly longer allocation times when under memory pressure.

We shall see.
include/sys/kmem.h