Linux 3.2 compat: rw_semaphore.wait_lock is raw

The wait_lock member of the rw_semaphore struct became a raw_spinlock_t
in Linux 3.2 at torvalds/linux@ddb6c9b58a.

Wrap spin_lock_* function calls in a new spl_rwsem_* interface to
ensure type safety if raw_spinlock_t becomes architecture specific,
and to satisfy these compiler warnings:

  warning: passing argument 1 of ‘spinlock_check’
    from incompatible pointer type [enabled by default]
  note: expected ‘struct spinlock_t *’
    but argument is of type ‘struct raw_spinlock_t *’

Signed-off-by: Brian Behlendorf <behlendorf1@llnl.gov>
Closes: #76
Closes: zfsonlinux/zfs#463
This commit is contained in:
Darik Horn
2012-01-11 11:44:34 -06:00
committed by Brian Behlendorf
parent 5f6c14b1ed
commit 588d900433
5 changed files with 206 additions and 16 deletions
+28 -8
View File
@@ -27,6 +27,26 @@
#include <linux/rwsem.h>
#ifdef RWSEM_SPINLOCK_IS_RAW
#define spl_rwsem_lock_irqsave(lock, flags) \
({ \
raw_spin_lock_irqsave(lock, flags); \
})
#define spl_rwsem_unlock_irqrestore(lock, flags) \
({ \
raw_spin_unlock_irqrestore(lock, flags); \
})
#else
#define spl_rwsem_lock_irqsave(lock, flags) \
({ \
spin_lock_irqsave(lock, flags); \
})
#define spl_rwsem_unlock_irqrestore(lock, flags) \
({ \
spin_unlock_irqrestore(lock, flags); \
})
#endif /* RWSEM_SPINLOCK_IS_RAW */
#ifdef RWSEM_IS_LOCKED_TAKES_WAIT_LOCK
/*
* A race condition in rwsem_is_locked() was fixed in Linux 2.6.33 and the fix
@@ -48,14 +68,14 @@
#else
#define spl_rwsem_is_locked(rwsem) \
({ \
unsigned long _flags_; \
int _rc_; \
spin_lock_irqsave(&rwsem->wait_lock, _flags_); \
_rc_ = rwsem_is_locked(rwsem); \
spin_unlock_irqrestore(&rwsem->wait_lock, _flags_); \
_rc_; \
#define spl_rwsem_is_locked(rwsem) \
({ \
unsigned long _flags_; \
int _rc_; \
spl_rwsem_lock_irqsave(&rwsem->wait_lock, _flags_); \
_rc_ = rwsem_is_locked(rwsem); \
spl_rwsem_unlock_irqrestore(&rwsem->wait_lock, _flags_); \
_rc_; \
})
#endif /* RWSEM_IS_LOCKED_TAKES_WAIT_LOCK */