aboutsummaryrefslogtreecommitdiff
path: root/www/qt6-webengine/files/patch-src_3rdparty_chromium_base_test_test__file__util__linux.cc
blob: 49b9ce7d6fbe31ac3bf77f9f4ddc15c206ea8d3c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
--- src/3rdparty/chromium/base/test/test_file_util_linux.cc.orig	2022-02-28 16:54:41 UTC
+++ src/3rdparty/chromium/base/test/test_file_util_linux.cc
@@ -54,8 +54,10 @@ bool EvictFileFromSystemCache(const FilePath& file) {
     return false;
   if (fdatasync(fd.get()) != 0)
     return false;
+#if !defined(OS_BSD)
   if (posix_fadvise(fd.get(), 0, 0, POSIX_FADV_DONTNEED) != 0)
     return false;
+#endif
   return true;
 }