Lines Matching +full:64 +full:mb
295 * we hit 384 (16MB to get a new "user"). in init_param2()
306 * linearly with 8 processes per MB up to 768MB, then 1 process per MB; in init_param2()
308 * per MB (which never happens by default as long as physical memory is in init_param2()
309 * > ~1.5MB). in init_param2()
313 maxproc_clamp = pgtok(physpages) / (3 * 1024 / 64); in init_param2()
321 * 'maxfiles' by default is set to 32 files per MB (overridable by in init_param2()
322 * a tunable), and is then clamped at 64 files per MB (which thus never in init_param2()
324 * purposes not used, as it gives a lower value than 32 files per MB as in init_param2()
325 * soon as there is more than ~2.5MB of memory.) in init_param2()
329 maxfiles_clamp = pgtok(physpages) / (1024 / 64); in init_param2()
361 * The default for maxpipekva is min(1/64 of the kernel address space, in init_param2()
362 * max(1/64 of main memory, 512KB)). See sys_pipe.c for more details. in init_param2()
364 maxpipekva = ptoa(physpages / 64); in init_param2()
368 if (maxpipekva > (VM_MAX_KERNEL_ADDRESS - VM_MIN_KERNEL_ADDRESS) / 64) in init_param2()
370 64; in init_param2()