about summary refs log tree commit homepage
diff options
context:
space:
mode:
-rw-r--r--fadvise.c2
-rw-r--r--mincore.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/fadvise.c b/fadvise.c
index c2392f4..349ac42 100644
--- a/fadvise.c
+++ b/fadvise.c
@@ -16,7 +16,7 @@ static void apply_fadvise(const char *path, off_t offset, off_t len, int advice)
 {
         int fd;
 
-        if ((fd = open(path, O_RDONLY)) < 0) {
+        if ((fd = open(path, O_RDONLY|O_NOATIME)) < 0) {
                 fprintf(stderr, "%s: open(): %s\n", path, strerror(errno));
                 return;
         }
diff --git a/mincore.c b/mincore.c
index 3309bd9..c6915f1 100644
--- a/mincore.c
+++ b/mincore.c
@@ -10,7 +10,7 @@ static void mincore_stats(const char *path)
         int fd;
         size_t i;
 
-        if ((fd = open(path, O_RDONLY)) < 0) {
+        if ((fd = open(path, O_RDONLY|O_NOATIME)) < 0) {
                 fprintf(stderr, "%s: open(): %s\n", path, strerror(errno));
                 return;
         }