diff options
author | Mike Larkin <mlarkin@cvs.openbsd.org> | 2013-10-18 15:09:23 +0000 |
---|---|---|
committer | Mike Larkin <mlarkin@cvs.openbsd.org> | 2013-10-18 15:09:23 +0000 |
commit | 4aa7e611acfb2e4323c1ab47ce9bddbdb7c5a3bc (patch) | |
tree | a6bacf28c082213b85d2b36c19ffa6482729b5d2 /sys | |
parent | 5c3dc36d46f51128b3385cee73c953a3661e7da6 (diff) |
Remove an incorrect assert used in the real mode parking code for
unhibernate.
ok deraadt
Diffstat (limited to 'sys')
-rw-r--r-- | sys/arch/amd64/amd64/ipifuncs.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/sys/arch/amd64/amd64/ipifuncs.c b/sys/arch/amd64/amd64/ipifuncs.c index c7729469464..5bdb86f6943 100644 --- a/sys/arch/amd64/amd64/ipifuncs.c +++ b/sys/arch/amd64/amd64/ipifuncs.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ipifuncs.c,v 1.19 2013/06/01 22:22:13 mlarkin Exp $ */ +/* $OpenBSD: ipifuncs.c,v 1.20 2013/10/18 15:09:22 mlarkin Exp $ */ /* $NetBSD: ipifuncs.c,v 1.1 2003/04/26 18:39:28 fvdl Exp $ */ /*- @@ -143,7 +143,6 @@ x86_64_ipi_halt_realmode(struct cpu_info *ci) { /* Halt CPUs and park in real mode */ - SCHED_ASSERT_UNLOCKED(); fpusave_cpu(ci, 1); disable_intr(); wbinvd(); |