From: Jan-Benedict G. <jb...@us...> - 2005-09-23 09:51:20
|
Update of /cvsroot/linux-vax/kernel-2.5/arch/vax/kernel In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv31854 Modified Files: entry.S Log Message: - Some more cleanup. Index: entry.S =================================================================== RCS file: /cvsroot/linux-vax/kernel-2.5/arch/vax/kernel/entry.S,v retrieving revision 1.18 retrieving revision 1.19 diff -u -d -r1.18 -r1.19 --- entry.S 25 Apr 2005 13:11:55 -0000 1.18 +++ entry.S 23 Sep 2005 09:51:12 -0000 1.19 @@ -51,7 +51,7 @@ */ pushl %r0 /* Push R0 to have a free working register */ - + /* * Get number of exception info longwords into R0. * Remember that this value is stored immediately after the @@ -111,7 +111,7 @@ pushal 76(%sp) /* address of exception info */ pushl 76(%sp) /* handler_PC */ pushal 8(%sp) /* start of pt_regs */ - + calls $3, do_irq_excep .globl ret_from_syscall @@ -152,7 +152,7 @@ * on the stack. First get the size of the exception info into R0 */ movl *16(%sp), %r0 - + /* * Now move the saved PC down over the original (the 20-byte offset * takes care of skipping over the top 5 items on the stack, and then @@ -165,7 +165,7 @@ * get to usermode originally as we make up a new PSL * in start_thread and we need the CPU to believe it */ - movl 8(%sp), 24(%sp)[%r0] + movl 8(%sp), 24(%sp)[%r0] /* * The stack now looks like: @@ -271,7 +271,7 @@ tstl probe_resume_addr /* Are we executing an iospace_probeX() call? */ bneq probing /* Branch if yes */ - pushr $0x3f /* push all registers in case we can restart */ + pushr $0x3f /* push all registers in case we can restart */ pushab 24(%sp) /* address of stack slot which holds byte count */ calls $1, machine_check /* in reboot.c */ popr $0x3f /* spring them off */ |