PERFORCE change 40903 for review

Peter Wemm peter at FreeBSD.org
Thu Oct 30 15:59:17 PST 2003


http://perforce.freebsd.org/chv.cgi?CH=40903

Change 40903 by peter at 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);
 


More information about the p4-projects mailing list