Symbol: task_exec_state
fs/exec.c
844
struct task_exec_state *exec_state __free(put_task_exec_state) = NULL;
fs/proc/base.c
1893
struct task_exec_state *exec_state;
include/linux/sched.h
87
struct task_exec_state;
include/linux/sched.h
974
struct task_exec_state __rcu *exec_state;
include/linux/sched/exec_state.h
19
extern struct task_exec_state init_task_exec_state;
include/linux/sched/exec_state.h
21
struct task_exec_state *alloc_task_exec_state(struct user_namespace *user_ns);
include/linux/sched/exec_state.h
22
void put_task_exec_state(struct task_exec_state *exec_state);
include/linux/sched/exec_state.h
23
struct task_exec_state *task_exec_state_rcu(const struct task_struct *tsk);
include/linux/sched/exec_state.h
24
struct task_exec_state *task_exec_state_replace(struct task_struct *tsk,
include/linux/sched/exec_state.h
25
struct task_exec_state *exec_state);
include/linux/sched/exec_state.h
29
DEFINE_FREE(put_task_exec_state, struct task_exec_state *, put_task_exec_state(_T))
init/init_task.c
62
struct task_exec_state init_task_exec_state = {
kernel/exec_state.c
106
struct task_exec_state *exec_state;
kernel/exec_state.c
116
sizeof(struct task_exec_state), 0,
kernel/exec_state.c
17
struct task_exec_state *exec_state = container_of(rcu, struct task_exec_state, rcu);
kernel/exec_state.c
23
void put_task_exec_state(struct task_exec_state *exec_state)
kernel/exec_state.c
29
struct task_exec_state *alloc_task_exec_state(struct user_namespace *user_ns)
kernel/exec_state.c
31
struct task_exec_state *exec_state;
kernel/exec_state.c
42
struct task_exec_state *task_exec_state_rcu(const struct task_struct *tsk)
kernel/exec_state.c
44
struct task_exec_state *exec_state;
kernel/exec_state.c
52
struct task_exec_state *task_exec_state_replace(struct task_struct *tsk,
kernel/exec_state.c
53
struct task_exec_state *exec_state)
kernel/exec_state.c
73
struct task_exec_state *src, *dst;
kernel/exec_state.c
92
struct task_exec_state *exec_state;
kernel/fork.c
1607
struct task_exec_state *exec_state;
kernel/ptrace.c
295
const struct task_exec_state *exec_state;
kernel/ptrace.c
54
const struct task_exec_state *es;