/kernel/liteos_m/testsuites/unittest/posix/src/fs/api/ |
H A D | posix_fs_fsync_test.c | 36 * @tc.name fsync 47 ret = fsync(fd); 61 * @tc.name fsync 66 int32_t ret = fsync(-1); /* -1, bad fd */ 75 * @tc.name fsync 80 int32_t ret = fsync(ERROR_CONFIG_NFILE_DESCRIPTORS); 89 * @tc.name fsync 94 int32_t ret = fsync(0); /* 0, used for stdin */ 98 ret = fsync(1); /* 1, used for stdout */ 102 ret = fsync( [all...] |
/kernel/linux/linux-5.10/fs/9p/ |
H A D | vfs_file.c | 660 .fsync = v9fs_file_fsync, 674 .fsync = v9fs_file_fsync_dotl, 687 .fsync = v9fs_file_fsync, 701 .fsync = v9fs_file_fsync_dotl, 714 .fsync = v9fs_file_fsync, 728 .fsync = v9fs_file_fsync_dotl,
|
/kernel/linux/linux-5.10/fs/adfs/ |
H A D | file.c | 29 .fsync = generic_file_fsync,
|
/kernel/linux/linux-5.10/fs/ufs/ |
H A D | file.c | 43 .fsync = generic_file_fsync,
|
/kernel/linux/linux-6.6/fs/adfs/ |
H A D | file.c | 29 .fsync = generic_file_fsync,
|
/kernel/linux/linux-6.6/fs/ufs/ |
H A D | file.c | 43 .fsync = generic_file_fsync,
|
/kernel/linux/linux-5.10/sound/soc/codecs/ |
H A D | cs42l42.c | 605 u32 fsync; in cs42l42_pll_config() local 628 fsync = cs42l42->sclk / cs42l42->srate; in cs42l42_pll_config() 629 if (((fsync * cs42l42->srate) != cs42l42->sclk) in cs42l42_pll_config() 630 || ((fsync % 2) != 0)) { in cs42l42_pll_config() 641 CS42L42_FRAC0_VAL(fsync - 1) << in cs42l42_pll_config() 646 CS42L42_FRAC1_VAL(fsync - 1) << in cs42l42_pll_config() 649 fsync = fsync / 2; in cs42l42_pll_config() 653 CS42L42_FRAC0_VAL(fsync - 1) << in cs42l42_pll_config() 658 CS42L42_FRAC1_VAL(fsync in cs42l42_pll_config() [all...] |
/kernel/linux/linux-5.10/fs/gfs2/ |
H A D | glops.h | 26 extern void gfs2_ail_flush(struct gfs2_glock *gl, bool fsync);
|
H A D | glops.c | 51 * @fsync: set when called from fsync (not all buffers will be clean) 56 static void __gfs2_ail_flush(struct gfs2_glock *gl, bool fsync, in __gfs2_ail_flush() argument 72 if (fsync) in __gfs2_ail_flush() 79 GLOCK_BUG_ON(gl, !fsync && atomic_read(&gl->gl_ail_count)); in __gfs2_ail_flush() 145 void gfs2_ail_flush(struct gfs2_glock *gl, bool fsync) in gfs2_ail_flush() argument 161 __gfs2_ail_flush(gl, fsync, max_revokes); in gfs2_ail_flush()
|
/kernel/linux/linux-6.6/fs/gfs2/ |
H A D | glops.h | 26 extern void gfs2_ail_flush(struct gfs2_glock *gl, bool fsync);
|
H A D | glops.c | 53 * @fsync: set when called from fsync (not all buffers will be clean) 59 static void __gfs2_ail_flush(struct gfs2_glock *gl, bool fsync, in __gfs2_ail_flush() argument 75 if (fsync) in __gfs2_ail_flush() 82 GLOCK_BUG_ON(gl, !fsync && atomic_read(&gl->gl_ail_count)); in __gfs2_ail_flush() 141 void gfs2_ail_flush(struct gfs2_glock *gl, bool fsync) in gfs2_ail_flush() argument 153 __gfs2_ail_flush(gl, fsync, revokes); in gfs2_ail_flush()
|
/kernel/linux/linux-5.10/fs/ |
H A D | sync.c | 95 * applications can catch the writeback error using fsync(2). in fdatawait_one_bdev() 198 if (!file->f_op->fsync) in vfs_fsync_range() 202 return file->f_op->fsync(file, start, end, datasync); in vfs_fsync_range() 207 * vfs_fsync - perform a fsync or fdatasync on a file 232 SYSCALL_DEFINE1(fsync, unsigned int, fd) in SYSCALL_DEFINE1()
|
/kernel/linux/linux-6.6/fs/ |
H A D | sync.c | 184 if (!file->f_op->fsync) in vfs_fsync_range() 188 return file->f_op->fsync(file, start, end, datasync); in vfs_fsync_range() 193 * vfs_fsync - perform a fsync or fdatasync on a file 218 SYSCALL_DEFINE1(fsync, unsigned int, fd) in SYSCALL_DEFINE1()
|
/kernel/linux/linux-5.10/fs/ramfs/ |
H A D | file-mmu.c | 45 .fsync = noop_fsync,
|
/kernel/linux/linux-5.10/fs/sysv/ |
H A D | file.c | 28 .fsync = generic_file_fsync,
|
/kernel/linux/linux-5.10/fs/minix/ |
H A D | file.c | 21 .fsync = generic_file_fsync,
|
/kernel/linux/linux-6.6/fs/ramfs/ |
H A D | file-mmu.c | 45 .fsync = noop_fsync,
|
/kernel/linux/linux-6.6/fs/minix/ |
H A D | file.c | 21 .fsync = generic_file_fsync,
|
/kernel/linux/linux-6.6/fs/sysv/ |
H A D | file.c | 28 .fsync = generic_file_fsync,
|
/kernel/linux/linux-5.10/fs/sharefs/ |
H A D | file.c | 250 .fsync = sharefs_fsync, 267 .fsync = sharefs_fsync,
|
/kernel/linux/linux-6.6/fs/sharefs/ |
H A D | file.c | 250 .fsync = sharefs_fsync, 267 .fsync = sharefs_fsync,
|
/kernel/linux/linux-5.10/fs/ext4/ |
H A D | Makefile | 9 extents_status.o file.o fsmap.o fsync.o hash.o ialloc.o \
|
/kernel/linux/linux-6.6/fs/ext4/ |
H A D | Makefile | 9 extents_status.o file.o fsmap.o fsync.o hash.o ialloc.o \
|
/kernel/linux/linux-5.10/fs/cifs/ |
H A D | cifsfs.c | 1214 * Directory operations under CIFS/SMB2/SMB3 are synchronous, so fsync() 1256 .fsync = cifs_fsync, 1276 .fsync = cifs_strict_fsync, 1296 .fsync = cifs_fsync, 1314 .fsync = cifs_fsync, 1332 .fsync = cifs_strict_fsync, 1350 .fsync = cifs_fsync, 1371 .fsync = cifs_dir_fsync,
|
/kernel/linux/linux-5.10/fs/qnx4/ |
H A D | dir.c | 111 .fsync = generic_file_fsync,
|