Symbol: MP
bin/mined/mined.h
356
void MP(int);
bin/mined/mined1.c
1241
/* 000-017 */ MA, BL, MP, YA, SD, EL, MN, IF, DPC, S, S, DT, RD, S, DNW,LIB,
sys/sys/mount.h
631
#define VFS_MOUNT(MP, PATH, DATA, CRED) \
sys/sys/mount.h
632
vfs_mount(MP, PATH, DATA, CRED)
sys/sys/mount.h
633
#define VFS_START(MP, FLAGS) \
sys/sys/mount.h
634
vfs_start(MP, FLAGS)
sys/sys/mount.h
635
#define VFS_UNMOUNT(MP, FORCE) \
sys/sys/mount.h
636
vfs_unmount(MP, FORCE)
sys/sys/mount.h
637
#define VFS_ROOT(MP, VPP) \
sys/sys/mount.h
638
vfs_root(MP, VPP)
sys/sys/mount.h
639
#define VFS_QUOTACTL(MP, C, U, A, CRED) \
sys/sys/mount.h
640
vfs_quotactl(MP, C, U, A, CRED)
sys/sys/mount.h
641
#define VFS_STATFS(MP, SBP, CRED) \
sys/sys/mount.h
642
vfs_statfs(MP, SBP, CRED)
sys/sys/mount.h
643
#define VFS_STATVFS(MP, SBP, CRED) \
sys/sys/mount.h
644
vfs_statvfs(MP, SBP, CRED)
sys/sys/mount.h
645
#define VFS_SYNC(MP, WAIT) \
sys/sys/mount.h
646
vfs_sync(MP, WAIT)
sys/sys/mount.h
647
#define VFS_VGET(MP, DVP, INO, VPP) \
sys/sys/mount.h
648
vfs_vget(MP, DVP, INO, VPP)
sys/sys/mount.h
649
#define VFS_FHTOVP(MP, ROOTVP, FIDP, VPP) \
sys/sys/mount.h
650
vfs_fhtovp(MP, ROOTVP, FIDP, VPP)
sys/sys/mount.h
653
#define VFS_CHECKEXP(MP, NAM, EXFLG, CRED) \
sys/sys/mount.h
654
vfs_checkexp(MP, NAM, EXFLG, CRED)
sys/sys/mount.h
655
#define VFS_EXTATTRCTL(MP, C, FVP, NS, N, CRED) \
sys/sys/mount.h
656
vfs_extattrctl(MP, C, FVP, NS, N, CRED)
sys/sys/mount.h
657
#define VFS_ACCOUNT(MP, U, G, D) \
sys/sys/mount.h
658
if ((MP->mnt_op->vfs_account != NULL) && (D != 0)) \
sys/sys/mount.h
659
MP->mnt_op->vfs_account(MP, U, G, D);
sys/sys/mount.h
660
#define VFS_ACINIT(MP, ERROR) \
sys/sys/mount.h
661
if (vfs_quota_enabled && MP->mnt_op->vfs_acinit != NULL) \
sys/sys/mount.h
662
ERROR = MP->mnt_op->vfs_acinit(MP);
sys/sys/mount.h
663
#define VFS_ACDONE(MP) \
sys/sys/mount.h
664
if (vfs_quota_enabled && MP->mnt_op->vfs_acdone != NULL) \
sys/sys/mount.h
665
MP->mnt_op->vfs_acdone(MP);
sys/sys/mount.h
666
#define VFS_NCPGEN_SET(MP, NCP) \
sys/sys/mount.h
667
MP->mnt_op->vfs_ncpgen_set(MP, NCP)
sys/sys/mount.h
668
#define VFS_NCPGEN_TEST(MP, NCP) \
sys/sys/mount.h
669
MP->mnt_op->vfs_ncpgen_test(MP, NCP)
sys/sys/mount.h
670
#define VFS_MODIFYING(MP) \
sys/sys/mount.h
671
MP->mnt_op->vfs_modifying(MP)