summaryrefslogtreecommitdiff
path: root/sys/arch/amd64
diff options
context:
space:
mode:
authorMike Larkin <mlarkin@cvs.openbsd.org>2017-03-02 07:26:32 +0000
committerMike Larkin <mlarkin@cvs.openbsd.org>2017-03-02 07:26:32 +0000
commitf354c761dffed6b98e6899b6f625b4ffaa100daf (patch)
treea4a40bfdb4d175c55e8139fe2838f484a09cbf36 /sys/arch/amd64
parente1d2f35b1ed88b00bf63b92e65c2597979b8972b (diff)
log attempts to access cpuid leaf function 0x03, "processor serial number".
matches other log messages for other unimplemented cpuid leaf functions.
Diffstat (limited to 'sys/arch/amd64')
-rw-r--r--sys/arch/amd64/amd64/vmm.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/sys/arch/amd64/amd64/vmm.c b/sys/arch/amd64/amd64/vmm.c
index aef0b79ba30..856c03db129 100644
--- a/sys/arch/amd64/amd64/vmm.c
+++ b/sys/arch/amd64/amd64/vmm.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: vmm.c,v 1.118 2017/03/02 03:21:44 mlarkin Exp $ */
+/* $OpenBSD: vmm.c,v 1.119 2017/03/02 07:26:31 mlarkin Exp $ */
/*
* Copyright (c) 2014 Mike Larkin <mlarkin@openbsd.org>
*
@@ -4315,6 +4315,8 @@ vmm_handle_cpuid(struct vcpu *vcpu)
*rdx = 0;
break;
case 0x03: /* Processor serial number (not supported) */
+ DPRINTF("%s: function 0x03 (processor serial number) not "
+ "supported\n", __func__);
*rax = 0;
*rbx = 0;
*rcx = 0;