From 378cd3b05d24e35b8f882e3eff724bb1ad5459f7 Mon Sep 17 00:00:00 2001 From: kan Date: Tue, 11 Mar 2003 22:15:10 +0000 Subject: Rename vfs_stdsync function to vfs_stdnosync which matches more closely what function is really doing. Update all existing consumers to use the new name. Introduce a new vfs_stdsync function, which iterates over mount point's vnodes and call FSYNC on each one of them in turn. Make nwfs and smbfs use this new function instead of rolling their own identical sync implementations. Reviewed by: jeff --- sys/fs/cd9660/cd9660_vfsops.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'sys/fs/cd9660') diff --git a/sys/fs/cd9660/cd9660_vfsops.c b/sys/fs/cd9660/cd9660_vfsops.c index a44df4c..b5aff73 100644 --- a/sys/fs/cd9660/cd9660_vfsops.c +++ b/sys/fs/cd9660/cd9660_vfsops.c @@ -79,7 +79,7 @@ static struct vfsops cd9660_vfsops = { cd9660_root, vfs_stdquotactl, cd9660_statfs, - vfs_stdsync, + vfs_stdnosync, cd9660_vget, cd9660_fhtovp, vfs_stdcheckexp, -- cgit v1.1