2010-08-10 22:01:46 +04:00
|
|
|
/*****************************************************************************\
|
|
|
|
* Copyright (C) 2007-2010 Lawrence Livermore National Security, LLC.
|
|
|
|
* Copyright (C) 2007 The Regents of the University of California.
|
|
|
|
* Produced at Lawrence Livermore National Laboratory (cf, DISCLAIMER).
|
|
|
|
* Written by Brian Behlendorf <behlendorf1@llnl.gov>.
|
|
|
|
* UCRL-CODE-235197
|
|
|
|
*
|
|
|
|
* This file is part of the SPL, Solaris Porting Layer.
|
2013-03-05 05:26:55 +04:00
|
|
|
* For details, see <http://zfsonlinux.org/>.
|
2010-08-10 22:01:46 +04:00
|
|
|
*
|
|
|
|
* The SPL is free software; you can redistribute it and/or modify it
|
|
|
|
* under the terms of the GNU General Public License as published by the
|
|
|
|
* Free Software Foundation; either version 2 of the License, or (at your
|
|
|
|
* option) any later version.
|
|
|
|
*
|
|
|
|
* The SPL is distributed in the hope that it will be useful, but WITHOUT
|
|
|
|
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
|
|
|
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
|
|
|
* for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License along
|
|
|
|
* with the SPL. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
\*****************************************************************************/
|
|
|
|
|
|
|
|
#ifndef _SPL_RWSEM_COMPAT_H
|
|
|
|
#define _SPL_RWSEM_COMPAT_H
|
|
|
|
|
|
|
|
#include <linux/rwsem.h>
|
|
|
|
|
2012-07-13 23:49:40 +04:00
|
|
|
#if defined(RWSEM_SPINLOCK_IS_RAW)
|
|
|
|
#define spl_rwsem_lock_irqsave(lk, fl) raw_spin_lock_irqsave(lk, fl)
|
|
|
|
#define spl_rwsem_unlock_irqrestore(lk, fl) raw_spin_unlock_irqrestore(lk, fl)
|
|
|
|
#define spl_rwsem_trylock_irqsave(lk, fl) raw_spin_trylock_irqsave(lk, fl)
|
2012-01-11 21:44:34 +04:00
|
|
|
#else
|
2012-07-13 23:49:40 +04:00
|
|
|
#define spl_rwsem_lock_irqsave(lk, fl) spin_lock_irqsave(lk, fl)
|
|
|
|
#define spl_rwsem_unlock_irqrestore(lk, fl) spin_unlock_irqrestore(lk, fl)
|
|
|
|
#define spl_rwsem_trylock_irqsave(lk, fl) spin_trylock_irqsave(lk, fl)
|
2012-01-11 21:44:34 +04:00
|
|
|
#endif /* RWSEM_SPINLOCK_IS_RAW */
|
|
|
|
|
2010-08-10 22:01:46 +04:00
|
|
|
/*
|
2012-07-13 23:49:40 +04:00
|
|
|
* Prior to Linux 2.6.33 there existed a race condition in rwsem_is_locked().
|
|
|
|
* The semaphore's activity was checked outside of the wait_lock which
|
|
|
|
* could result in some readers getting the incorrect activity value.
|
2010-08-10 22:01:46 +04:00
|
|
|
*
|
2012-07-13 23:49:40 +04:00
|
|
|
* When a kernel without this fix is detected the SPL takes responsibility
|
|
|
|
* for acquiring the wait_lock to avoid this race.
|
2010-08-10 22:01:46 +04:00
|
|
|
*/
|
2012-07-13 23:49:40 +04:00
|
|
|
#if defined(RWSEM_IS_LOCKED_TAKES_WAIT_LOCK)
|
|
|
|
#define spl_rwsem_is_locked(rwsem) rwsem_is_locked(rwsem)
|
2010-08-10 22:01:46 +04:00
|
|
|
#else
|
2012-07-13 23:49:40 +04:00
|
|
|
static inline int
|
|
|
|
spl_rwsem_is_locked(struct rw_semaphore *rwsem)
|
|
|
|
{
|
|
|
|
unsigned long flags;
|
|
|
|
int rc = 1;
|
2010-08-10 22:01:46 +04:00
|
|
|
|
2012-07-13 23:49:40 +04:00
|
|
|
if (spl_rwsem_trylock_irqsave(&rwsem->wait_lock, flags)) {
|
|
|
|
rc = rwsem_is_locked(rwsem);
|
|
|
|
spl_rwsem_unlock_irqrestore(&rwsem->wait_lock, flags);
|
|
|
|
}
|
2010-08-10 22:01:46 +04:00
|
|
|
|
2012-07-13 23:49:40 +04:00
|
|
|
return (rc);
|
|
|
|
}
|
2010-08-10 22:01:46 +04:00
|
|
|
#endif /* RWSEM_IS_LOCKED_TAKES_WAIT_LOCK */
|
|
|
|
|
|
|
|
#endif /* _SPL_RWSEM_COMPAT_H */
|