Home
last modified time | relevance | path

Searched refs:READ_ONCE_NOCHECK (Results 1 – 11 of 11) sorted by relevance

/Linux-v5.4/arch/s390/kernel/
Dunwind_bc.c53 sp = READ_ONCE_NOCHECK(regs->gprs[15]); in unwind_next_frame()
60 ip = READ_ONCE_NOCHECK(sf->gprs[8]); in unwind_next_frame()
65 sp = READ_ONCE_NOCHECK(sf->back_chain); in unwind_next_frame()
73 ip = READ_ONCE_NOCHECK(sf->gprs[8]); in unwind_next_frame()
81 if (READ_ONCE_NOCHECK(regs->psw.mask) & PSW_MASK_PSTATE) in unwind_next_frame()
83 ip = READ_ONCE_NOCHECK(regs->psw.addr); in unwind_next_frame()
140 ip = READ_ONCE_NOCHECK(regs->psw.addr); in __unwind_start()
145 ip = READ_ONCE_NOCHECK(sf->gprs[8]); in __unwind_start()
Dprocess.c199 sf = (struct stack_frame *)READ_ONCE_NOCHECK(sf->back_chain); in get_wchan()
204 return_address = READ_ONCE_NOCHECK(sf->gprs[8]); in get_wchan()
/Linux-v5.4/arch/x86/kernel/
Dunwind_guess.c16 addr = READ_ONCE_NOCHECK(*state->sp); in unwind_get_return_address()
37 unsigned long addr = READ_ONCE_NOCHECK(*state->sp); in unwind_next_frame()
Dprocess.c849 fp = READ_ONCE_NOCHECK(((struct inactive_task_frame *)sp)->bp); in get_wchan()
853 ip = READ_ONCE_NOCHECK(*(unsigned long *)(fp + sizeof(unsigned long))); in get_wchan()
858 fp = READ_ONCE_NOCHECK(*(unsigned long *)fp); in get_wchan()
Dunwind_orc.c348 *val = READ_ONCE_NOCHECK(*(unsigned long *)addr); in deref_stack_reg()
618 state->bp = READ_ONCE_NOCHECK(frame->bp); in __unwind_start()
619 state->ip = READ_ONCE_NOCHECK(frame->ret_addr); in __unwind_start()
Ddumpstack.c228 unsigned long addr = READ_ONCE_NOCHECK(*stack); in show_trace_log_lvl()
Dunwind_frame.c55 word = READ_ONCE_NOCHECK(*sp); in unwind_dump()
/Linux-v5.4/arch/arm64/kernel/
Dstacktrace.c82 frame->fp = READ_ONCE_NOCHECK(*(unsigned long *)(fp)); in unwind_frame()
83 frame->pc = READ_ONCE_NOCHECK(*(unsigned long *)(fp + 8)); in unwind_frame()
/Linux-v5.4/arch/x86/include/asm/
Dunwind.h113 val = READ_ONCE_NOCHECK(x); \
/Linux-v5.4/include/linux/
Dcompiler.h275 #define READ_ONCE_NOCHECK(x) __READ_ONCE(x, 0) macro
/Linux-v5.4/kernel/trace/
Dtrace_stack.c234 if ((READ_ONCE_NOCHECK(*p)) == stack_dump_trace[i]) { in check_stack()