Searched refs:current (Results 1 - 25 of 1988) sorted by relevance

1234567891011>>

/linux-master/tools/testing/selftests/arm64/signal/
H A Dtest_signals.c15 struct tdescr *current = &tde; variable in typeref:struct:tdescr
19 ksft_print_msg("%s :: %s\n", current->name, current->descr);
20 if (test_setup(current) && test_init(current)) {
21 test_run(current);
22 test_cleanup(current);
24 test_result(current);
26 return current->result;
/linux-master/arch/microblaze/include/asm/
H A Dcurrent.h12 * Register used to hold the current task pointer while in the kernel.
19 * Dedicate r31 to keeping the current task pointer
21 register struct task_struct *current asm("r31");
23 # define get_current() current
/linux-master/arch/m68k/include/asm/
H A Dflat.h13 if (current->mm) \
14 (regs)->d5 = current->mm->start_data; \
H A Dcurrent.h7 register struct task_struct *current __asm__("%a2");
14 * current and lose _current_task.
25 #define current get_current() macro
/linux-master/arch/xtensa/include/asm/
H A Dstackprotector.h29 current->stack_canary = canary;
30 __stack_chk_guard = current->stack_canary;
/linux-master/arch/sh/include/asm/
H A Dstackprotector.h17 current->stack_canary = canary;
18 __stack_chk_guard = current->stack_canary;
/linux-master/arch/csky/include/asm/
H A Dstackprotector.h17 current->stack_canary = canary;
18 __stack_chk_guard = current->stack_canary;
/linux-master/arch/mips/include/asm/
H A Dstackprotector.h30 current->stack_canary = canary;
31 __stack_chk_guard = current->stack_canary;
/linux-master/arch/arc/include/asm/
H A Dcurrent.h17 #define current (curr_arc) macro
20 #include <asm-generic/current.h>
/linux-master/arch/powerpc/kernel/
H A Dswsusp.c10 #include <asm/current.h>
20 flush_all_to_thread(current);
31 switch_mmu_context(current->active_mm, current->active_mm, NULL);
/linux-master/arch/arm64/include/asm/
H A Dstackprotector.h31 current->stack_canary = canary;
33 __stack_chk_guard = current->stack_canary;
35 ptrauth_thread_init_kernel(current);
36 ptrauth_thread_switch_kernel(current);
/linux-master/arch/sparc/include/asm/
H A Dcurrent.h2 /* include/asm/current.h
8 * Derived from "include/asm-s390/current.h" by
10 * Derived from "include/asm-i386/current.h"
18 register struct task_struct *current asm("g4");
32 #define current __get_current() macro
/linux-master/arch/arm/include/asm/
H A Dstackprotector.h32 current->stack_canary = canary;
34 __stack_chk_guard = current->stack_canary;
/linux-master/arch/riscv/include/asm/
H A Dstackprotector.h18 current->stack_canary = canary;
20 __stack_chk_guard = current->stack_canary;
/linux-master/arch/powerpc/include/asm/
H A Dstackprotector.h11 #include <asm/current.h>
24 current->stack_canary = canary;
/linux-master/arch/s390/include/asm/
H A Dcurrent.h7 * Derived from "include/asm-i386/current.h"
17 #define current ((struct task_struct *const)S390_lowcore.current_task) macro
/linux-master/arch/sparc/kernel/
H A Dsigutil_32.c19 if (test_tsk_thread_flag(current, TIF_USEDFPU)) {
21 fpsave(&current->thread.float_regs[0], &current->thread.fsr,
22 &current->thread.fpqueue[0], &current->thread.fpqdepth);
24 clear_tsk_thread_flag(current, TIF_USEDFPU);
27 if (current == last_task_used_math) {
29 fpsave(&current->thread.float_regs[0], &current->thread.fsr,
30 &current
[all...]
/linux-master/tools/testing/selftests/bpf/progs/
H A Dtest_task_pt_regs.c20 struct task_struct *current; local
23 current = bpf_get_current_task_btf();
24 regs = (struct pt_regs *) bpf_task_pt_regs(current);
H A Drcu_tasks_trace_gp.c18 struct task_struct *current; local
21 current = bpf_get_current_task_btf();
22 v = bpf_task_storage_get(&task_ls_map, current, NULL, BPF_LOCAL_STORAGE_GET_F_CREATE);
26 return bpf_task_storage_delete(&task_ls_map, current);
/linux-master/arch/um/drivers/
H A Dmconsole_kern.h27 #define CONFIG_CHUNK(str, size, current, chunk, end) \
29 current += strlen(chunk); \
30 if(current >= size) \
37 current++; \
/linux-master/arch/parisc/include/asm/
H A Dcurrent.h17 #define current get_current() macro
/linux-master/arch/loongarch/include/asm/
H A Dentry-common.h10 return !(((unsigned long)(current->stack) ^ current_stack_pointer) & ~(THREAD_SIZE - 1));
/linux-master/include/asm-generic/
H A Dcurrent.h9 #define current get_current() macro
/linux-master/include/linux/
H A Dresume_user_mode.h30 * @regs: user-mode registers of @current task
49 if (unlikely(task_work_pending(current)))
53 if (unlikely(current->cached_requested_key)) {
54 key_put(current->cached_requested_key);
55 current->cached_requested_key = NULL;
/linux-master/arch/mips/power/
H A Dcpu.c22 save_fp(current);
24 save_dsp(current);
32 restore_fp(current);
34 restore_dsp(current);

Completed in 289 milliseconds

1234567891011>>