Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for fdatasync (0.09 sec)

  1. cmd/os-instrumented.go

    	defer updateOSMetrics(osMetricCreate, name)(err)
    	return os.Create(name)
    }
    
    // Fdatasync captures time taken to call Fdatasync
    func Fdatasync(f *os.File) (err error) {
    	fn := ""
    	if f != nil {
    		fn = f.Name()
    	}
    	defer updateOSMetrics(osMetricFdatasync, fn)(err)
    	return disk.Fdatasync(f)
    }
    
    // report returns all os metrics.
    func (o *osMetrics) report() madmin.OSMetrics {
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Fri Aug 29 02:39:48 UTC 2025
    - 6.2K bytes
    - Viewed (0)
  2. docs/distributed/README.md

    **In our tests we also found ext4 does not honor POSIX O_DIRECT/Fdatasync semantics, ext4 trades performance for consistency guarantees. Please avoid ext4 in your setup.**
    
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Tue Aug 12 18:20:36 UTC 2025
    - 8.9K bytes
    - Viewed (0)
  3. cmd/xl-storage.go

    	flags := os.O_CREATE | os.O_WRONLY | os.O_TRUNC
    
    	var w *os.File
    	if sync {
    		// Perform DirectIO along with fdatasync for larger xl.meta, mostly when
    		// xl.meta has "inlined data" we prefer writing O_DIRECT and then doing
    		// fdatasync() at the end instead of opening the file with O_DSYNC.
    		//
    		// This is an optimization mainly to ensure faster I/O.
    		if len(b) > xioutil.DirectioAlignSize {
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Fri Jun 13 11:33:47 UTC 2025
    - 91.7K bytes
    - Viewed (0)
  4. api/go1.txt

    pkg syscall (linux-386), func Fchown(int, int, int) error
    pkg syscall (linux-386), func Fchownat(int, string, int, int, int) error
    pkg syscall (linux-386), func Fdatasync(int) error
    pkg syscall (linux-386), func Flock(int, int) error
    pkg syscall (linux-386), func ForkExec(string, []string, *ProcAttr) (int, error)
    pkg syscall (linux-386), func Fstat(int, *Stat_t) error
    Registered: Tue Sep 09 11:13:09 UTC 2025
    - Last Modified: Wed Aug 14 18:58:28 UTC 2013
    - 1.7M bytes
    - Viewed (0)
  5. api/go1.2.txt

    pkg syscall (linux-arm-cgo), func Fchown(int, int, int) error
    pkg syscall (linux-arm-cgo), func Fchownat(int, string, int, int, int) error
    pkg syscall (linux-arm-cgo), func Fdatasync(int) error
    pkg syscall (linux-arm-cgo), func Flock(int, int) error
    pkg syscall (linux-arm-cgo), func ForkExec(string, []string, *ProcAttr) (int, error)
    pkg syscall (linux-arm-cgo), func Fstat(int, *Stat_t) error
    Registered: Tue Sep 09 11:13:09 UTC 2025
    - Last Modified: Fri Oct 18 04:36:59 UTC 2013
    - 1.9M bytes
    - Viewed (0)
Back to top