Files
core/hardware/disk/lvm2/files/lvm2-2.02.166-HPPA-no-O_DIRECT.patch
T
2019-12-27 12:42:41 +03:00

13 lines
285 B
Diff

--- a/lib/device/dev-io.c
+++ b/lib/device/dev-io.c
@@ -505,7 +505,9 @@
dev->flags |= DEV_NOT_O_NOATIME;
if ((dev->fd = open(name, flags, 0777)) >= 0) {
log_debug_devs("%s: Not using O_NOATIME", name);
+#ifdef O_DIRECT_SUPPORT
goto opened;
+#endif
}
}
#endif