mirror_zfs/config
Ned Bass 46aa7b3939 Correctly handle rwsem_is_locked() behavior
A race condition in rwsem_is_locked() was fixed in Linux 2.6.33 and the fix was
backported to RHEL5 as of kernel 2.6.18-190.el5.  Details can be found here:

https://bugzilla.redhat.com/show_bug.cgi?id=526092

The race condition was fixed in the kernel by acquiring the semaphore's
wait_lock inside rwsem_is_locked().  The SPL worked around the race condition
by acquiring the wait_lock before calling that function, but with the fix in
place it must not do that.

This commit implements an autoconf test to detect whether the fixed version of
rwsem_is_locked() is present.  The previous version of rwsem_is_locked() was an
inline static function while the new version is exported as a symbol which we
can check for in module.symvers.  Depending on the result we correctly
implement the needed compatibility macros for proper spinlock handling.

Finally, we do the right thing with spin locks in RW_*_HELD() by using the
new compatibility macros.  We only only acquire the semaphore's wait_lock if
it is calling a rwsem_is_locked() that does not itself try to acquire the lock.

Some new overhead and a small harmless race is introduced by this change.
This is because RW_READ_HELD() and RW_WRITE_HELD() now acquire and release
the wait_lock twice: once for the call to rwsem_is_locked() and once for
the call to rw_owner().  This can't be avoided if calling a rwsem_is_locked()
that takes the wait_lock, as it will in more recent kernels.

The other case which only occurs in legacy kernels could be optimized by
taking the lock only once, as was done prior to this commit.  However, I
decided that the performance gain probably wasn't significant enough to
justify the messy special cases required.

The function spl_rw_get_owner() was only used to enable the afore-mentioned
optimization.  Since it is no longer used, I removed it.

Signed-off-by: Brian Behlendorf <behlendorf1@llnl.gov>
2010-08-10 16:43:00 -07:00
..
config.awk Allow spl_config.h to be included by dependant packages (updated) 2010-03-22 14:45:33 -07:00
config.guess Update config.guess to recognize additional distros 2010-07-02 14:48:27 -07:00
config.sub * : Add autogen.sh products. 2008-11-24 23:49:18 +00:00
deb.am Add Debian and Slackware style packaging via alien 2010-07-27 15:52:34 -07:00
depcomp * : Add autogen.sh products. 2008-11-24 23:49:18 +00:00
install-sh * : Add autogen.sh products. 2008-11-24 23:49:18 +00:00
ltmain.sh Add support for 'make -s' silent builds 2010-03-26 15:41:17 -07:00
missing * : Add autogen.sh products. 2008-11-24 23:49:18 +00:00
rpm.am Add Debian and Slackware style packaging via alien 2010-07-27 15:52:34 -07:00
Rules.am Only make compiler warnings fatal with --enable-debug 2010-06-30 17:05:36 -07:00
spl-build.m4 Correctly handle rwsem_is_locked() behavior 2010-08-10 16:43:00 -07:00
spl-meta.m4 Public Release Prep 2010-05-17 15:18:00 -07:00
tgz.am Add Debian and Slackware style packaging via alien 2010-07-27 15:52:34 -07:00