diff options
author | Miod Vallat <miod@cvs.openbsd.org> | 2007-11-15 21:23:17 +0000 |
---|---|---|
committer | Miod Vallat <miod@cvs.openbsd.org> | 2007-11-15 21:23:17 +0000 |
commit | 8ca8bc22d3b776d69bd7ce8622136de5cb8ee376 (patch) | |
tree | 08a9ebc32a67886ed5c43c4640c4bfd7e3ac872c /sys/arch/m88k/include | |
parent | 42b7e5295160dddf04004f36ba2cb8756e87fe7c (diff) |
Stop referring the initial kernel stack as the ``interrupt stack''. It's
been years since it has last been used for that purpose, so name it the
initialization/startup stack.
While there, do not store the initialization stack in cpu_info, and have
secondary_pre_main() return its value so that the bootstrap code does not
need to fetch it from cpu_info.
This might be reconsidered when the startup stacks will be freed after they
are not used anymore, but there are more things to do first.
Diffstat (limited to 'sys/arch/m88k/include')
-rw-r--r-- | sys/arch/m88k/include/cpu.h | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/sys/arch/m88k/include/cpu.h b/sys/arch/m88k/include/cpu.h index 97b691f082b..4ffac7f6892 100644 --- a/sys/arch/m88k/include/cpu.h +++ b/sys/arch/m88k/include/cpu.h @@ -1,4 +1,4 @@ -/* $OpenBSD: cpu.h,v 1.30 2007/11/14 23:12:45 miod Exp $ */ +/* $OpenBSD: cpu.h,v 1.31 2007/11/15 21:23:16 miod Exp $ */ /* * Copyright (c) 1996 Nivas Madhur * Copyright (c) 1992, 1993 @@ -97,8 +97,6 @@ struct cpu_info { struct schedstate_percpu ci_schedstate; /* scheduling state */ int ci_want_resched; /* need_resched() invoked */ - vaddr_t ci_init_stack; /* startup stack */ - u_int ci_intrdepth; /* interrupt depth */ u_long ci_spin_locks; /* spin locks counter */ |