summaryrefslogtreecommitdiff
path: root/sys/arch/hppa/include
diff options
context:
space:
mode:
authorJoel Sing <jsing@cvs.openbsd.org>2010-06-03 15:48:59 +0000
committerJoel Sing <jsing@cvs.openbsd.org>2010-06-03 15:48:59 +0000
commit114388914e7c6f69d66c560d7455210c7249aa08 (patch)
treef97e566c33b5d2883eb75f7c351dcace40ced253 /sys/arch/hppa/include
parenta6a27dbe8d531379fbdcf29edcc6876a92d34c55 (diff)
Rename ci_spinup_stack to ci_stack and use it as the stack for both CPU
spin up and FPU emulation. Since all CPUs need a stack for FPU emulation, move the allocation code to cpuattach(). ok kettenis@
Diffstat (limited to 'sys/arch/hppa/include')
-rw-r--r--sys/arch/hppa/include/cpu.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/hppa/include/cpu.h b/sys/arch/hppa/include/cpu.h
index a7b842a0373..576b9189826 100644
--- a/sys/arch/hppa/include/cpu.h
+++ b/sys/arch/hppa/include/cpu.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: cpu.h,v 1.73 2010/06/03 15:05:52 jsing Exp $ */
+/* $OpenBSD: cpu.h,v 1.74 2010/06/03 15:48:58 jsing Exp $ */
/*
* Copyright (c) 2000-2004 Michael Shalayeff
@@ -84,7 +84,7 @@ struct cpu_info {
volatile int ci_flags;
struct proc *ci_curproc;
- paddr_t ci_spinup_stack;
+ paddr_t ci_stack;
register_t ci_psw; /* Processor Status Word. */
volatile int ci_cpl;