Searched defs:vfs_sync (Results 1 - 4 of 4) sorted by relevance

/illumos-gate/usr/src/lib/libbc/inc/include/sys/
H A Dvfs.h92 int (*vfs_sync)(); /* flush fs buffers */ member in struct:vfsops
103 #define VFS_SYNC(VFSP) (*(VFSP)->vfs_op->vfs_sync)(VFSP)
/illumos-gate/usr/src/ucbhead/sys/
H A Dvfs.h138 int (*vfs_sync)(struct vfs *, short, struct cred *); member in struct:vfsops
148 int (*vfs_sync)(); /* flush fs buffers */
161 #define VFS_SYNC(vfsp) (*(vfsp)->vfs_op->vfs_sync)(vfsp)
/illumos-gate/usr/src/boot/sys/sys/
H A Dmount.h406 * waitfor flags to vfs_sync() and getfsstat()
637 vfs_sync_t *vfs_sync; member in struct:vfsops
711 _rc = (*(MP)->mnt_op->vfs_sync)(MP, WAIT); \
/illumos-gate/usr/src/uts/common/fs/
H A Dvfs.c259 return (*(vfsp)->vfs_op->vfs_sync)(vfsp, flag, cr);
307 return (*vfssw[fstype].vsw_vfsops.vfs_sync) (NULL, flag, cr);
334 VFSNAME_SYNC, offsetof(vfsops_t, vfs_sync),
508 * non-error vfs_sync routine. Returns zero (0) otherwise.
513 /* vfs_sync() routine is not the default/error function */
514 return (vfs_getops(vfsp)->vfs_sync != fs_sync);
584 * Update every mounted file system. We call the vfs_sync operation of
589 vfs_sync(int flag) function
597 (void) (*vswp->vsw_vfsops.vfs_sync)(NULL, flag,
609 vfs_sync(
[all...]

Completed in 612 milliseconds