diff options
author | Thomas Gleixner <tglx@linutronix.de> | 2011-01-26 15:06:03 -0500 |
---|---|---|
committer | Thomas Gleixner <tglx@linutronix.de> | 2011-01-27 06:30:39 -0500 |
commit | 41e5887fa39ab272d9266a09cbefdef270e28b93 (patch) | |
tree | 0f2be78896e551ded6cda768524de43a4eab900b /include/linux/rwsem.h | |
parent | 12249b34414dba7f386aadcf6be7ca36c6878300 (diff) |
rwsem: Unify the duplicate rwsem_is_locked() inlines
Instead of having the same implementation in each architecture, move
it to linux/rwsem.h and remove the duplicates. It's unlikely that an
arch will ever implement something different, but we can deal with
that when it happens.
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Cc: Peter Zijlstra <peterz@infradead.org>
Cc: David Howells <dhowells@redhat.com>
Cc: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Cc: Matt Turner <mattst88@gmail.com>
Acked-by: Tony Luck <tony.luck@intel.com>
Acked-by: Heiko Carstens <heiko.carstens@de.ibm.com>
Cc: Paul Mundt <lethal@linux-sh.org>
Acked-by: David Miller <davem@davemloft.net>
Cc: Chris Zankel <chris@zankel.net>
LKML-Reference: <20110126195833.876773757@linutronix.de>
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Diffstat (limited to 'include/linux/rwsem.h')
-rw-r--r-- | include/linux/rwsem.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/include/linux/rwsem.h b/include/linux/rwsem.h index 8970c3e802e2..8b9c7e9f6910 100644 --- a/include/linux/rwsem.h +++ b/include/linux/rwsem.h | |||
@@ -34,6 +34,13 @@ struct rw_semaphore { | |||
34 | 34 | ||
35 | /* Include the arch specific part */ | 35 | /* Include the arch specific part */ |
36 | #include <asm/rwsem.h> | 36 | #include <asm/rwsem.h> |
37 | |||
38 | /* In all implementations count != 0 means locked */ | ||
39 | static inline int rwsem_is_locked(struct rw_semaphore *sem) | ||
40 | { | ||
41 | return sem->count != 0; | ||
42 | } | ||
43 | |||
37 | #endif | 44 | #endif |
38 | 45 | ||
39 | /* Common initializer macros and functions */ | 46 | /* Common initializer macros and functions */ |