Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/trunk]: src/sys/arch/amd64/amd64 Use IDTVEC instead of NENTRY for handle...
details: https://anonhg.NetBSD.org/src/rev/88117170ca41
branches: trunk
changeset: 449435:88117170ca41
user: nonaka <nonaka%NetBSD.org@localhost>
date: Thu Mar 07 10:16:07 2019 +0000
description:
Use IDTVEC instead of NENTRY for handle_hyperv_hypercall.
diffstat:
sys/arch/amd64/amd64/vector.S | 8 ++++----
1 files changed, 4 insertions(+), 4 deletions(-)
diffs (33 lines):
diff -r 94ab56eec4f7 -r 88117170ca41 sys/arch/amd64/amd64/vector.S
--- a/sys/arch/amd64/amd64/vector.S Thu Mar 07 03:56:15 2019 +0000
+++ b/sys/arch/amd64/amd64/vector.S Thu Mar 07 10:16:07 2019 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: vector.S,v 1.69 2019/02/15 08:54:01 nonaka Exp $ */
+/* $NetBSD: vector.S,v 1.70 2019/03/07 10:16:07 nonaka Exp $ */
/*
* Copyright (c) 1998, 2007, 2008 The NetBSD Foundation, Inc.
@@ -277,12 +277,12 @@
INTR_RECURSE_ENTRY
jmp 1f
IDTVEC_END(recurse_hyperv_hypercall)
-NENTRY(handle_hyperv_hypercall)
+IDTVEC(handle_hyperv_hypercall)
movl CPUVAR(ILEVEL),%ebx
cmpl $IPL_NET,%ebx
jae 2f
jmp 1f
-END(handle_hyperv_hypercall)
+IDTVEC_END(handle_hyperv_hypercall)
IDTVEC(resume_hyperv_hypercall)
1:
incl CPUVAR(IDEPTH)
@@ -302,7 +302,7 @@
pushq $0
pushq $T_ASTFLT
INTRENTRY
- jmp _C_LABEL(handle_hyperv_hypercall)
+ jmp _C_LABEL(Xhandle_hyperv_hypercall)
IDTVEC_END(intr_hyperv_hypercall)
TEXT_USER_END
#endif /* NHYPERV > 0 */
Home |
Main Index |
Thread Index |
Old Index