MP 496 sys/mount.h #define VFS_MOUNT(MP, PATH, DATA, NDP, P) \ MP 497 sys/mount.h (*(MP)->mnt_op->vfs_mount)(MP, PATH, DATA, NDP, P) MP 498 sys/mount.h #define VFS_START(MP, FLAGS, P) (*(MP)->mnt_op->vfs_start)(MP, FLAGS, P) MP 499 sys/mount.h #define VFS_UNMOUNT(MP, FORCE, P) (*(MP)->mnt_op->vfs_unmount)(MP, FORCE, P) MP 500 sys/mount.h #define VFS_ROOT(MP, VPP) (*(MP)->mnt_op->vfs_root)(MP, VPP) MP 501 sys/mount.h #define VFS_QUOTACTL(MP,C,U,A,P) (*(MP)->mnt_op->vfs_quotactl)(MP, C, U, A, P) MP 502 sys/mount.h #define VFS_STATFS(MP, SBP, P) (*(MP)->mnt_op->vfs_statfs)(MP, SBP, P) MP 503 sys/mount.h #define VFS_SYNC(MP, WAIT, C, P) (*(MP)->mnt_op->vfs_sync)(MP, WAIT, C, P) MP 504 sys/mount.h #define VFS_VGET(MP, INO, VPP) (*(MP)->mnt_op->vfs_vget)(MP, INO, VPP) MP 505 sys/mount.h #define VFS_FHTOVP(MP, FIDP, VPP) \ MP 506 sys/mount.h (*(MP)->mnt_op->vfs_fhtovp)(MP, FIDP, VPP) MP 508 sys/mount.h #define VFS_CHECKEXP(MP, NAM, EXFLG, CRED) \ MP 509 sys/mount.h (*(MP)->mnt_op->vfs_checkexp)(MP, NAM, EXFLG, CRED)