Searched refs:mpcpu (Results 1 – 5 of 5) sorted by relevance
| /src/sys/kern/ |
| H A D | vfs_mount.c | 497 struct mount_pcpu *mpcpu; in vfs_ref_from_vp() local 503 if (vfs_op_thread_enter(mp, mpcpu)) { in vfs_ref_from_vp() 505 vfs_mp_count_add_pcpu(mpcpu, ref, 1); in vfs_ref_from_vp() 506 vfs_op_thread_exit(mp, mpcpu); in vfs_ref_from_vp() 508 vfs_op_thread_exit(mp, mpcpu); in vfs_ref_from_vp() 527 struct mount_pcpu *mpcpu; in vfs_ref() local 530 if (vfs_op_thread_enter(mp, mpcpu)) { in vfs_ref() 531 vfs_mp_count_add_pcpu(mpcpu, ref, 1); in vfs_ref() 532 vfs_op_thread_exit(mp, mpcpu); in vfs_ref() 645 struct mount_pcpu *mpcpu; in vfs_rel() local [all …]
|
| H A D | vfs_subr.c | 877 struct mount_pcpu *mpcpu; in vfs_busy() local 882 if (vfs_op_thread_enter(mp, mpcpu)) { in vfs_busy() 886 vfs_mp_count_add_pcpu(mpcpu, ref, 1); in vfs_busy() 887 vfs_mp_count_add_pcpu(mpcpu, lockref, 1); in vfs_busy() 888 vfs_op_thread_exit(mp, mpcpu); in vfs_busy() 940 struct mount_pcpu *mpcpu; in vfs_unbusy() local 945 if (vfs_op_thread_enter(mp, mpcpu)) { in vfs_unbusy() 947 vfs_mp_count_sub_pcpu(mpcpu, lockref, 1); in vfs_unbusy() 948 vfs_mp_count_sub_pcpu(mpcpu, ref, 1); in vfs_unbusy() 949 vfs_op_thread_exit(mp, mpcpu); in vfs_unbusy() [all …]
|
| H A D | vfs_cache.c | 5725 struct mount_pcpu *mpcpu, *prev_mpcpu; in cache_fplookup_climb_mount() local 5740 if (!vfs_op_thread_enter_crit(mp, mpcpu)) { in cache_fplookup_climb_mount() 5748 vfs_op_thread_exit_crit(mp, mpcpu); in cache_fplookup_climb_mount() 5752 vfs_op_thread_exit_crit(mp, mpcpu); in cache_fplookup_climb_mount() 5757 vfs_op_thread_exit_crit(mp, mpcpu); in cache_fplookup_climb_mount() 5762 vfs_op_thread_exit_crit(mp, mpcpu); in cache_fplookup_climb_mount() 5766 prev_mpcpu = mpcpu; in cache_fplookup_climb_mount() 5782 struct mount_pcpu *mpcpu; in cache_fplookup_cross_mount() local 5795 if (!vfs_op_thread_enter_crit(mp, mpcpu)) { in cache_fplookup_cross_mount() 5799 vfs_op_thread_exit_crit(mp, mpcpu); in cache_fplookup_cross_mount() [all …]
|
| H A D | vfs_vnops.c | 2083 struct mount_pcpu *mpcpu; in vn_start_write_refed() local 2087 vfs_op_thread_enter(mp, mpcpu)) { in vn_start_write_refed() 2089 vfs_mp_count_add_pcpu(mpcpu, writeopcount, 1); in vn_start_write_refed() 2090 vfs_op_thread_exit(mp, mpcpu); in vn_start_write_refed() 2253 struct mount_pcpu *mpcpu; in vn_finished_write() local 2259 if (vfs_op_thread_enter(mp, mpcpu)) { in vn_finished_write() 2260 vfs_mp_count_sub_pcpu(mpcpu, writeopcount, 1); in vn_finished_write() 2261 vfs_mp_count_sub_pcpu(mpcpu, ref, 1); in vn_finished_write() 2262 vfs_op_thread_exit(mp, mpcpu); in vn_finished_write()
|
| /src/sys/sys/ |
| H A D | mount.h | 1152 MPASS(mpcpu->mntp_thread_in_ops == 0); \
|