diff options
| author | Thomas Gleixner <tglx@linutronix.de> | 2009-11-07 17:04:15 -0500 |
|---|---|---|
| committer | Thomas Gleixner <tglx@linutronix.de> | 2009-12-14 17:55:32 -0500 |
| commit | ef12f10994281e2e44526fa0abf23fdd7d5bd87f (patch) | |
| tree | 6060e8b412fe7aea40462106be10eca8dcb1754d | |
| parent | b7b40ade58e621851896aa261452df99d4e9d99b (diff) | |
locking: Split rwlock from spinlock headers
Move the rwlock defines and inlines into separate header files. This
makes the selection for -rt easier.
No functional change.
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Acked-by: Peter Zijlstra <peterz@infradead.org>
Acked-by: Ingo Molnar <mingo@elte.hu>
| -rw-r--r-- | include/linux/rwlock.h | 125 | ||||
| -rw-r--r-- | include/linux/rwlock_types.h | 56 | ||||
| -rw-r--r-- | include/linux/spinlock.h | 100 | ||||
| -rw-r--r-- | include/linux/spinlock_types.h | 43 |
4 files changed, 195 insertions, 129 deletions
diff --git a/include/linux/rwlock.h b/include/linux/rwlock.h new file mode 100644 index 000000000000..73785b0bd6b9 --- /dev/null +++ b/include/linux/rwlock.h | |||
| @@ -0,0 +1,125 @@ | |||
| 1 | #ifndef __LINUX_RWLOCK_H | ||
| 2 | #define __LINUX_RWLOCK_H | ||
| 3 | |||
| 4 | #ifndef __LINUX_SPINLOCK_H | ||
| 5 | # error "please don't include this file directly" | ||
| 6 | #endif | ||
| 7 | |||
| 8 | /* | ||
| 9 | * rwlock related methods | ||
| 10 | * | ||
| 11 | * split out from spinlock.h | ||
| 12 | * | ||
| 13 | * portions Copyright 2005, Red Hat, Inc., Ingo Molnar | ||
| 14 | * Released under the General Public License (GPL). | ||
| 15 | */ | ||
| 16 | |||
| 17 | #ifdef CONFIG_DEBUG_SPINLOCK | ||
| 18 | extern void __rwlock_init(rwlock_t *lock, const char *name, | ||
| 19 | struct lock_class_key *key); | ||
| 20 | # define rwlock_init(lock) \ | ||
| 21 | do { \ | ||
| 22 | static struct lock_class_key __key; \ | ||
| 23 | \ | ||
| 24 | __rwlock_init((lock), #lock, &__key); \ | ||
| 25 | } while (0) | ||
| 26 | #else | ||
| 27 | # define rwlock_init(lock) \ | ||
| 28 | do { *(lock) = __RW_LOCK_UNLOCKED(lock); } while (0) | ||
| 29 | #endif | ||
| 30 | |||
| 31 | #ifdef CONFIG_DEBUG_SPINLOCK | ||
| 32 | extern void _raw_read_lock(rwlock_t *lock); | ||
| 33 | #define _raw_read_lock_flags(lock, flags) _raw_read_lock(lock) | ||
| 34 | extern int _raw_read_trylock(rwlock_t *lock); | ||
| 35 | extern void _raw_read_unlock(rwlock_t *lock); | ||
| 36 | extern void _raw_write_lock(rwlock_t *lock); | ||
| 37 | #define _raw_write_lock_flags(lock, flags) _raw_write_lock(lock) | ||
| 38 | extern int _raw_write_trylock(rwlock_t *lock); | ||
| 39 | extern void _raw_write_unlock(rwlock_t *lock); | ||
| 40 | #else | ||
| 41 | # define _raw_read_lock(rwlock) __raw_read_lock(&(rwlock)->raw_lock) | ||
| 42 | # define _raw_read_lock_flags(lock, flags) \ | ||
| 43 | __raw_read_lock_flags(&(lock)->raw_lock, *(flags)) | ||
| 44 | # define _raw_read_trylock(rwlock) __raw_read_trylock(&(rwlock)->raw_lock) | ||
| 45 | # define _raw_read_unlock(rwlock) __raw_read_unlock(&(rwlock)->raw_lock) | ||
| 46 | # define _raw_write_lock(rwlock) __raw_write_lock(&(rwlock)->raw_lock) | ||
| 47 | # define _raw_write_lock_flags(lock, flags) \ | ||
| 48 | __raw_write_lock_flags(&(lock)->raw_lock, *(flags)) | ||
| 49 | # define _raw_write_trylock(rwlock) __raw_write_trylock(&(rwlock)->raw_lock) | ||
| 50 | # define _raw_write_unlock(rwlock) __raw_write_unlock(&(rwlock)->raw_lock) | ||
| 51 | #endif | ||
| 52 | |||
| 53 | #define read_can_lock(rwlock) __raw_read_can_lock(&(rwlock)->raw_lock) | ||
| 54 | #define write_can_lock(rwlock) __raw_write_can_lock(&(rwlock)->raw_lock) | ||
| 55 | |||
| 56 | /* | ||
| 57 | * Define the various rw_lock methods. Note we define these | ||
| 58 | * regardless of whether CONFIG_SMP or CONFIG_PREEMPT are set. The various | ||
| 59 | * methods are defined as nops in the case they are not required. | ||
| 60 | */ | ||
| 61 | #define read_trylock(lock) __cond_lock(lock, _read_trylock(lock)) | ||
| 62 | #define write_trylock(lock) __cond_lock(lock, _write_trylock(lock)) | ||
| 63 | |||
| 64 | #define write_lock(lock) _write_lock(lock) | ||
| 65 | #define read_lock(lock) _read_lock(lock) | ||
| 66 | |||
| 67 | #if defined(CONFIG_SMP) || defined(CONFIG_DEBUG_SPINLOCK) | ||
| 68 | |||
| 69 | #define read_lock_irqsave(lock, flags) \ | ||
| 70 | do { \ | ||
| 71 | typecheck(unsigned long, flags); \ | ||
| 72 | flags = _read_lock_irqsave(lock); \ | ||
| 73 | } while (0) | ||
| 74 | #define write_lock_irqsave(lock, flags) \ | ||
| 75 | do { \ | ||
| 76 | typecheck(unsigned long, flags); \ | ||
| 77 | flags = _write_lock_irqsave(lock); \ | ||
| 78 | } while (0) | ||
| 79 | |||
| 80 | #else | ||
| 81 | |||
| 82 | #define read_lock_irqsave(lock, flags) \ | ||
| 83 | do { \ | ||
| 84 | typecheck(unsigned long, flags); \ | ||
| 85 | _read_lock_irqsave(lock, flags); \ | ||
| 86 | } while (0) | ||
| 87 | #define write_lock_irqsave(lock, flags) \ | ||
| 88 | do { \ | ||
| 89 | typecheck(unsigned long, flags); \ | ||
| 90 | _write_lock_irqsave(lock, flags); \ | ||
| 91 | } while (0) | ||
| 92 | |||
| 93 | #endif | ||
| 94 | |||
| 95 | #define read_lock_irq(lock) _read_lock_irq(lock) | ||
| 96 | #define read_lock_bh(lock) _read_lock_bh(lock) | ||
| 97 | #define write_lock_irq(lock) _write_lock_irq(lock) | ||
| 98 | #define write_lock_bh(lock) _write_lock_bh(lock) | ||
| 99 | #define read_unlock(lock) _read_unlock(lock) | ||
| 100 | #define write_unlock(lock) _write_unlock(lock) | ||
| 101 | #define read_unlock_irq(lock) _read_unlock_irq(lock) | ||
| 102 | #define write_unlock_irq(lock) _write_unlock_irq(lock) | ||
| 103 | |||
| 104 | #define read_unlock_irqrestore(lock, flags) \ | ||
| 105 | do { \ | ||
| 106 | typecheck(unsigned long, flags); \ | ||
| 107 | _read_unlock_irqrestore(lock, flags); \ | ||
| 108 | } while (0) | ||
| 109 | #define read_unlock_bh(lock) _read_unlock_bh(lock) | ||
| 110 | |||
| 111 | #define write_unlock_irqrestore(lock, flags) \ | ||
| 112 | do { \ | ||
| 113 | typecheck(unsigned long, flags); \ | ||
| 114 | _write_unlock_irqrestore(lock, flags); \ | ||
| 115 | } while (0) | ||
| 116 | #define write_unlock_bh(lock) _write_unlock_bh(lock) | ||
| 117 | |||
| 118 | #define write_trylock_irqsave(lock, flags) \ | ||
| 119 | ({ \ | ||
| 120 | local_irq_save(flags); \ | ||
| 121 | write_trylock(lock) ? \ | ||
| 122 | 1 : ({ local_irq_restore(flags); 0; }); \ | ||
| 123 | }) | ||
| 124 | |||
| 125 | #endif /* __LINUX_RWLOCK_H */ | ||
diff --git a/include/linux/rwlock_types.h b/include/linux/rwlock_types.h new file mode 100644 index 000000000000..f8c935206a41 --- /dev/null +++ b/include/linux/rwlock_types.h | |||
| @@ -0,0 +1,56 @@ | |||
| 1 | #ifndef __LINUX_RWLOCK_TYPES_H | ||
| 2 | #define __LINUX_RWLOCK_TYPES_H | ||
| 3 | |||
| 4 | /* | ||
| 5 | * include/linux/rwlock_types.h - generic rwlock type definitions | ||
| 6 | * and initializers | ||
| 7 | * | ||
| 8 | * portions Copyright 2005, Red Hat, Inc., Ingo Molnar | ||
| 9 | * Released under the General Public License (GPL). | ||
| 10 | */ | ||
| 11 | typedef struct { | ||
| 12 | raw_rwlock_t raw_lock; | ||
| 13 | #ifdef CONFIG_GENERIC_LOCKBREAK | ||
| 14 | unsigned int break_lock; | ||
| 15 | #endif | ||
| 16 | #ifdef CONFIG_DEBUG_SPINLOCK | ||
| 17 | unsigned int magic, owner_cpu; | ||
| 18 | void *owner; | ||
| 19 | #endif | ||
| 20 | #ifdef CONFIG_DEBUG_LOCK_ALLOC | ||
| 21 | struct lockdep_map dep_map; | ||
| 22 | #endif | ||
| 23 | } rwlock_t; | ||
| 24 | |||
| 25 | #define RWLOCK_MAGIC 0xdeaf1eed | ||
| 26 | |||
| 27 | #ifdef CONFIG_DEBUG_LOCK_ALLOC | ||
| 28 | # define RW_DEP_MAP_INIT(lockname) .dep_map = { .name = #lockname } | ||
| 29 | #else | ||
| 30 | # define RW_DEP_MAP_INIT(lockname) | ||
| 31 | #endif | ||
| 32 | |||
| 33 | #ifdef CONFIG_DEBUG_SPINLOCK | ||
| 34 | #define __RW_LOCK_UNLOCKED(lockname) \ | ||
| 35 | (rwlock_t) { .raw_lock = __RAW_RW_LOCK_UNLOCKED, \ | ||
| 36 | .magic = RWLOCK_MAGIC, \ | ||
| 37 | .owner = SPINLOCK_OWNER_INIT, \ | ||
| 38 | .owner_cpu = -1, \ | ||
| 39 | RW_DEP_MAP_INIT(lockname) } | ||
| 40 | #else | ||
| 41 | #define __RW_LOCK_UNLOCKED(lockname) \ | ||
| 42 | (rwlock_t) { .raw_lock = __RAW_RW_LOCK_UNLOCKED, \ | ||
| 43 | RW_DEP_MAP_INIT(lockname) } | ||
| 44 | #endif | ||
| 45 | |||
| 46 | /* | ||
| 47 | * RW_LOCK_UNLOCKED defeat lockdep state tracking and is hence | ||
| 48 | * deprecated. | ||
| 49 | * | ||
| 50 | * Please use DEFINE_RWLOCK() or __RW_LOCK_UNLOCKED() as appropriate. | ||
| 51 | */ | ||
| 52 | #define RW_LOCK_UNLOCKED __RW_LOCK_UNLOCKED(old_style_rw_init) | ||
| 53 | |||
| 54 | #define DEFINE_RWLOCK(x) rwlock_t x = __RW_LOCK_UNLOCKED(x) | ||
| 55 | |||
| 56 | #endif /* __LINUX_RWLOCK_TYPES_H */ | ||
diff --git a/include/linux/spinlock.h b/include/linux/spinlock.h index 71dccfeb0d88..a9aaa709fb93 100644 --- a/include/linux/spinlock.h +++ b/include/linux/spinlock.h | |||
| @@ -103,20 +103,6 @@ do { \ | |||
| 103 | do { *(lock) = __SPIN_LOCK_UNLOCKED(lock); } while (0) | 103 | do { *(lock) = __SPIN_LOCK_UNLOCKED(lock); } while (0) |
| 104 | #endif | 104 | #endif |
| 105 | 105 | ||
| 106 | #ifdef CONFIG_DEBUG_SPINLOCK | ||
| 107 | extern void __rwlock_init(rwlock_t *lock, const char *name, | ||
| 108 | struct lock_class_key *key); | ||
| 109 | # define rwlock_init(lock) \ | ||
| 110 | do { \ | ||
| 111 | static struct lock_class_key __key; \ | ||
| 112 | \ | ||
| 113 | __rwlock_init((lock), #lock, &__key); \ | ||
| 114 | } while (0) | ||
| 115 | #else | ||
| 116 | # define rwlock_init(lock) \ | ||
| 117 | do { *(lock) = __RW_LOCK_UNLOCKED(lock); } while (0) | ||
| 118 | #endif | ||
| 119 | |||
| 120 | #define spin_is_locked(lock) __raw_spin_is_locked(&(lock)->raw_lock) | 106 | #define spin_is_locked(lock) __raw_spin_is_locked(&(lock)->raw_lock) |
| 121 | 107 | ||
| 122 | #ifdef CONFIG_GENERIC_LOCKBREAK | ||
