summaryrefslogtreecommitdiff
path: root/sys/arch/amd64/include
diff options
context:
space:
mode:
authorArtur Grabowski <art@cvs.openbsd.org>2008-07-18 23:43:32 +0000
committerArtur Grabowski <art@cvs.openbsd.org>2008-07-18 23:43:32 +0000
commitcbf40e0f6a4ee8fde77e05f8b74ca4b989937d38 (patch)
tree761b8494073324eacc2b020b8dcffd3c81afb3ee /sys/arch/amd64/include
parent7dde4e5a62193339964b0d2205abffd301cc786b (diff)
Add a macro that clears the want_resched flag that need_resched sets.
Right now when mi_switch picks up the same proc, we didn't clear the flag which would mean that every time we service an AST we would attempt a context switch. For some architectures, amd64 being probably the most extreme, that meant attempting to context switch for every trap and interrupt. Now we clear_resched explicitly after every context switch, even if it didn't do anything. Which also allows us to remove some more code in cpu_switchto (not done yet). miod@ ok
Diffstat (limited to 'sys/arch/amd64/include')
-rw-r--r--sys/arch/amd64/include/cpu.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/arch/amd64/include/cpu.h b/sys/arch/amd64/include/cpu.h
index 2516fdd256b..248a9659c6e 100644
--- a/sys/arch/amd64/include/cpu.h
+++ b/sys/arch/amd64/include/cpu.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: cpu.h,v 1.36 2008/06/10 02:55:39 weingart Exp $ */
+/* $OpenBSD: cpu.h,v 1.37 2008/07/18 23:43:31 art Exp $ */
/* $NetBSD: cpu.h,v 1.1 2003/04/26 18:39:39 fvdl Exp $ */
/*-
@@ -161,6 +161,7 @@ extern struct cpu_info *cpu_info_list;
* or after the current trap/syscall if in system mode.
*/
extern void need_resched(struct cpu_info *);
+#define clear_resched(ci) (ci)->ci_want_resched = 0
#if defined(MULTIPROCESSOR)