Lines Matching full:saved
102 struct kprobe *saved = this_cpu_ptr(&saved_next_opcode); in arch_remove_kprobe() local
104 if (saved->addr) { in arch_remove_kprobe()
106 arch_disarm_kprobe(saved); in arch_remove_kprobe()
108 saved->addr = NULL; in arch_remove_kprobe()
109 saved->opcode = 0; in arch_remove_kprobe()
111 saved = this_cpu_ptr(&saved_next_opcode2); in arch_remove_kprobe()
112 if (saved->addr) { in arch_remove_kprobe()
113 arch_disarm_kprobe(saved); in arch_remove_kprobe()
115 saved->addr = NULL; in arch_remove_kprobe()
116 saved->opcode = 0; in arch_remove_kprobe()
346 /* Restore back the original saved kprobes variables and continue. */ in post_kprobe_handler()