HomeSort by relevance Sort by last modified time
    Searched refs:lockmem (Results 1 - 4 of 4) sorted by null

  /external/fio/
memory.c 18 dprint(FD_MEM, "unpinning %llu bytes\n", td->o.lockmem);
19 if (munlock(td->pinned_mem, td->o.lockmem) < 0)
21 munmap(td->pinned_mem, td->o.lockmem);
30 if (!td->o.lockmem)
33 dprint(FD_MEM, "pinning %llu bytes\n", td->o.lockmem);
40 if ((td->o.lockmem + 128 * 1024 * 1024) > phys_mem) {
41 td->o.lockmem = phys_mem - 128 * 1024 * 1024;
43 td->o.lockmem >> 20);
47 td->pinned_mem = mmap(NULL, td->o.lockmem, PROT_READ | PROT_WRITE,
54 if (mlock(td->pinned_mem, td->o.lockmem) < 0)
    [all...]
thread_options.h 147 unsigned long long lockmem; member in struct:thread_options
371 uint64_t lockmem; member in struct:thread_options_pack
cconv.c 180 o->lockmem = le64_to_cpu(top->lockmem);
441 top->lockmem = __cpu_to_le64(o->lockmem);
options.c     [all...]

Completed in 42 milliseconds