Searched refs:fsync (Results 1 - 25 of 104) sorted by relevance

12345

/linux-master/fs/adfs/
H A Dfile.c29 .fsync = generic_file_fsync,
/linux-master/fs/ufs/
H A Dfile.c43 .fsync = generic_file_fsync,
/linux-master/fs/gfs2/
H A Dglops.h26 void gfs2_ail_flush(struct gfs2_glock *gl, bool fsync);
H A Dglops.c53 * @fsync: set when called from fsync (not all buffers will be clean)
59 static void __gfs2_ail_flush(struct gfs2_glock *gl, bool fsync, argument
75 if (fsync)
82 GLOCK_BUG_ON(gl, !fsync && atomic_read(&gl->gl_ail_count));
141 void gfs2_ail_flush(struct gfs2_glock *gl, bool fsync) argument
153 __gfs2_ail_flush(gl, fsync, revokes);
/linux-master/fs/ramfs/
H A Dfile-mmu.c45 .fsync = noop_fsync,
/linux-master/fs/sysv/
H A Dfile.c28 .fsync = generic_file_fsync,
/linux-master/fs/minix/
H A Dfile.c21 .fsync = generic_file_fsync,
/linux-master/fs/ext4/
H A DMakefile9 extents_status.o file.o fsmap.o fsync.o hash.o ialloc.o \
/linux-master/fs/qnx4/
H A Ddir.c73 .fsync = generic_file_fsync,
/linux-master/fs/
H A Dsync.c184 if (!file->f_op->fsync)
188 return file->f_op->fsync(file, start, end, datasync);
193 * vfs_fsync - perform a fsync or fdatasync on a file
218 SYSCALL_DEFINE1(fsync, unsigned int, fd)
/linux-master/fs/nilfs2/
H A Dfile.c3 * NILFS regular file handling primitives including fsync().
19 * Called from fsync() system call
150 .fsync = nilfs_sync_file,
/linux-master/fs/udf/
H A Ddir.c137 .fsync = generic_file_fsync,
H A Dfile.c207 .fsync = generic_file_fsync,
/linux-master/fs/affs/
H A Ddir.c26 .fsync = affs_file_fsync,
/linux-master/fs/orangefs/
H A Dupcall.h252 struct orangefs_fsync_request_s fsync; member in union:orangefs_upcall_s::__anon10429
H A Dfile.c474 new_op->upcall.req.fsync.refn = orangefs_inode->refn;
558 * Do not send fsync to OrangeFS server on a close. Do send fsync
559 * on an explicit fsync call. This duplicates historical OrangeFS
583 .fsync = orangefs_fsync,
/linux-master/fs/jfs/
H A Dfile.c149 .fsync = jfs_fsync,
/linux-master/fs/ecryptfs/
H A Dfile.c424 .fsync = ecryptfs_fsync,
440 .fsync = ecryptfs_fsync,
/linux-master/sound/soc/codecs/
H A Dcs42l42.c791 u32 fsync = sclk / sample_rate; local
794 if (((fsync * sample_rate) != sclk) || ((fsync % 2) != 0)) {
805 CS42L42_FRAC0_VAL(fsync - 1) <<
810 CS42L42_FRAC1_VAL(fsync - 1) <<
813 fsync = fsync / 2;
817 CS42L42_FRAC0_VAL(fsync - 1) <<
822 CS42L42_FRAC1_VAL(fsync - 1) <<
/linux-master/drivers/media/i2c/
H A Dmax9286.c581 u32 fsync; local
599 fsync = div_u64((u64)priv->pixelrate * priv->interval.numerator,
602 dev_dbg(&priv->client->dev, "fsync period %u (pclk %u)\n", fsync,
608 max9286_write(priv, 0x06, (fsync >> 0) & 0xff);
609 max9286_write(priv, 0x07, (fsync >> 8) & 0xff);
610 max9286_write(priv, 0x08, (fsync >> 16) & 0xff);
/linux-master/fs/9p/
H A Dvfs_file.c522 .fsync = v9fs_file_fsync,
536 .fsync = v9fs_file_fsync_dotl,
/linux-master/fs/qnx6/
H A Ddir.c277 .fsync = generic_file_fsync,
/linux-master/fs/reiserfs/
H A Ddir.c24 .fsync = reiserfs_dir_fsync,
H A Dfile.c247 .fsync = reiserfs_sync_file,
/linux-master/tools/testing/selftests/cachestat/
H A Dtest_cachestat.c97 * fsync() is implemented via noop_fsync() on tmpfs. This makes the fsync()
114 * If test_fsync == true, fsync the file, then check the number of dirty
170 } else if (fsync(fd)) {
171 ksft_print_msg("fsync fails.\n");
176 ksft_print_msg("Cachestat call (after fsync) returned %ld\n",
185 "Number of dirty should be zero after fsync.\n");
188 ksft_print_msg("Cachestat (after fsync) returned non-zero.\n");
299 ksft_test_result_fail("cachestat fsync fails with normal file\n");
303 ksft_test_result_pass("cachestat fsync work
[all...]

Completed in 342 milliseconds

12345