diff options
Diffstat (limited to 'kernel/locking/mutex-debug.h')
| -rw-r--r-- | kernel/locking/mutex-debug.h | 10 | 
1 files changed, 0 insertions, 10 deletions
diff --git a/kernel/locking/mutex-debug.h b/kernel/locking/mutex-debug.h index 57a871ae3c81..a459faa48987 100644 --- a/kernel/locking/mutex-debug.h +++ b/kernel/locking/mutex-debug.h @@ -27,16 +27,6 @@ extern void debug_mutex_unlock(struct mutex *lock);  extern void debug_mutex_init(struct mutex *lock, const char *name,  			     struct lock_class_key *key); -static inline void mutex_set_owner(struct mutex *lock) -{ -	WRITE_ONCE(lock->owner, current); -} - -static inline void mutex_clear_owner(struct mutex *lock) -{ -	WRITE_ONCE(lock->owner, NULL); -} -  #define spin_lock_mutex(lock, flags)			\  	do {						\  		struct mutex *l = container_of(lock, struct mutex, wait_lock); \  |