rumpvfs.ifspec revision 1.8
1; $NetBSD: rumpvfs.ifspec,v 1.8 2012/11/18 18:39:23 pooka Exp $ 2 3NAME|vfs 4PUBHDR|include/rump/rumpvfs_if_pub.h 5PRIVHDR|librump/rumpvfs/rumpvfs_if_priv.h 6WRAPPERS|librump/rumpvfs/rumpvfs_if_wrappers.c 7 8; type | name | args | attrs 9; 10 11void |getvninfo |struct vnode *, enum rump_vtype *, \ 12 off_t *, dev_t * 13 14struct vfsops * |vfslist_iterate|struct vfsops * 15struct vfsops * |vfs_getopsbyname|const char * 16 17struct vattr * |vattr_init |void 18void |vattr_settype |struct vattr *, enum rump_vtype 19void |vattr_setmode |struct vattr *, mode_t 20void |vattr_setrdev |struct vattr *, dev_t 21void |vattr_free |struct vattr * 22 23void |vp_incref |struct vnode * 24int |vp_getref |struct vnode * 25void |vp_rele |struct vnode * 26 27void |vp_interlock |struct vnode * 28 29int |etfs_register |const char *, const char *, enum rump_etfs_type 30int |etfs_register_withsize |const char *, const char *, \ 31 enum rump_etfs_type, uint64_t, \ 32 uint64_t 33int |etfs_remove |const char * 34 35void |freecn |struct componentname *, int 36int |namei |uint32_t, uint32_t, const char *, \ 37 struct vnode **, struct vnode **, \ 38 struct componentname ** 39struct componentname *|makecn |u_long, u_long, const char *, size_t, \ 40 struct kauth_cred *, struct lwp * 41 42int |vfs_unmount |struct mount *, int 43int |vfs_root |struct mount *, struct vnode **, int 44int |vfs_statvfs |struct mount *, struct statvfs * 45int |vfs_sync |struct mount *, int, struct kauth_cred * 46int |vfs_fhtovp |struct mount *, struct fid *, struct vnode ** 47int |vfs_vptofh |struct vnode *, struct fid *, size_t * 48int |vfs_extattrctl |struct mount *, int, struct vnode *, \ 49 int, const char * 50void |vfs_syncwait |struct mount * 51int |vfs_getmp |const char *, struct mount ** 52 53void |vfs_mount_print|const char *, int 54 55; I picked the wrong header to stop sniffin' glue 56int |syspuffs_glueinit |int, int * |WEAK 57 58; Other compat glue (for sniffing purposes) 59; XXX: (lack of) types 60void |vattr50_to_vattr |const struct vattr *, struct vattr * 61void |vattr_to_vattr50 |const struct vattr *, struct vattr * 62