xref: /freebsd/sys/sys/_maxphys.h (revision 13a5a46c)
1 /*-
2  * This file is in the public domain.
3  */
4 #ifndef MAXPHYS
5 #ifdef __ILP32__
6 #define MAXPHYS		(128 * 1024)
7 #else
8 #define MAXPHYS		(1024 * 1024)
9 #endif
10 #endif
11