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 the right end macro: IDTVEC_END(nam...



details:   https://anonhg.NetBSD.org/src/rev/0b2e76993ede
branches:  trunk
changeset: 321732:0b2e76993ede
user:      christos <christos%NetBSD.org@localhost>
date:      Mon Apr 02 20:54:47 2018 +0000

description:
use the right end macro: IDTVEC_END(name) instead of END(Xname)

diffstat:

 sys/arch/amd64/amd64/spl.S |  12 ++++++------
 1 files changed, 6 insertions(+), 6 deletions(-)

diffs (51 lines):

diff -r 8d580acce665 -r 0b2e76993ede sys/arch/amd64/amd64/spl.S
--- a/sys/arch/amd64/amd64/spl.S        Mon Apr 02 18:25:41 2018 +0000
+++ b/sys/arch/amd64/amd64/spl.S        Mon Apr 02 20:54:47 2018 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: spl.S,v 1.31 2017/11/28 08:43:49 maxv Exp $    */
+/*     $NetBSD: spl.S,v 1.32 2018/04/02 20:54:47 christos Exp $        */
 
 /*
  * Copyright (c) 2003 Wasabi Systems, Inc.
@@ -127,7 +127,7 @@
        popq    %r15                    /* unwind switchframe */
        addq    $(5 * 8),%rsp
        jmp     *%r13                   /* back to Xspllower/Xdoreti */
-END(Xsoftintr)
+IDTVEC_END(softintr)
 
 /*
  * softintr_ret()
@@ -167,7 +167,7 @@
        call    _C_LABEL(kpreempt)
        cli
        jmp     *%r13                   /* back to Xspllower */
-END(Xpreemptrecurse)
+IDTVEC_END(preemptrecurse)
 
 /*
  * Xpreemptresume()
@@ -187,7 +187,7 @@
        call    _C_LABEL(preempt)       /* from user */
        cli
        jmp     *%r13                   /* back to Xdoreti */
-END(Xpreemptresume)
+IDTVEC_END(preemptresume)
 
 /*
  * int splraise(int s);
@@ -311,7 +311,7 @@
        popq    %r13
        popq    %rbx
        ret
-END(Xspllower)
+ITDVEC_END(spllower)
 
 /*
  * void Xdoreti(void);
@@ -365,4 +365,4 @@
        CLI(si)
        jmp     doreti_checkast         /* recheck ASTs */
 END(doreti_checkast)
-END(Xdoreti)
+IDTVEC_END(doreti)



Home | Main Index | Thread Index | Old Index