Searched refs:woffset (Results 1 - 1 of 1) sorted by relevance
/systemd/src/journal/ |
H A D | mmap-cache.c | 508 uint64_t woffset, wsize; local 521 woffset = offset & ~((uint64_t) page_size() - 1ULL); 522 wsize = size + (offset - woffset); 531 woffset = 0; 533 woffset -= delta; 543 if (woffset >= (uint64_t) st->st_size) 546 if (woffset + wsize > (uint64_t) st->st_size) 547 wsize = PAGE_ALIGN(st->st_size - woffset); 550 r = mmap_try_harder(m, NULL, fd, prot, MAP_SHARED, woffset, wsize, &d); 562 w = window_add(m, f, prot, keep_always, woffset, wsiz [all...] |
Completed in 10 milliseconds