fix: runtime issue on FreeBSD due to missing O_NOATIME/O_DSYNC support (#11790)

See also:

https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=253937
This commit is contained in:
Steve Wills 2021-03-15 17:02:36 -04:00 committed by GitHub
parent 4d80de899a
commit 642ba3f2d6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 4 additions and 4 deletions

View File

@ -1,4 +1,4 @@
// +build windows darwin // +build windows darwin freebsd
/* /*
* MinIO Cloud Storage, (C) 2021 MinIO, Inc. * MinIO Cloud Storage, (C) 2021 MinIO, Inc.

View File

@ -1,4 +1,4 @@
// +build !windows,!darwin // +build !windows,!darwin,!freebsd
/* /*
* MinIO Cloud Storage, (C) 2021 MinIO, Inc. * MinIO Cloud Storage, (C) 2021 MinIO, Inc.

View File

@ -1,4 +1,4 @@
// +build windows darwin // +build windows darwin freebsd
/* /*
* MinIO Cloud Storage, (C) 2021 MinIO, Inc. * MinIO Cloud Storage, (C) 2021 MinIO, Inc.

View File

@ -1,4 +1,4 @@
// +build !windows,!darwin // +build !windows,!darwin,!freebsd
/* /*
* MinIO Cloud Storage, (C) 2021 MinIO, Inc. * MinIO Cloud Storage, (C) 2021 MinIO, Inc.