Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 47709
b: refs/heads/master
c: 6bfe966
h: refs/heads/master
i:
  47707: b77fba1
v: v3
  • Loading branch information
Franck Bui-Huu authored and Ralf Baechle committed Feb 10, 2007
1 parent 225c250 commit 28f47f1
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 5 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 9432a9ba96ea8d007341c4e7859d393bfd357c5a
refs/heads/master: 6bfe96616062acb75c2460f01acc79236a8ba0e8
1 change: 0 additions & 1 deletion trunk/arch/mips/kernel/asm-offsets.c
Original file line number Diff line number Diff line change
Expand Up @@ -249,7 +249,6 @@ void output_sc_defines(void)
offset("#define SC_MDHI ", struct sigcontext, sc_mdhi);
offset("#define SC_MDLO ", struct sigcontext, sc_mdlo);
offset("#define SC_PC ", struct sigcontext, sc_pc);
offset("#define SC_STATUS ", struct sigcontext, sc_status);
offset("#define SC_FPC_CSR ", struct sigcontext, sc_fpc_csr);
offset("#define SC_FPC_EIR ", struct sigcontext, sc_fpc_eir);
offset("#define SC_HI1 ", struct sigcontext, sc_hi1);
Expand Down
1 change: 0 additions & 1 deletion trunk/arch/mips/kernel/signal32.c
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,6 @@ static int setup_sigcontext32(struct pt_regs *regs,
int i;

err |= __put_user(regs->cp0_epc, &sc->sc_pc);
err |= __put_user(regs->cp0_status, &sc->sc_status);

err |= __put_user(0, &sc->sc_regs[0]);
for (i = 1; i < 32; i++)
Expand Down
4 changes: 2 additions & 2 deletions trunk/include/asm-mips/sigcontext.h
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
*/
struct sigcontext {
unsigned int sc_regmask; /* Unused */
unsigned int sc_status;
unsigned int sc_status; /* Unused */
unsigned long long sc_pc;
unsigned long long sc_regs[32];
unsigned long long sc_fpregs[32];
Expand Down Expand Up @@ -76,7 +76,7 @@ struct sigcontext {

struct sigcontext32 {
__u32 sc_regmask; /* Unused */
__u32 sc_status;
__u32 sc_status; /* Unused */
__u64 sc_pc;
__u64 sc_regs[32];
__u64 sc_fpregs[32];
Expand Down

0 comments on commit 28f47f1

Please sign in to comment.