usr/src/uts/i86pc/os/startup.c
changeset 12293 2286b8b6d071
parent 12284 3d1135425dbe
child 12838 fca99d9e3f2f
--- a/usr/src/uts/i86pc/os/startup.c	Sun May 02 21:47:48 2010 -0700
+++ b/usr/src/uts/i86pc/os/startup.c	Mon May 03 04:17:29 2010 -0700
@@ -119,7 +119,6 @@
 #include <sys/ddi_timer.h>
 #include <sys/systeminfo.h>
 #include <sys/multiboot.h>
-#include <sys/kflt_mem.h>
 
 #ifdef	__xpv
 
@@ -234,14 +233,6 @@
 caddr_t	rm_platter_va = 0;
 uint32_t rm_platter_pa;
 
-/*
- * On 64 bit systems enable the kernel page freelist
- */
-#if defined(__amd64) && !defined(__xpv)
-int	kflt_disable = 0;
-#else
-int 	kflt_disable = 1;
-#endif /* __amd64 && !__xpv */
 int	auto_lpg_disable = 1;
 
 /*
@@ -2196,13 +2187,6 @@
 #endif
 
 	/*
-	 * Create the kernel page freelist management thread for x64 systems.
-	 */
-	if (!kflt_disable) {
-		kflt_init();
-	}
-
-	/*
 	 * Configure the system.
 	 */
 	PRM_POINT("Calling configure()...");