Skip to content
Commit 1d299bc7 authored by David S. Miller's avatar David S. Miller
Browse files

sparc: Fix handling of orig_i0 wrt. debugging when restarting syscalls.



Although we provide a proper way for a debugger to control whether
syscall restart occurs, we run into problems because orig_i0 is not
saved and restored properly.

Luckily we can solve this problem without having to make debuggers
aware of the issue.  Across system calls, several registers are
considered volatile and can be safely clobbered.

Therefore we use the pt_regs save area of one of those registers, %g2,
as a place to save and restore orig_i0.

Debuggers transparently will do the right thing because they save and
restore this register already.

Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 9ff03b39
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment