cregit-Linux how code gets into the kernel

Release 4.15 kernel/locking/rtmutex_common.h

Directory: kernel/locking
/* SPDX-License-Identifier: GPL-2.0 */
/*
 * RT Mutexes: blocking mutual exclusion locks with PI support
 *
 * started by Ingo Molnar and Thomas Gleixner:
 *
 *  Copyright (C) 2004-2006 Red Hat, Inc., Ingo Molnar <mingo@redhat.com>
 *  Copyright (C) 2006, Timesys Corp., Thomas Gleixner <tglx@timesys.com>
 *
 * This file contains the private data structure and API definitions.
 */

#ifndef __KERNEL_RTMUTEX_COMMON_H

#define __KERNEL_RTMUTEX_COMMON_H

#include <linux/rtmutex.h>
#include <linux/sched/wake_q.h>

/*
 * This is the control structure for tasks blocked on a rt_mutex,
 * which is allocated on the kernel stack on of the blocked task.
 *
 * @tree_entry:         pi node to enqueue into the mutex waiters tree
 * @pi_tree_entry:      pi node to enqueue into the mutex owner waiters tree
 * @task:               task reference to the blocked task
 */

struct rt_mutex_waiter {
	
struct rb_node          tree_entry;
	
struct rb_node          pi_tree_entry;
	
struct task_struct	*task;
	
struct rt_mutex		*lock;
#ifdef CONFIG_DEBUG_RT_MUTEXES
	
unsigned long		ip;
	
struct pid		*deadlock_task_pid;
	
struct rt_mutex		*deadlock_lock;
#endif
	
int prio;
	
u64 deadline;
};

/*
 * Various helpers to access the waiters-tree:
 */

#ifdef CONFIG_RT_MUTEXES


static inline int rt_mutex_has_waiters(struct rt_mutex *lock) { return !RB_EMPTY_ROOT(&lock->waiters.rb_root); }

Contributors

PersonTokensPropCommitsCommitProp
Ingo Molnar2083.33%133.33%
Peter Zijlstra28.33%133.33%
Davidlohr Bueso A28.33%133.33%
Total24100.00%3100.00%


static inline struct rt_mutex_waiter * rt_mutex_top_waiter(struct rt_mutex *lock) { struct rt_mutex_waiter *w; w = rb_entry(lock->waiters.rb_leftmost, struct rt_mutex_waiter, tree_entry); BUG_ON(w->lock != lock); return w; }

Contributors

PersonTokensPropCommitsCommitProp
Ingo Molnar4289.36%133.33%
Davidlohr Bueso A36.38%133.33%
Peter Zijlstra24.26%133.33%
Total47100.00%3100.00%


static inline int task_has_pi_waiters(struct task_struct *p) { return !RB_EMPTY_ROOT(&p->pi_waiters.rb_root); }

Contributors

PersonTokensPropCommitsCommitProp
Ingo Molnar2187.50%133.33%
Davidlohr Bueso A28.33%133.33%
Peter Zijlstra14.17%133.33%
Total24100.00%3100.00%


static inline struct rt_mutex_waiter * task_top_pi_waiter(struct task_struct *p) { return rb_entry(p->pi_waiters.rb_leftmost, struct rt_mutex_waiter, pi_tree_entry); }

Contributors

PersonTokensPropCommitsCommitProp
Ingo Molnar2482.76%133.33%
Davidlohr Bueso A310.34%133.33%
Peter Zijlstra26.90%133.33%
Total29100.00%3100.00%

#else
static inline int rt_mutex_has_waiters(struct rt_mutex *lock) { return false; }

Contributors

PersonTokensPropCommitsCommitProp
Nico Pitre15100.00%1100.00%
Total15100.00%1100.00%


static inline struct rt_mutex_waiter * rt_mutex_top_waiter(struct rt_mutex *lock) { return NULL; }

Contributors

PersonTokensPropCommitsCommitProp
Nico Pitre17100.00%1100.00%
Total17100.00%1100.00%


static inline int task_has_pi_waiters(struct task_struct *p) { return false; }

Contributors

PersonTokensPropCommitsCommitProp
Nico Pitre15100.00%1100.00%
Total15100.00%1100.00%


static inline struct rt_mutex_waiter * task_top_pi_waiter(struct task_struct *p) { return NULL; }

Contributors

PersonTokensPropCommitsCommitProp
Nico Pitre17100.00%1100.00%
Total17100.00%1100.00%

#endif /* * lock->owner state tracking: */ #define RT_MUTEX_HAS_WAITERS 1UL
static inline struct task_struct *rt_mutex_owner(struct rt_mutex *lock) { unsigned long owner = (unsigned long) READ_ONCE(lock->owner); return (struct task_struct *) (owner & ~RT_MUTEX_HAS_WAITERS); }

Contributors

PersonTokensPropCommitsCommitProp
Ingo Molnar2661.90%133.33%
Thomas Gleixner1638.10%266.67%
Total42100.00%3100.00%

/* * Constants for rt mutex functions which have a selectable deadlock * detection. * * RT_MUTEX_MIN_CHAINWALK: Stops the lock chain walk when there are * no further PI adjustments to be made. * * RT_MUTEX_FULL_CHAINWALK: Invoke deadlock detection with a full * walk of the lock chain. */ enum rtmutex_chainwalk { RT_MUTEX_MIN_CHAINWALK, RT_MUTEX_FULL_CHAINWALK, }; /* * PI-futex support (proxy locking functions, etc.): */ extern struct task_struct *rt_mutex_next_owner(struct rt_mutex *lock); extern void rt_mutex_init_proxy_locked(struct rt_mutex *lock, struct task_struct *proxy_owner); extern void rt_mutex_proxy_unlock(struct rt_mutex *lock, struct task_struct *proxy_owner); extern void rt_mutex_init_waiter(struct rt_mutex_waiter *waiter); extern int __rt_mutex_start_proxy_lock(struct rt_mutex *lock, struct rt_mutex_waiter *waiter, struct task_struct *task); extern int rt_mutex_start_proxy_lock(struct rt_mutex *lock, struct rt_mutex_waiter *waiter, struct task_struct *task); extern int rt_mutex_wait_proxy_lock(struct rt_mutex *lock, struct hrtimer_sleeper *to, struct rt_mutex_waiter *waiter); extern bool rt_mutex_cleanup_proxy_lock(struct rt_mutex *lock, struct rt_mutex_waiter *waiter); extern int rt_mutex_futex_trylock(struct rt_mutex *l); extern int __rt_mutex_futex_trylock(struct rt_mutex *l); extern void rt_mutex_futex_unlock(struct rt_mutex *lock); extern bool __rt_mutex_futex_unlock(struct rt_mutex *lock, struct wake_q_head *wqh); extern void rt_mutex_postunlock(struct wake_q_head *wake_q); #ifdef CONFIG_DEBUG_RT_MUTEXES # include "rtmutex-debug.h" #else # include "rtmutex.h" #endif #endif

Overall Contributors

PersonTokensPropCommitsCommitProp
Ingo Molnar23044.83%312.50%
Peter Zijlstra9217.93%729.17%
Nico Pitre7113.84%14.17%
Thomas Gleixner417.99%520.83%
Darren Hart387.41%14.17%
Sebastian Andrzej Siewior203.90%14.17%
Davidlohr Bueso A101.95%14.17%
Dario Faggioli30.58%14.17%
Xunlei Pang30.58%14.17%
Pavel Emelyanov30.58%14.17%
Lai Jiangshan10.19%14.17%
Greg Kroah-Hartman10.19%14.17%
Total513100.00%24100.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.