Home
last modified time | relevance | path

Searched refs:mpcpu (Results 1 – 5 of 5) sorted by relevance

/freebsd/sys/kern/
H A Dvfs_mount.c497 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
1868 struct mount_pcpu *mpcpu; vfs_op_enter() local
1944 struct mount_pcpu *mpcpu; vfs_op_wait_func() local
1973 struct mount_pcpu *mpcpu; vfs_assert_mount_counters() local
1991 struct mount_pcpu *mpcpu; vfs_dump_mount_counters() local
2034 struct mount_pcpu *mpcpu; vfs_mount_fetch_counter() local
[all...]
H A Dvfs_subr.c877 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 Dvfs_cache.c5725 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 Dvfs_vnops.c2013 struct mount_pcpu *mpcpu; in vn_start_write_refed() local
2017 vfs_op_thread_enter(mp, mpcpu)) { in vn_start_write_refed()
2019 vfs_mp_count_add_pcpu(mpcpu, writeopcount, 1); in vn_start_write_refed()
2020 vfs_op_thread_exit(mp, mpcpu); in vn_start_write_refed()
2183 struct mount_pcpu *mpcpu; in vn_finished_write() local
2189 if (vfs_op_thread_enter(mp, mpcpu)) { in vn_finished_write()
2190 vfs_mp_count_sub_pcpu(mpcpu, writeopcount, 1); in vn_finished_write()
2191 vfs_mp_count_sub_pcpu(mpcpu, ref, 1); in vn_finished_write()
2192 vfs_op_thread_exit(mp, mpcpu); in vn_finished_write()
/freebsd/sys/sys/
H A Dmount.h1152 MPASS(mpcpu->mntp_thread_in_ops == 0); \