]> git.proxmox.com Git - mirror_spl.git/commit
Add support for rw semaphore under PREEMPT_RT_FULL
authorClemens Fruhwirth <clemens@endorphin.org>
Sat, 17 Dec 2016 16:09:57 +0000 (17:09 +0100)
committerBrian Behlendorf <behlendorf1@llnl.gov>
Mon, 19 Dec 2016 20:45:24 +0000 (12:45 -0800)
commit8e99d66b0555fe3d6f5b028e8f03883dbf1399bc
treeccf568585adb8b548f51d9fbd052c68635add538
parent6d064f7a07fe8366e113f45931e5f2921dcabda2
Add support for rw semaphore under PREEMPT_RT_FULL

The main complication from the RT patch set is that the RW semaphore
locks change such that read locks on an rwsem can be taken only by
a single thread.  All other threads are locked out. This single
thread can take a read lock multiple times though. The underlying
implementation changes to a mutex with an additional read_depth
count.

The implementation can be best understood by inspecting the RT
patch.  rwsem_rt.h and rt.c give the best insight into how RT
rwsem works. My implementation for rwsem_tryupgrade is basically
an inversion of rt_downgrade_write found in rt.c. Please see the
comments in the code.

Unfortunately, I have to drop SPLAT rwlock test4 completely as this
test tries to take multiple locks from different threads, which RT
rwsems do not support.  Otherwise SPLAT, zconfig.sh, zpios-sanity.sh
and zfs-tests.sh pass on my Debian-testing VM with the kernel
linux-image-4.8.0-1-rt-amd64.

Tested-by: kernelOfTruth <kerneloftruth@gmail.com>
Reviewed-by: Brian Behlendorf <behlendorf1@llnl.gov>
Signed-off-by: Clemens Fruhwirth <clemens@endorphin.org>
Closes zfsonlinux/zfs#5491
Closes #589
Closes #308
include/linux/rwsem_compat.h
module/spl/spl-rwlock.c
module/splat/splat-rwlock.c