diff options
author | 2014-12-12 16:51:32 +0000 | |
---|---|---|
committer | 2014-12-12 16:51:32 +0000 | |
commit | d205d8d9f23998477021f91448ebe1a0806654ae (patch) | |
tree | fd5e1b8c8b3745e3917e5b896a5a571718bb019d | |
parent | Like previously done in relayd, change the keyword "ssl" to "tls" to (diff) | |
download | wireguard-openbsd-d205d8d9f23998477021f91448ebe1a0806654ae.tar.xz wireguard-openbsd-d205d8d9f23998477021f91448ebe1a0806654ae.zip |
oops, i was not supposed to disable mwait. found by stsp
-rw-r--r-- | sys/arch/amd64/amd64/cpu.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/sys/arch/amd64/amd64/cpu.c b/sys/arch/amd64/amd64/cpu.c index 2d7619fc2e3..641dea3e655 100644 --- a/sys/arch/amd64/amd64/cpu.c +++ b/sys/arch/amd64/amd64/cpu.c @@ -1,4 +1,4 @@ -/* $OpenBSD: cpu.c,v 1.71 2014/12/02 18:13:10 tedu Exp $ */ +/* $OpenBSD: cpu.c,v 1.72 2014/12/12 16:51:32 tedu Exp $ */ /* $NetBSD: cpu.c,v 1.1 2003/04/26 18:39:26 fvdl Exp $ */ /*- @@ -334,8 +334,6 @@ cpu_init_mwait(struct cpu_softc *sc) if ((cpu_ecxfeature & CPUIDECX_MWAIT) == 0) return; - return; - /* get the monitor granularity */ CPUID(0x5, smallest, largest, extensions, c_substates); smallest &= 0xffff; |