In order for MAXVNODES_MAX to be an "int" on powerpc and sparc, we must
cast PAGE_SIZE to an "int". (Powerpc and sparc, unlike the other architectures, define PAGE_SIZE as a "long".) Submitted by: Andreas Tobler
This commit is contained in:
parent
552daf3960
commit
b6ec5a5f0a
@ -288,7 +288,7 @@ SYSCTL_INT(_debug, OID_AUTO, vnlru_nowhere, CTLFLAG_RW,
|
||||
* grows, the ratio of physical pages to vnodes approaches sixteen to one.
|
||||
*/
|
||||
#ifndef MAXVNODES_MAX
|
||||
#define MAXVNODES_MAX (512 * (1024 * 1024 * 1024 / PAGE_SIZE / 16))
|
||||
#define MAXVNODES_MAX (512 * (1024 * 1024 * 1024 / (int)PAGE_SIZE / 16))
|
||||
#endif
|
||||
static void
|
||||
vntblinit(void *dummy __unused)
|
||||
|
Loading…
Reference in New Issue
Block a user