On Fri, 12 Feb 2021, Thomas Bogendoerfer wrote: > > IMHO ptrace single step is for CPUs supporting single stepping and not > > for emulating it in the kernel. > > I've checked other arch how they implement single step, and looks like > I'm wrong. So I'm ok with applying your patch. Can you resend it again, > so I'll get the latest version in patchwork ? Huh? How is that supposed to work? Skimming over the code it hardcodes the breakpoint instruction, which is ISA-dependent and relies on branches or jumps to have a delay slot, which is not universally true. The kernel does not know all the exotic branches the MIPS ISA has (BC1ANY4F anyone?) either and IMHO should not. This is broken and belongs to the userland anyway. See how complex the handling is in GDB, specifically `mips16_next_pc', `micromips_next_pc' and `mips32_next_pc' in gdb/mips-tdep.c. We do have branch emulation code, but it was intended for a different purpose and is therefore not complete enough for single-stepping emulation. And I find it regrettable that the kernel has become so bloated here and attempts are made to make it even more bloated. All under the original excuse made by FP emulation code, which also should have been made in the userland. It all really does not belong to the kernel with its elevated privilege. It does not require the privilege. We do need a ptrace(2) request to stop on signal handler invocation though, which is something we have been missing and never got to implementing. Maciej