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 Don't fall through.



details:   https://anonhg.NetBSD.org/src/rev/f6c8a65bf19e
branches:  trunk
changeset: 827682:f6c8a65bf19e
user:      maxv <maxv%NetBSD.org@localhost>
date:      Wed Nov 08 18:29:04 2017 +0000

description:
Don't fall through.

diffstat:

 sys/arch/amd64/amd64/vector.S |  6 ++++--
 1 files changed, 4 insertions(+), 2 deletions(-)

diffs (28 lines):

diff -r 7b080690f462 -r f6c8a65bf19e sys/arch/amd64/amd64/vector.S
--- a/sys/arch/amd64/amd64/vector.S     Wed Nov 08 17:55:54 2017 +0000
+++ b/sys/arch/amd64/amd64/vector.S     Wed Nov 08 18:29:04 2017 +0000
@@ -1,6 +1,6 @@
-/*     $NetBSD: vector.S,v 1.52 2017/10/30 17:06:42 maxv Exp $ */
+/*     $NetBSD: vector.S,v 1.53 2017/11/08 18:29:04 maxv Exp $ */
 
-/*-
+/*
  * Copyright (c) 1998, 2007, 2008 The NetBSD Foundation, Inc.
  * All rights reserved.
  *
@@ -140,6 +140,7 @@
        movl    CPUVAR(ILEVEL),%ebx
        cmpl    $IPL_HIGH,%ebx
        jae     2f
+       jmp     1f
 IDTVEC_END(intr_lapic_ipi)
 IDTVEC(resume_lapic_ipi)
 1:
@@ -223,6 +224,7 @@
        movl    CPUVAR(ILEVEL),%ebx
        cmpl    $IPL_CLOCK,%ebx
        jae     2f
+       jmp     1f
 IDTVEC_END(intr_lapic_ltimer)
 IDTVEC(resume_lapic_ltimer)
 1:



Home | Main Index | Thread Index | Old Index