diff options
| author | Ingo Molnar <mingo@elte.hu> | 2006-06-27 05:54:53 -0400 |
|---|---|---|
| committer | Linus Torvalds <torvalds@g5.osdl.org> | 2006-06-27 20:32:47 -0400 |
| commit | 23f78d4a03c53cbd75d87a795378ea540aa08c86 (patch) | |
| tree | 27dfe06337990911380fe8c5949ae9acd8e9568a /include | |
| parent | b29739f902ee76a05493fb7d2303490fc75364f4 (diff) | |
[PATCH] pi-futex: rt mutex core
Core functions for the rt-mutex subsystem.
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Signed-off-by: Arjan van de Ven <arjan@linux.intel.com>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'include')
| -rw-r--r-- | include/linux/init_task.h | 1 | ||||
| -rw-r--r-- | include/linux/rtmutex.h | 104 | ||||
| -rw-r--r-- | include/linux/sched.h | 12 | ||||
| -rw-r--r-- | include/linux/sysctl.h | 1 |
4 files changed, 118 insertions, 0 deletions
diff --git a/include/linux/init_task.h b/include/linux/init_task.h index 678c1a9038..3a256957fb 100644 --- a/include/linux/init_task.h +++ b/include/linux/init_task.h | |||
| @@ -124,6 +124,7 @@ extern struct group_info init_groups; | |||
| 124 | .cpu_timers = INIT_CPU_TIMERS(tsk.cpu_timers), \ | 124 | .cpu_timers = INIT_CPU_TIMERS(tsk.cpu_timers), \ |
| 125 | .fs_excl = ATOMIC_INIT(0), \ | 125 | .fs_excl = ATOMIC_INIT(0), \ |
| 126 | .pi_lock = SPIN_LOCK_UNLOCKED, \ | 126 | .pi_lock = SPIN_LOCK_UNLOCKED, \ |
| 127 | INIT_RT_MUTEXES(tsk) \ | ||
| 127 | } | 128 | } |
| 128 | 129 | ||
| 129 | 130 | ||
diff --git a/include/linux/rtmutex.h b/include/linux/rtmutex.h new file mode 100644 index 0000000000..12309c916c --- /dev/null +++ b/include/linux/rtmutex.h | |||
| @@ -0,0 +1,104 @@ | |||
| 1 | /* | ||
| 2 | * RT Mutexes: blocking mutual exclusion locks with PI support | ||
| 3 | * | ||
| 4 | * started by Ingo Molnar and Thomas Gleixner: | ||
| 5 | * | ||
| 6 | * Copyright (C) 2004-2006 Red Hat, Inc., Ingo Molnar <mingo@redhat.com> | ||
| 7 | * Copyright (C) 2006, Timesys Corp., Thomas Gleixner <tglx@timesys.com> | ||
| 8 | * | ||
| 9 | * This file contains the public data structure and API definitions. | ||
| 10 | */ | ||
| 11 | |||
| 12 | #ifndef __LINUX_RT_MUTEX_H | ||
| 13 | #define __LINUX_RT_MUTEX_H | ||
| 14 | |||
| 15 | #include <linux/linkage.h> | ||
| 16 | #include <linux/plist.h> | ||
| 17 | #include <linux/spinlock_types.h> | ||
| 18 | |||
| 19 | /* | ||
| 20 | * The rt_mutex structure | ||
| 21 | * | ||
| 22 | * @wait_lock: spinlock to protect the structure | ||
| 23 | * @wait_list: pilist head to enqueue waiters in priority order | ||
| 24 | * @owner: the mutex owner | ||
| 25 | */ | ||
| 26 | struct rt_mutex { | ||
| 27 | spinlock_t wait_lock; | ||
| 28 | struct plist_head wait_list; | ||
| 29 | struct task_struct *owner; | ||
| 30 | #ifdef CONFIG_DEBUG_RT_MUTEXES | ||
| 31 | int save_state; | ||
| 32 | struct list_head held_list_entry; | ||
| 33 | unsigned long acquire_ip; | ||
| 34 | const char *name, *file; | ||
| 35 | int line; | ||
| 36 | void *magic; | ||
| 37 | #endif | ||
| 38 | }; | ||
| 39 | |||
| 40 | struct rt_mutex_waiter; | ||
| 41 | struct hrtimer_sleeper; | ||
| 42 | |||
| 43 | #ifdef CONFIG_DEBUG_RT_MUTEXES | ||
| 44 | # define __DEBUG_RT_MUTEX_INITIALIZER(mutexname) \ | ||
| 45 | , .name = #mutexname, .file = __FILE__, .line = __LINE__ | ||
| 46 | # define rt_mutex_init(mutex) __rt_mutex_init(mutex, __FUNCTION__) | ||
| 47 | extern void rt_mutex_debug_task_free(struct task_struct *tsk); | ||
| 48 | #else | ||
| 49 | # define __DEBUG_RT_MUTEX_INITIALIZER(mutexname) | ||
| 50 | # define rt_mutex_init(mutex) __rt_mutex_init(mutex, NULL) | ||
| 51 | # define rt_mutex_debug_task_free(t) do { } while (0) | ||
| 52 | #endif | ||
| 53 | |||
| 54 | #define __RT_MUTEX_INITIALIZER(mutexname) \ | ||
| 55 | { .wait_lock = SPIN_LOCK_UNLOCKED \ | ||
| 56 | , .wait_list = PLIST_HEAD_INIT(mutexname.wait_list, mutexname.wait_lock) \ | ||
| 57 | , .owner = NULL \ | ||
| 58 | __DEBUG_RT_MUTEX_INITIALIZER(mutexname)} | ||
| 59 | |||
| 60 | #define DEFINE_RT_MUTEX(mutexname) \ | ||
| 61 | struct rt_mutex mutexname = __RT_MUTEX_INITIALIZER(mutexname) | ||
| 62 | |||
| 63 | /*** | ||
| 64 | * rt_mutex_is_locked - is the mutex locked | ||
| 65 | * @lock: the mutex to be queried | ||
| 66 | * | ||
| 67 | * Returns 1 if the mutex is locked, 0 if unlocked. | ||
| 68 | */ | ||
| 69 | static inline int rt_mutex_is_locked(struct rt_mutex *lock) | ||
| 70 | { | ||
| 71 | return lock->owner != NULL; | ||
| 72 | } | ||
| 73 | |||
| 74 | extern void __rt_mutex_init(struct rt_mutex *lock, const char *name); | ||
| 75 | extern void rt_mutex_destroy(struct rt_mutex *lock); | ||
| 76 | |||
| 77 | extern void rt_mutex_lock(struct rt_mutex *lock); | ||
| 78 | extern int rt_mutex_lock_interruptible(struct rt_mutex *lock, | ||
| 79 | int detect_deadlock); | ||
| 80 | extern int rt_mutex_timed_lock(struct rt_mutex *lock, | ||
| 81 | struct hrtimer_sleeper *timeout, | ||
| 82 | int detect_deadlock); | ||
| 83 | |||
| 84 | extern int rt_mutex_trylock(struct rt_mutex *lock); | ||
| 85 | |||
| 86 | extern void rt_mutex_unlock(struct rt_mutex *lock); | ||
| 87 | |||
| 88 | #ifdef CONFIG_DEBUG_RT_MUTEXES | ||
| 89 | # define INIT_RT_MUTEX_DEBUG(tsk) \ | ||
| 90 | .held_list_head = LIST_HEAD_INIT(tsk.held_list_head), \ | ||
| 91 | .held_list_lock = SPIN_LOCK_UNLOCKED | ||
| 92 | #else | ||
| 93 | # define INIT_RT_MUTEX_DEBUG(tsk) | ||
| 94 | #endif | ||
| 95 | |||
| 96 | #ifdef CONFIG_RT_MUTEXES | ||
| 97 | # define INIT_RT_MUTEXES(tsk) \ | ||
| 98 | .pi_waiters = PLIST_HEAD_INIT(tsk.pi_waiters, tsk.pi_lock), \ | ||
| 99 | INIT_RT_MUTEX_DEBUG(tsk) | ||
| 100 | #else | ||
| 101 | # define INIT_RT_MUTEXES(tsk) | ||
| 102 | #endif | ||
| 103 | |||
| 104 | #endif | ||
diff --git a/include/linux/sched.h b/include/linux/sched.h index 6f167645e7..6ea23c9af4 100644 --- a/include/linux/sched.h +++ b/include/linux/sched.h | |||
| @@ -73,6 +73,7 @@ struct sched_param { | |||
| 73 | #include <linux/seccomp.h> | 73 | #include <linux/seccomp.h> |
| 74 | #include <linux/rcupdate.h> | 74 | #include <linux/rcupdate.h> |
| 75 | #include <linux/futex.h> | 75 | #include <linux/futex.h> |
| 76 | #include <linux/rtmutex.h> | ||
| 76 | 77 | ||
| 77 | #include <linux/time.h> | 78 | #include <linux/time.h> |
| 78 | #include <linux/param.h> | 79 | #include <linux/param.h> |
| @@ -858,6 +859,17 @@ struct task_struct { | |||
| 858 | /* Protection of the PI data structures: */ | 859 | /* Protection of the PI data structures: */ |
| 859 | spinlock_t pi_lock; | 860 | spinlock_t pi_lock; |
| 860 | 861 | ||
| 862 | #ifdef CONFIG_RT_MUTEXES | ||
| 863 | /* PI waiters blocked on a rt_mutex held by this task */ | ||
| 864 | struct plist_head pi_waiters; | ||
| 865 | /* Deadlock detection and priority inheritance handling */ | ||
| 866 | struct rt_mutex_waiter *pi_blocked_on; | ||
| 867 | # ifdef CONFIG_DEBUG_RT_MUTEXES | ||
| 868 | spinlock_t held_list_lock; | ||
| 869 | struct list_head held_list_head; | ||
| 870 | # endif | ||
| 871 | #endif | ||
| 872 | |||
| 861 | #ifdef CONFIG_DEBUG_MUTEXES | 873 | #ifdef CONFIG_DEBUG_MUTEXES |
| 862 | /* mutex deadlock detection */ | 874 | /* mutex deadlock detection */ |
| 863 | struct mutex_waiter *blocked_on; | 875 | struct mutex_waiter *blocked_on; |
diff --git a/include/linux/sysctl.h b/include/linux/sysctl.h index bee12a7a05..46e4d8f277 100644 --- a/include/linux/sysctl.h +++ b/include/linux/sysctl.h | |||
| @@ -149,6 +149,7 @@ enum | |||
| 149 | KERN_ACPI_VIDEO_FLAGS=71, /* int: flags for setting up video after ACPI sleep */ | 149 | KERN_ACPI_VIDEO_FLAGS=71, /* int: flags for setting up video after ACPI sleep */ |
| 150 | KERN_IA64_UNALIGNED=72, /* int: ia64 unaligned userland trap enable */ | 150 | KERN_IA64_UNALIGNED=72, /* int: ia64 unaligned userland trap enable */ |
| 151 | KERN_COMPAT_LOG=73, /* int: print compat layer messages */ | 151 | KERN_COMPAT_LOG=73, /* int: print compat layer messages */ |
| 152 | KERN_MAX_LOCK_DEPTH=74, | ||
| 152 | }; | 153 | }; |
| 153 | 154 | ||
| 154 | 155 | ||
