patch-2.4.18 linux/include/asm-s390x/processor.h
Next file: linux/include/asm-s390x/ptrace.h
Previous file: linux/include/asm-s390x/lowcore.h
Back to the patch index
Back to the overall index
- Lines: 46
- Date:
Fri Dec 21 16:25:31 2001
- Orig file:
linux.orig/include/asm-s390x/processor.h
- Orig date:
Mon Feb 18 20:18:40 2002
diff -Naur -X /home/marcelo/lib/dontdiff linux.orig/include/asm-s390x/processor.h linux/include/asm-s390x/processor.h
@@ -80,7 +80,6 @@
struct thread_struct
{
- struct pt_regs *regs; /* the user registers can be found on*/
s390_fp_regs fp_regs;
__u32 ar2; /* kernel access register 2 */
__u32 ar4; /* kernel access register 4 */
@@ -99,8 +98,7 @@
typedef struct thread_struct thread_struct;
-#define INIT_THREAD { (struct pt_regs *) 0, \
- { 0,{{0},{0},{0},{0},{0},{0},{0},{0},{0},{0}, \
+#define INIT_THREAD {{0,{{0},{0},{0},{0},{0},{0},{0},{0},{0},{0}, \
{0},{0},{0},{0},{0},{0}}}, \
0, 0, \
sizeof(init_stack) + (addr_t) &init_stack, \
@@ -137,15 +135,24 @@
/*
* Return saved PC of a blocked thread. used in kernel/sched
+ * resume in entry.S does not create a new stack frame, it
+ * just stores the registers %r6-%r15 to the frame given by
+ * schedule. We want to return the address of the caller of
+ * schedule, so we have to walk the backchain one time to
+ * find the frame schedule() store its return address.
*/
extern inline unsigned long thread_saved_pc(struct thread_struct *t)
{
- return (t->regs) ? ((unsigned long)t->regs->psw.addr) : 0;
+ unsigned long bc;
+ bc = *((unsigned long *) t->ksp);
+ return *((unsigned long *) (bc+112));
}
unsigned long get_wchan(struct task_struct *p);
-#define KSTK_EIP(tsk) ((tsk)->thread.regs->psw.addr)
-#define KSTK_ESP(tsk) ((tsk)->thread.ksp)
+#define __KSTK_PTREGS(tsk) \
+ ((struct pt_regs *)((unsigned long) tsk+THREAD_SIZE) - 1)
+#define KSTK_EIP(tsk) (__KSTK_PTREGS(tsk)->psw.addr)
+#define KSTK_ESP(tsk) (__KSTK_PTREGS(tsk)->gprs[15])
/* Allocation and freeing of basic task resources. */
/*
FUNET's LINUX-ADM group, linux-adm@nic.funet.fi
TCL-scripts by Sam Shen (who was at: slshen@lbl.gov)