Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 30 Oct 2003 15:59:15 -0800 (PST)
From:      Peter Wemm <peter@FreeBSD.org>
To:        Perforce Change Reviews <perforce@freebsd.org>
Subject:   PERFORCE change 40903 for review
Message-ID:  <200310302359.h9UNxFdG087505@repoman.freebsd.org>

next in thread | raw e-mail | index | archive | help
http://perforce.freebsd.org/chv.cgi?CH=40903

Change 40903 by peter@peter_daintree on 2003/10/30 15:58:54

	integ -I -b smp_hammer

Affected files ...

.. //depot/projects/hammer/sys/amd64/acpica/madt.c#8 integrate
.. //depot/projects/hammer/sys/amd64/isa/nmi.c#1 branch

Differences ...

==== //depot/projects/hammer/sys/amd64/acpica/madt.c#8 (text+ko) ====

@@ -128,6 +128,7 @@
 		pa += PAGE_SIZE;
 		length -= PAGE_SIZE;
 		pmap_kenter(va, pa);
+		invlpg(va);
 	}
 	return (data);
 }
@@ -143,6 +144,7 @@
 	va &= ~PAGE_MASK;
 	while (length > 0) {
 		pmap_kremove(va);
+		invlpg(va);
 		va += PAGE_SIZE;
 		length -= PAGE_SIZE;
 	}
@@ -251,7 +253,7 @@
 		if (bootverbose)
 			printf("MADT: No MADT table found\n");
 		return (ENXIO);
-	} else
+	}
 	if (bootverbose)
 		printf("MADT: Found table at %p\n", (void *)madt_physaddr);
 



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200310302359.h9UNxFdG087505>