Lines Matching refs:MP

805 #define	VFS_MOUNT(MP) ({						\  argument
808 TSRAW(curthread, TS_ENTER, "VFS_MOUNT", (MP)->mnt_vfc->vfc_name);\
809 _rc = (*(MP)->mnt_op->vfs_mount)(MP); \
810 TSRAW(curthread, TS_EXIT, "VFS_MOUNT", (MP)->mnt_vfc->vfc_name);\
813 #define VFS_UNMOUNT(MP, FORCE) ({ \ argument
816 _rc = (*(MP)->mnt_op->vfs_unmount)(MP, FORCE); \
819 #define VFS_ROOT(MP, FLAGS, VPP) ({ \ argument
822 _rc = (*(MP)->mnt_op->vfs_root)(MP, FLAGS, VPP); \
825 #define VFS_CACHEDROOT(MP, FLAGS, VPP) ({ \ argument
828 _rc = (*(MP)->mnt_op->vfs_cachedroot)(MP, FLAGS, VPP); \
831 #define VFS_QUOTACTL(MP, C, U, A) ({ \ argument
834 _rc = (*(MP)->mnt_op->vfs_quotactl)(MP, C, U, A); \
837 #define VFS_STATFS(MP, SBP) ({ \ argument
840 _rc = __vfs_statfs((MP), (SBP)); \
843 #define VFS_SYNC(MP, WAIT) ({ \ argument
846 _rc = (*(MP)->mnt_op->vfs_sync)(MP, WAIT); \
849 #define VFS_VGET(MP, INO, FLAGS, VPP) ({ \ argument
852 _rc = (*(MP)->mnt_op->vfs_vget)(MP, INO, FLAGS, VPP); \
855 #define VFS_FHTOVP(MP, FIDP, FLAGS, VPP) ({ \ argument
858 _rc = (*(MP)->mnt_op->vfs_fhtovp)(MP, FIDP, FLAGS, VPP); \
861 #define VFS_CHECKEXP(MP, NAM, EXFLG, CRED, NUMSEC, SEC) ({ \ argument
864 _rc = (*(MP)->mnt_op->vfs_checkexp)(MP, NAM, EXFLG, CRED, NUMSEC,\
868 #define VFS_EXTATTRCTL(MP, C, FN, NS, N) ({ \ argument
871 _rc = (*(MP)->mnt_op->vfs_extattrctl)(MP, C, FN, NS, N); \
874 #define VFS_SYSCTL(MP, OP, REQ) ({ \ argument
877 _rc = (*(MP)->mnt_op->vfs_sysctl)(MP, OP, REQ); \
880 #define VFS_SUSP_CLEAN(MP) do { \ argument
881 if (*(MP)->mnt_op->vfs_susp_clean != NULL) { \
882 (*(MP)->mnt_op->vfs_susp_clean)(MP); \
886 #define VFS_RECLAIM_LOWERVP(MP, VP) do { \ argument
887 if (*(MP)->mnt_op->vfs_reclaim_lowervp != NULL) { \
888 (*(MP)->mnt_op->vfs_reclaim_lowervp)((MP), (VP)); \
892 #define VFS_UNLINK_LOWERVP(MP, VP) do { \ argument
893 if (*(MP)->mnt_op->vfs_unlink_lowervp != NULL) { \
894 (*(MP)->mnt_op->vfs_unlink_lowervp)((MP), (VP)); \
898 #define VFS_PURGE(MP) do { \ argument
899 if (*(MP)->mnt_op->vfs_purge != NULL) { \
900 (*(MP)->mnt_op->vfs_purge)(MP); \