CVSROOT: /cvs Module name: src Changes by: nat...@cvs.openbsd.org 2016/04/26 12:37:03
Modified files: sys/isofs/cd9660: cd9660_vfsops.c sys/isofs/udf : udf_vfsops.c sys/miscfs/fuse: fuse_vfsops.c sys/msdosfs : msdosfs_vfsops.c sys/nfs : nfs_vfsops.c sys/ntfs : ntfs_vfsops.c sys/ufs/ext2fs : ext2fs_vfsops.c sys/ufs/mfs : mfs_extern.h mfs_vfsops.c Log message: Populate all necessary statfs members in .vfs_statfs. cd9660, udf, msdosfs and nfsv2 don't set f_namemax. ntfs and ext2fs don't set f_namemeax and f_favail. fusefs doesn't set f_mntfromspec, f_favail and f_iosize. Also, make all filesystems use copy_statfs_info(), so that all statfs information is filled in correctly for the (sb != &mp->mnt-stat) case. ok stefan