Skip to content

Commit

Permalink
[PATCH] uml: register handling formatting fixes
Browse files Browse the repository at this point in the history
Formatting fixes in the register handling code.

Signed-off-by: Jeff Dike <[email protected]>
Cc: Paolo 'Blaisorblade' Giarrusso <[email protected]>
Signed-off-by: Andrew Morton <[email protected]>
Signed-off-by: Linus Torvalds <[email protected]>
  • Loading branch information
cfd-36 authored and Linus Torvalds committed Feb 11, 2007
1 parent c538b39 commit 6c59e2f
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 10 deletions.
14 changes: 7 additions & 7 deletions arch/um/os-Linux/sys-i386/registers.c
Original file line number Diff line number Diff line change
Expand Up @@ -34,27 +34,27 @@ void init_thread_registers(union uml_pt_regs *to)
int save_fp_registers(int pid, unsigned long *fp_regs)
{
if(ptrace(PTRACE_GETFPREGS, pid, 0, fp_regs) < 0)
return(-errno);
return(0);
return -errno;
return 0;
}

int restore_fp_registers(int pid, unsigned long *fp_regs)
{
if(ptrace(PTRACE_SETFPREGS, pid, 0, fp_regs) < 0)
return(-errno);
return(0);
return -errno;
return 0;
}

static int move_registers(int pid, int int_op, union uml_pt_regs *regs,
int fp_op, unsigned long *fp_regs)
{
if(ptrace(int_op, pid, 0, regs->skas.regs) < 0)
return(-errno);
return -errno;

if(ptrace(fp_op, pid, 0, fp_regs) < 0)
return(-errno);
return -errno;

return(0);
return 0;
}

void save_registers(int pid, union uml_pt_regs *regs)
Expand Down
6 changes: 3 additions & 3 deletions arch/um/os-Linux/sys-x86_64/registers.c
Original file line number Diff line number Diff line change
Expand Up @@ -27,12 +27,12 @@ static int move_registers(int pid, int int_op, int fp_op,
union uml_pt_regs *regs)
{
if(ptrace(int_op, pid, 0, regs->skas.regs) < 0)
return(-errno);
return -errno;

if(ptrace(fp_op, pid, 0, regs->skas.fp) < 0)
return(-errno);
return -errno;

return(0);
return 0;
}

void save_registers(int pid, union uml_pt_regs *regs)
Expand Down

0 comments on commit 6c59e2f

Please sign in to comment.