HomeSort by: relevance | last modified time | path
    Searched refs:vm_maxbusytag (Results 1 - 2 of 2) sorted by relevancy

  /src/sys/sys/
vmem_impl.h 101 size_t vm_maxbusytag; member in struct:vmem
  /src/sys/kern/
subr_vmem.c 524 if (++vm->vm_nbusytag > vm->vm_maxbusytag) {
525 vm->vm_maxbusytag = vm->vm_nbusytag;
880 if (vm->vm_maxbusytag >= 2) {
881 vm->vm_maxbusytag = vm->vm_maxbusytag / 2 - 1;
882 if (vm->vm_nbusytag > vm->vm_maxbusytag) {
883 vm->vm_maxbusytag = vm->vm_nbusytag;
886 vm->vm_maxbusytag = vm->vm_nbusytag;
1023 vm->vm_maxbusytag = 0;
1570 desired = atomic_load_relaxed(&vm->vm_maxbusytag);
    [all...]

Completed in 12 milliseconds