Symbol: MP
sys/arm/mv/armadaxp/armadaxp_mp.c
175
bus_space_write_4(fdtbus_bs_tag, MP, MP_SW_RESET(cpu_num), 0);
sys/arm/xilinx/zy7_gpio.c
161
.bank_min[0] = ZYNQ_BANK_PIN_MIN(MP, 0),
sys/arm/xilinx/zy7_gpio.c
162
.bank_max[0] = ZYNQ_BANK_PIN_MAX(MP, 0),
sys/arm/xilinx/zy7_gpio.c
163
.bank_min[1] = ZYNQ_BANK_PIN_MIN(MP, 1),
sys/arm/xilinx/zy7_gpio.c
164
.bank_max[1] = ZYNQ_BANK_PIN_MAX(MP, 1),
sys/arm/xilinx/zy7_gpio.c
165
.bank_min[2] = ZYNQ_BANK_PIN_MIN(MP, 2),
sys/arm/xilinx/zy7_gpio.c
166
.bank_max[2] = ZYNQ_BANK_PIN_MAX(MP, 2),
sys/arm/xilinx/zy7_gpio.c
167
.bank_min[3] = ZYNQ_BANK_PIN_MIN(MP, 3),
sys/arm/xilinx/zy7_gpio.c
168
.bank_max[3] = ZYNQ_BANK_PIN_MAX(MP, 3),
sys/arm/xilinx/zy7_gpio.c
169
.bank_min[4] = ZYNQ_BANK_PIN_MIN(MP, 4),
sys/arm/xilinx/zy7_gpio.c
170
.bank_max[4] = ZYNQ_BANK_PIN_MAX(MP, 4),
sys/arm/xilinx/zy7_gpio.c
171
.bank_min[5] = ZYNQ_BANK_PIN_MIN(MP, 5),
sys/arm/xilinx/zy7_gpio.c
172
.bank_max[5] = ZYNQ_BANK_PIN_MAX(MP, 5),
sys/arm/xilinx/zy7_gpio.c
270
is_mio = ZYNQ_PIN_IS_MIO(MP, pin);
sys/sys/mount.h
854
#define VFS_MOUNT(MP) ({ \
sys/sys/mount.h
857
TSRAW(curthread, TS_ENTER, "VFS_MOUNT", (MP)->mnt_vfc->vfc_name);\
sys/sys/mount.h
858
_rc = (*(MP)->mnt_op->vfs_mount)(MP); \
sys/sys/mount.h
859
TSRAW(curthread, TS_EXIT, "VFS_MOUNT", (MP)->mnt_vfc->vfc_name);\
sys/sys/mount.h
862
#define VFS_UNMOUNT(MP, FORCE) ({ \
sys/sys/mount.h
865
_rc = (*(MP)->mnt_op->vfs_unmount)(MP, FORCE); \
sys/sys/mount.h
868
#define VFS_ROOT(MP, FLAGS, VPP) ({ \
sys/sys/mount.h
871
_rc = (*(MP)->mnt_op->vfs_root)(MP, FLAGS, VPP); \
sys/sys/mount.h
874
#define VFS_CACHEDROOT(MP, FLAGS, VPP) ({ \
sys/sys/mount.h
877
_rc = (*(MP)->mnt_op->vfs_cachedroot)(MP, FLAGS, VPP); \
sys/sys/mount.h
880
#define VFS_QUOTACTL(MP, C, U, A, MP_BUSY) ({ \
sys/sys/mount.h
883
_rc = (*(MP)->mnt_op->vfs_quotactl)(MP, C, U, A, MP_BUSY); \
sys/sys/mount.h
886
#define VFS_STATFS(MP, SBP) ({ \
sys/sys/mount.h
889
_rc = __vfs_statfs((MP), (SBP)); \
sys/sys/mount.h
892
#define VFS_SYNC(MP, WAIT) ({ \
sys/sys/mount.h
895
_rc = (*(MP)->mnt_op->vfs_sync)(MP, WAIT); \
sys/sys/mount.h
898
#define VFS_VGET(MP, INO, FLAGS, VPP) ({ \
sys/sys/mount.h
901
_rc = (*(MP)->mnt_op->vfs_vget)(MP, INO, FLAGS, VPP); \
sys/sys/mount.h
904
#define VFS_FHTOVP(MP, FIDP, FLAGS, VPP) ({ \
sys/sys/mount.h
907
_rc = (*(MP)->mnt_op->vfs_fhtovp)(MP, FIDP, FLAGS, VPP); \
sys/sys/mount.h
910
#define VFS_CHECKEXP(MP, NAM, EXFLG, CRED, NUMSEC, SEC) ({ \
sys/sys/mount.h
913
_rc = (*(MP)->mnt_op->vfs_checkexp)(MP, NAM, EXFLG, CRED, NUMSEC,\
sys/sys/mount.h
917
#define VFS_EXTATTRCTL(MP, C, FN, NS, N) ({ \
sys/sys/mount.h
920
_rc = (*(MP)->mnt_op->vfs_extattrctl)(MP, C, FN, NS, N); \
sys/sys/mount.h
923
#define VFS_SYSCTL(MP, OP, REQ) ({ \
sys/sys/mount.h
926
_rc = (*(MP)->mnt_op->vfs_sysctl)(MP, OP, REQ); \
sys/sys/mount.h
929
#define VFS_SUSP_CLEAN(MP) do { \
sys/sys/mount.h
930
if (*(MP)->mnt_op->vfs_susp_clean != NULL) { \
sys/sys/mount.h
931
(*(MP)->mnt_op->vfs_susp_clean)(MP); \
sys/sys/mount.h
935
#define VFS_RECLAIM_LOWERVP(MP, VP) do { \
sys/sys/mount.h
936
if (*(MP)->mnt_op->vfs_reclaim_lowervp != NULL) { \
sys/sys/mount.h
937
(*(MP)->mnt_op->vfs_reclaim_lowervp)((MP), (VP)); \
sys/sys/mount.h
941
#define VFS_UNLINK_LOWERVP(MP, VP) do { \
sys/sys/mount.h
942
if (*(MP)->mnt_op->vfs_unlink_lowervp != NULL) { \
sys/sys/mount.h
943
(*(MP)->mnt_op->vfs_unlink_lowervp)((MP), (VP)); \
sys/sys/mount.h
947
#define VFS_PURGE(MP) do { \
sys/sys/mount.h
948
if (*(MP)->mnt_op->vfs_purge != NULL) { \
sys/sys/mount.h
949
(*(MP)->mnt_op->vfs_purge)(MP); \