svn commit: r264135 - head/sys/arm/include

Ian Lepore ian at FreeBSD.org
Fri Apr 4 19:35:39 UTC 2014


Author: ian
Date: Fri Apr  4 19:35:38 2014
New Revision: 264135
URL: http://svnweb.freebsd.org/changeset/base/264135

Log:
  We don't support any ARM systems with an ISA bus and don't need a freelist
  of memory to support ISA addressing limitations.

Modified:
  head/sys/arm/include/vmparam.h

Modified: head/sys/arm/include/vmparam.h
==============================================================================
--- head/sys/arm/include/vmparam.h	Fri Apr  4 19:17:33 2014	(r264134)
+++ head/sys/arm/include/vmparam.h	Fri Apr  4 19:35:38 2014	(r264135)
@@ -93,15 +93,10 @@
 #define	VM_FREEPOOL_DIRECT	0
 
 /*
- * we support 2 free lists:
- *
- *	- DEFAULT for all systems
- *	- ISADMA for the ISA DMA range on Sharks only
+ * We need just one free list:  DEFAULT.
  */
-
-#define	VM_NFREELIST		2
+#define	VM_NFREELIST		1
 #define	VM_FREELIST_DEFAULT	0
-#define	VM_FREELIST_ISADMA	1
 
 /*
  * The largest allocation size is 1MB.


More information about the svn-src-all mailing list