/kernel/linux/linux-5.10/arch/x86/include/asm/ |
H A D | current.h | 11 DECLARE_PER_CPU(struct task_struct *, current_task); 15 return this_cpu_read_stable(current_task); in get_current()
|
/kernel/linux/linux-6.6/arch/x86/include/asm/ |
H A D | current.h | 17 struct task_struct *current_task; member 41 return this_cpu_read_stable(pcpu_hot.current_task); in get_current()
|
/kernel/linux/linux-5.10/arch/s390/include/asm/ |
H A D | current.h | 17 #define current ((struct task_struct *const)S390_lowcore.current_task)
|
H A D | lowcore.h | 103 __u64 current_task; /* 0x0340 */ member
|
/kernel/linux/linux-6.6/arch/s390/include/asm/ |
H A D | current.h | 17 #define current ((struct task_struct *const)S390_lowcore.current_task)
|
H A D | lowcore.h | 127 __u64 current_task; /* 0x0340 */ member
|
/kernel/linux/linux-6.6/scripts/gdb/linux/ |
H A D | cpus.py | 172 var_ptr = gdb.parse_and_eval("&pcpu_hot.current_task") 177 current_task = current_task_addr.cast(task_ptr_type) 178 return current_task.dereference()
|
/kernel/linux/linux-5.10/drivers/gpu/drm/lima/ |
H A D | lima_sched.h | 58 struct lima_sched_task *current_task; member
|
H A D | lima_sched.c | 250 pipe->current_task = task; in lima_sched_run_job() 444 pipe->current_task = NULL; in lima_sched_timedout_job() 518 struct lima_sched_task *task = pipe->current_task; in lima_sched_pipe_task_done()
|
H A D | lima_pp.c | 70 if (!pipe->current_task) in lima_pp_bcast_irq_handler() 73 frame = pipe->current_task->frame; in lima_pp_bcast_irq_handler() 147 struct drm_lima_m450_pp_frame *frame = pipe->current_task->frame; in lima_pp_soft_reset_async_wait()
|
H A D | lima_gp.c | 25 struct lima_sched_task *task = pipe->current_task; in lima_gp_irq_handler() 218 struct lima_sched_task *task = pipe->current_task; in lima_gp_task_recover()
|
/kernel/linux/linux-6.6/drivers/gpu/drm/lima/ |
H A D | lima_sched.h | 55 struct lima_sched_task *current_task; member
|
H A D | lima_sched.c | 231 pipe->current_task = task; in lima_sched_run_job() 428 pipe->current_task = NULL; in lima_sched_timedout_job() 504 struct lima_sched_task *task = pipe->current_task; in lima_sched_pipe_task_done()
|
H A D | lima_pp.c | 70 if (!pipe->current_task) in lima_pp_bcast_irq_handler() 73 frame = pipe->current_task->frame; in lima_pp_bcast_irq_handler() 147 struct drm_lima_m450_pp_frame *frame = pipe->current_task->frame; in lima_pp_soft_reset_async_wait()
|
H A D | lima_gp.c | 25 struct lima_sched_task *task = pipe->current_task; in lima_gp_irq_handler() 218 struct lima_sched_task *task = pipe->current_task; in lima_gp_task_recover()
|
/kernel/linux/linux-5.10/arch/x86/kernel/ |
H A D | process_32.c | 212 this_cpu_write(current_task, next_p); in __switch_to()
|
H A D | process_64.c | 593 this_cpu_write(current_task, next_p); in __switch_to()
|
/kernel/linux/linux-6.6/arch/x86/kernel/ |
H A D | asm-offsets.c | 118 OFFSET(X86_current_task, pcpu_hot, current_task); in common()
|
H A D | process_32.c | 210 raw_cpu_write(pcpu_hot.current_task, next_p); in __switch_to()
|
H A D | process_64.c | 623 raw_cpu_write(pcpu_hot.current_task, next_p); in __switch_to()
|
/kernel/linux/linux-6.6/kernel/bpf/ |
H A D | cgroup.c | 1902 .current_task = current, in __cgroup_bpf_run_filter_getsockopt() 1986 .current_task = current, in __cgroup_bpf_run_filter_getsockopt_kern() 2467 *insn++ = BPF_LDX_MEM(BPF_FIELD_SIZEOF(struct bpf_sockopt_kern, current_task), in cg_sockopt_convert_ctx_access() 2469 offsetof(struct bpf_sockopt_kern, current_task)); in cg_sockopt_convert_ctx_access() 2481 *insn++ = BPF_LDX_MEM(BPF_FIELD_SIZEOF(struct bpf_sockopt_kern, current_task), in cg_sockopt_convert_ctx_access() 2483 offsetof(struct bpf_sockopt_kern, current_task)); in cg_sockopt_convert_ctx_access()
|
/kernel/linux/linux-5.10/arch/s390/kernel/ |
H A D | asm-offsets.c | 133 OFFSET(__LC_CURRENT, lowcore, current_task); in main()
|
H A D | setup.c | 405 lc->current_task = (unsigned long)&init_task; in setup_lowcore_dat_off()
|
/kernel/linux/linux-6.6/arch/s390/kernel/ |
H A D | asm-offsets.c | 127 OFFSET(__LC_CURRENT, lowcore, current_task); in main()
|
/kernel/linux/linux-5.10/arch/x86/kernel/cpu/ |
H A D | common.c | 1914 * The following percpu variables are hot. Align current_task to 1917 DEFINE_PER_CPU(struct task_struct *, current_task) ____cacheline_aligned = 1919 EXPORT_PER_CPU_SYMBOL(current_task); variable 1960 DEFINE_PER_CPU(struct task_struct *, current_task) = &init_task; 1961 EXPORT_PER_CPU_SYMBOL(current_task); variable
|