chiark / gitweb /
util: detect page size runtime.
[elogind.git] / src / readahead-replay.c
index d2de7ef2887b67620bc9cafc42838929e51bfd13..3984c36c3e4dfdb2deab50d0efbcc06049de99d3 100644 (file)
@@ -94,7 +94,7 @@ static int unpack_file(FILE *pack) {
                 any = true;
 
                 if (fd >= 0)
-                        if (posix_fadvise(fd, b * PAGE_SIZE, (c - b) * PAGE_SIZE, POSIX_FADV_WILLNEED) < 0) {
+                        if (posix_fadvise(fd, b * page_size(), (c - b) * page_size(), POSIX_FADV_WILLNEED) < 0) {
                                 log_warning("posix_fadvise() failed: %m");
                                 goto finish;
                         }