Home
last modified time | relevance | path

Searched refs:per_event (Results 1 – 8 of 8) sorted by relevance

/arch/s390/kernel/
Duprobes.c101 if (check_per_event(current->thread.per_event.cause, in arch_uprobe_post_xol()
104 current->thread.per_event.address = utask->vaddr; in arch_uprobe_post_xol()
140 current->thread.per_event.address = current->utask->vaddr; in arch_uprobe_abort_xol()
260 current->thread.per_event.address = regs->psw.addr; in sim_stor_event()
261 current->thread.per_event.cause = PER_EVENT_STORE >> 16; in sim_stor_event()
Dprocess.c100 memset(&p->thread.per_event, 0, sizeof(p->thread.per_event)); in copy_thread_tls()
Dasm-offsets.c39 OFFSET(__THREAD_per_cause, thread_struct, per_event.cause); in main()
40 OFFSET(__THREAD_per_address, thread_struct, per_event.address); in main()
41 OFFSET(__THREAD_per_paid, thread_struct, per_event.paid); in main()
Dptrace.c141 memset(&task->thread.per_event, 0, sizeof(task->thread.per_event)); in ptrace_disable()
179 child->thread.per_event.cause << (BITS_PER_LONG - 16); in __peek_user_per()
182 return child->thread.per_event.address; in __peek_user_per()
186 child->thread.per_event.paid << (BITS_PER_LONG - 8); in __peek_user_per()
563 return (__u32) child->thread.per_event.cause << 16; in __peek_user_per_compat()
566 return (__u32) child->thread.per_event.address; in __peek_user_per_compat()
569 return (__u32) child->thread.per_event.paid << 24; in __peek_user_per_compat()
Dtraps.c93 (void __force __user *) current->thread.per_event.address; in do_per_trap()
/arch/s390/include/asm/
Dprocessor.h134 struct per_event per_event; /* Cause of the last PER trap */ member
Dptrace.h97 struct per_event { struct
/arch/s390/kvm/
Dintercept.c232 #define per_event(vcpu) (vcpu->arch.sie_block->iprcc & PGM_PER) macro
241 if (guestdbg_enabled(vcpu) && per_event(vcpu)) { in handle_prog()