CVSROOT: /cvs Module name: src Changes by: t...@cvs.openbsd.org 2011/04/05 08:14:07
Modified files: sys/isofs/cd9660: cd9660_vnops.c sys/isofs/udf : udf_vnops.c sys/kern : vfs_sync.c vfs_vops.c sys/miscfs/deadfs: dead_vnops.c sys/miscfs/fifofs: fifo_vnops.c sys/miscfs/procfs: procfs_vnops.c sys/miscfs/specfs: spec_vnops.c sys/msdosfs : msdosfs_vnops.c sys/nfs : nfs_vnops.c sys/nnpfs : nnpfs_vfsops-openbsd.c nnpfs_vnodeops-bsd.c sys/ntfs : ntfs_vnops.c sys/sys : vnode.h sys/ufs/ext2fs : ext2fs_vnops.c sys/ufs/ffs : ffs_vnops.c sys/ufs/mfs : mfs_vnops.c Log message: Every single vop_default is set to eopnotsupp, so retire it and return EOPNOTSUPP directly from the VOP_* functions. Filesystems should, at some point fill in every function in the vop_default struct so we can get rid of the 'if' statements in VOP_*.