From 5b9b5c8121bf0edacdab9359bc8536551869a07d Mon Sep 17 00:00:00 2001 From: rwatson Date: Sat, 9 Feb 2008 12:49:18 +0000 Subject: Various further non-functional cleanups to coda: - Rename print_vattr to coda_print_vattr and make static, rename print_cred to coda_print_cred. - Remove unused coda_vop_nop. - Add XXX comment because coda_readdir forwards to the cache vnode's readdir rather than venus_readdir, and annotate venus_readdir as unused. - Rename vc_nb_* to vc_*. - Use d_open_t, d_close_t, d_read_t, d_write_t, d_ioctl_t and d_poll_t for prototyping vc_* as that is the intent, don't use our own definitions. - Rename coda_nb_statfs to coda_statfs, rename NB_SFS_SIZ to CODA_SFS_SIZ. - Replace one more OBE reference to NetBSD with a reference to FreeBSD. - Tidy up a little vertical whitespace here and there. - Annotate coda_nc_zapvnode as unused. - Remove unused vcodattach. - Annotate VM_INTR as unused. - Annotate that coda_fhtovp is unused and doesn't match the FreeBSD prototype, so isn't hooked up to vfs_fhtovp. If we want NFS export of Coda to work someday, this needs to be fixed. - Remove unused getNewVnode. - Remove unused coda_vget, coda_init, coda_quotactl prototypes. MFC after: 1 month --- sys/fs/coda/coda_vfsops.h | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) (limited to 'sys/fs/coda/coda_vfsops.h') diff --git a/sys/fs/coda/coda_vfsops.h b/sys/fs/coda/coda_vfsops.h index 4dbc473..b661e0a 100644 --- a/sys/fs/coda/coda_vfsops.h +++ b/sys/fs/coda/coda_vfsops.h @@ -53,10 +53,5 @@ int coda_fhtovp(struct mount *, struct fid *, struct mbuf *, struct vnode **, vfs_mount_t coda_mount; vfs_unmount_t coda_unmount; vfs_root_t coda_root; -vfs_quotactl_t coda_quotactl; -vfs_statfs_t coda_nb_statfs; +vfs_statfs_t coda_statfs; vfs_sync_t coda_sync; -vfs_vget_t coda_vget; -vfs_init_t coda_init; - -int getNewVnode(struct vnode **vpp); -- cgit v1.1