Lines Matching full:saved
97 struct kprobe *saved = this_cpu_ptr(&saved_next_opcode); in arch_remove_kprobe() local
99 if (saved->addr) { in arch_remove_kprobe()
101 arch_disarm_kprobe(saved); in arch_remove_kprobe()
103 saved->addr = NULL; in arch_remove_kprobe()
104 saved->opcode = 0; in arch_remove_kprobe()
106 saved = this_cpu_ptr(&saved_next_opcode2); in arch_remove_kprobe()
107 if (saved->addr) { in arch_remove_kprobe()
108 arch_disarm_kprobe(saved); in arch_remove_kprobe()
110 saved->addr = NULL; in arch_remove_kprobe()
111 saved->opcode = 0; in arch_remove_kprobe()
341 /* Restore back the original saved kprobes variables and continue. */ in post_kprobe_handler()