cregit-Linux how code gets into the kernel

Release 4.15 kernel/locking/mutex-debug.c

Directory: kernel/locking
/*
 * kernel/mutex-debug.c
 *
 * Debugging code for mutexes
 *
 * Started by Ingo Molnar:
 *
 *  Copyright (C) 2004, 2005, 2006 Red Hat, Inc., Ingo Molnar <mingo@redhat.com>
 *
 * lock debugging, locking tree, deadlock detection started by:
 *
 *  Copyright (C) 2004, LynuxWorks, Inc., Igor Manyilov, Bill Huey
 *  Released under the General Public License (GPL).
 */
#include <linux/mutex.h>
#include <linux/delay.h>
#include <linux/export.h>
#include <linux/poison.h>
#include <linux/sched.h>
#include <linux/spinlock.h>
#include <linux/kallsyms.h>
#include <linux/interrupt.h>
#include <linux/debug_locks.h>

#include "mutex-debug.h"

/*
 * Must be called with lock->wait_lock held.
 */

void debug_mutex_lock_common(struct mutex *lock, struct mutex_waiter *waiter) { memset(waiter, MUTEX_DEBUG_INIT, sizeof(*waiter)); waiter->magic = waiter; INIT_LIST_HEAD(&waiter->list); }

Contributors

PersonTokensPropCommitsCommitProp
Ingo Molnar4197.62%266.67%
Randy Dunlap12.38%133.33%
Total42100.00%3100.00%


void debug_mutex_wake_waiter(struct mutex *lock, struct mutex_waiter *waiter) { SMP_DEBUG_LOCKS_WARN_ON(!spin_is_locked(&lock->wait_lock)); DEBUG_LOCKS_WARN_ON(list_empty(&lock->wait_list)); DEBUG_LOCKS_WARN_ON(waiter->magic != waiter); DEBUG_LOCKS_WARN_ON(list_empty(&waiter->list)); }

Contributors

PersonTokensPropCommitsCommitProp
Ingo Molnar58100.00%2100.00%
Total58100.00%2100.00%


void debug_mutex_free_waiter(struct mutex_waiter *waiter) { DEBUG_LOCKS_WARN_ON(!list_empty(&waiter->list)); memset(waiter, MUTEX_DEBUG_FREE, sizeof(*waiter)); }

Contributors

PersonTokensPropCommitsCommitProp
Ingo Molnar3497.14%266.67%
Randy Dunlap12.86%133.33%
Total35100.00%3100.00%


void debug_mutex_add_waiter(struct mutex *lock, struct mutex_waiter *waiter, struct task_struct *task) { SMP_DEBUG_LOCKS_WARN_ON(!spin_is_locked(&lock->wait_lock)); /* Mark the current thread as blocked on the lock: */ task->blocked_on = waiter; }

Contributors

PersonTokensPropCommitsCommitProp
Ingo Molnar3794.87%266.67%
Linus Torvalds25.13%133.33%
Total39100.00%3100.00%


void mutex_remove_waiter(struct mutex *lock, struct mutex_waiter *waiter, struct task_struct *task) { DEBUG_LOCKS_WARN_ON(list_empty(&waiter->list)); DEBUG_LOCKS_WARN_ON(waiter->task != task); DEBUG_LOCKS_WARN_ON(task->blocked_on != waiter); task->blocked_on = NULL; list_del_init(&waiter->list); waiter->task = NULL; }

Contributors

PersonTokensPropCommitsCommitProp
Ingo Molnar6797.10%266.67%
Linus Torvalds22.90%133.33%
Total69100.00%3100.00%


void debug_mutex_unlock(struct mutex *lock) { if (likely(debug_locks)) { DEBUG_LOCKS_WARN_ON(lock->magic != lock); DEBUG_LOCKS_WARN_ON(!lock->wait_list.prev && !lock->wait_list.next); } }

Contributors

PersonTokensPropCommitsCommitProp
Ingo Molnar4088.89%457.14%
Jeremy Kerr24.44%114.29%
Peter Zijlstra24.44%114.29%
Chris Wilson12.22%114.29%
Total45100.00%7100.00%


void debug_mutex_init(struct mutex *lock, const char *name, struct lock_class_key *key) { #ifdef CONFIG_DEBUG_LOCK_ALLOC /* * Make sure we are not reinitializing a held lock: */ debug_check_no_locks_freed((void *)lock, sizeof(*lock)); lockdep_init_map(&lock->dep_map, name, key, 0); #endif lock->magic = lock; }

Contributors

PersonTokensPropCommitsCommitProp
Ingo Molnar5691.80%360.00%
David Woodhouse34.92%120.00%
Peter Zijlstra23.28%120.00%
Total61100.00%5100.00%

/*** * mutex_destroy - mark a mutex unusable * @lock: the mutex to be destroyed * * This function marks the mutex uninitialized, and any subsequent * use of the mutex is forbidden. The mutex must not be locked when * this function is called. */
void mutex_destroy(struct mutex *lock) { DEBUG_LOCKS_WARN_ON(mutex_is_locked(lock)); lock->magic = NULL; }

Contributors

PersonTokensPropCommitsCommitProp
Ingo Molnar24100.00%2100.00%
Total24100.00%2100.00%

EXPORT_SYMBOL_GPL(mutex_destroy);

Overall Contributors

PersonTokensPropCommitsCommitProp
Ingo Molnar38894.40%535.71%
Randy Dunlap51.22%17.14%
Linus Torvalds40.97%17.14%
Peter Zijlstra40.97%214.29%
Alexey Dobriyan30.73%17.14%
David Woodhouse30.73%17.14%
Jeremy Kerr20.49%17.14%
Paul Gortmaker10.24%17.14%
Chris Wilson10.24%17.14%
Total411100.00%14100.00%
Directory: kernel/locking
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.
Created with cregit.