diff options
author | 2017-12-07 01:54:39 +0000 | |
---|---|---|
committer | 2017-12-07 01:54:39 +0000 | |
commit | 858e495e798fa1846d841b0062908c6267b65db3 (patch) | |
tree | 591999dbcc711782daac8259037eaf45dd8ecb71 | |
parent | Drop the unused second argument from set_prompt(). It used to be used for (diff) | |
download | wireguard-openbsd-858e495e798fa1846d841b0062908c6267b65db3.tar.xz wireguard-openbsd-858e495e798fa1846d841b0062908c6267b65db3.zip |
reorder some port numbers, no functional change.
-rw-r--r-- | sys/arch/amd64/amd64/vmm.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/amd64/amd64/vmm.c b/sys/arch/amd64/amd64/vmm.c index 518ff86dc45..dde279fc9f4 100644 --- a/sys/arch/amd64/amd64/vmm.c +++ b/sys/arch/amd64/amd64/vmm.c @@ -1,4 +1,4 @@ -/* $OpenBSD: vmm.c,v 1.179 2017/11/29 02:56:21 mlarkin Exp $ */ +/* $OpenBSD: vmm.c,v 1.180 2017/12/07 01:54:39 mlarkin Exp $ */ /* * Copyright (c) 2014 Mike Larkin <mlarkin@openbsd.org> * @@ -4844,9 +4844,9 @@ svm_handle_inout(struct vcpu *vcpu) case IO_RTC ... IO_RTC + 1: case IO_ICU2 ... IO_ICU2 + 1: case 0x3f8 ... 0x3ff: + case 0x500 ... 0x50f: case 0xcf8: case 0xcfc ... 0xcff: - case 0x500 ... 0x50f: case VMM_PCI_IO_BAR_BASE ... VMM_PCI_IO_BAR_END: ret = EAGAIN; break; |