Searched refs:per_event (Results 1 – 8 of 8) sorted by relevance
/linux-4.1.27/arch/s390/kernel/ |
D | uprobes.c | 98 if (check_per_event(current->thread.per_event.cause, in arch_uprobe_post_xol() 101 current->thread.per_event.address = utask->vaddr; in arch_uprobe_post_xol() 137 current->thread.per_event.address = current->utask->vaddr; in arch_uprobe_abort_xol() 248 current->thread.per_event.address = regs->psw.addr; in sim_stor_event() 249 current->thread.per_event.cause = PER_EVENT_STORE >> 16; in sim_stor_event()
|
D | process.c | 106 memset(&p->thread.per_event, 0, sizeof(p->thread.per_event)); in copy_thread()
|
D | asm-offsets.c | 32 DEFINE(__THREAD_per_cause, offsetof(struct task_struct, thread.per_event.cause)); in main() 33 DEFINE(__THREAD_per_address, offsetof(struct task_struct, thread.per_event.address)); in main() 34 DEFINE(__THREAD_per_paid, offsetof(struct task_struct, thread.per_event.paid)); in main()
|
D | ptrace.c | 139 memset(&task->thread.per_event, 0, sizeof(task->thread.per_event)); in ptrace_disable() 177 child->thread.per_event.cause << (BITS_PER_LONG - 16); in __peek_user_per() 180 return child->thread.per_event.address; in __peek_user_per() 184 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()
|
D | traps.c | 107 (void __force __user *) current->thread.per_event.address; in do_per_trap()
|
/linux-4.1.27/arch/s390/include/asm/ |
D | processor.h | 95 struct per_event per_event; /* Cause of the last PER trap */ member
|
D | ptrace.h | 93 struct per_event { struct
|
/linux-4.1.27/arch/s390/kvm/ |
D | intercept.c | 210 #define per_event(vcpu) (vcpu->arch.sie_block->iprcc & PGM_PER) macro 220 if (guestdbg_enabled(vcpu) && per_event(vcpu)) { in handle_prog()
|