Lines Matching +full:main +full:- +full:storage
1 /*-
2 * SPDX-License-Identifier: BSD-3-Clause
91 int maxfilesperproc; /* per-proc open files limit */
98 u_long maxswzone; /* max swmeta KVA storage */
99 u_long maxbcache; /* max buffer cache KVA storage */
166 * Boot time overrides that are not scaled against main memory
175 * arm64 and riscv currently hard-code the thread0 kstack size
180 hz = -1;
182 if (hz == -1)
200 ticksl = INT_MAX - (hz * 10 * 60);
241 * not overflow on 32-bit machines. For all these reasons, we limit the
252 const int ngroups_max_max = (1 << 24) - 1;
260 * Prevent setting up a non-bootable system if pid_max is too low.
273 * Boot time overrides that are scaled against main memory
296 maxusers = 384 + ((maxusers - 384) / 8);
345 * Physical buffers are pre-allocated buffers (struct buf) that
352 * max(1/64 of main memory, 512KB)). See sys_pipe.c for more details.
358 if (maxpipekva > (VM_MAX_KERNEL_ADDRESS - VM_MIN_KERNEL_ADDRESS) / 64)
359 maxpipekva = (VM_MAX_KERNEL_ADDRESS - VM_MIN_KERNEL_ADDRESS) /