Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 10480
b: refs/heads/master
c: 99ac794
h: refs/heads/master
v: v3
  • Loading branch information
Randolph Chung authored and Kyle McMartin committed Oct 22, 2005
1 parent 96ca35c commit 7a668b2
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 4 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: 3a165680168758733b7a9f7fb835954fbe6b91a8
refs/heads/master: 99ac79479928bae42d694b7cb53644be5d3b6dd2
16 changes: 13 additions & 3 deletions trunk/arch/parisc/kernel/entry.S
Original file line number Diff line number Diff line change
Expand Up @@ -821,7 +821,12 @@ ret_from_kernel_thread:
ldo -16(%r30),%r29 /* Reference param save area */
loadgp /* Thread could have been in a module */
#endif
#ifndef CONFIG_64BIT
b sys_exit
#else
load32 sys_exit, %r1
bv %r0(%r1)
#endif
ldi 0, %r26

.import sys_execve, code
Expand Down Expand Up @@ -1012,7 +1017,7 @@ intr_restore:

.import do_softirq,code
intr_do_softirq:
bl do_softirq,%r2
BL do_softirq,%r2
#ifdef __LP64__
ldo -16(%r30),%r29 /* Reference param save area */
#else
Expand All @@ -1036,7 +1041,12 @@ intr_do_resched:
#endif

ldil L%intr_check_sig, %r2
#ifndef CONFIG_64BIT
b schedule
#else
load32 schedule, %r20
bv %r0(%r20)
#endif
ldo R%intr_check_sig(%r2), %r2


Expand Down Expand Up @@ -1897,7 +1907,7 @@ sys_vfork_wrapper:
#ifdef __LP64__
ldo -16(%r30),%r29 /* Reference param save area */
#endif
bl \execve,%r2
BL \execve,%r2
copy %r1,%arg0

ldo -FRAME_SIZE(%r30),%r30
Expand Down Expand Up @@ -2226,7 +2236,7 @@ pt_regs_ok:

.import do_softirq,code
syscall_do_softirq:
bl do_softirq,%r2
BL do_softirq,%r2
nop
/* NOTE: We enable I-bit incase we schedule later,
* and we might be going back to userspace if we were
Expand Down

0 comments on commit 7a668b2

Please sign in to comment.