Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/netbsd-7]: src/sys/arch/x86/x86 Pull up following revision(s) (requested...



details:   https://anonhg.NetBSD.org/src/rev/42b4714932cc
branches:  netbsd-7
changeset: 799648:42b4714932cc
user:      riz <riz%NetBSD.org@localhost>
date:      Fri Nov 06 00:40:02 2015 +0000

description:
Pull up following revision(s) (requested by nat in ticket #984):
        sys/arch/x86/x86/cpu.c: revision 1.116
Don't disable/re-enable interrupts if they are already disabled.
Addresses PR 48196.
This commit was improved and approved by christos@

diffstat:

 sys/arch/x86/x86/cpu.c |  14 ++++++++++----
 1 files changed, 10 insertions(+), 4 deletions(-)

diffs (45 lines):

diff -r f4fdae64b718 -r 42b4714932cc sys/arch/x86/x86/cpu.c
--- a/sys/arch/x86/x86/cpu.c    Thu Nov 05 20:41:17 2015 +0000
+++ b/sys/arch/x86/x86/cpu.c    Fri Nov 06 00:40:02 2015 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: cpu.c,v 1.111.2.1 2015/01/12 21:06:41 snj Exp $        */
+/*     $NetBSD: cpu.c,v 1.111.2.2 2015/11/06 00:40:02 riz Exp $        */
 
 /*-
  * Copyright (c) 2000-2012 NetBSD Foundation, Inc.
@@ -62,7 +62,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: cpu.c,v 1.111.2.1 2015/01/12 21:06:41 snj Exp $");
+__KERNEL_RCSID(0, "$NetBSD: cpu.c,v 1.111.2.2 2015/11/06 00:40:02 riz Exp $");
 
 #include "opt_ddb.h"
 #include "opt_mpbios.h"                /* for MPDEBUG */
@@ -1278,6 +1278,7 @@
 {
 #ifdef PAE
        struct cpu_info *ci = curcpu();
+       bool interrupts_enabled;
        pd_entry_t *l3_pd = ci->ci_pae_l3_pdir;
        int i;
 
@@ -1286,11 +1287,16 @@
         * while this doesn't block NMIs, it's probably ok as NMIs unlikely
         * reload cr3.
         */
-       x86_disable_intr();
+       interrupts_enabled = (x86_read_flags() & PSL_I) != 0;
+       if (interrupts_enabled)
+               x86_disable_intr();
+
        for (i = 0 ; i < PDP_SIZE; i++) {
                l3_pd[i] = pmap->pm_pdirpa[i] | PG_V;
        }
-       x86_enable_intr();
+       
+       if (interrupts_enabled)
+               x86_enable_intr();
        tlbflush();
 #else /* PAE */
        lcr3(pmap_pdirpa(pmap, 0));



Home | Main Index | Thread Index | Old Index