Home
last modified time | relevance | path

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

/freebsd-13.1/sys/kern/
H A Dvfs_mount.c463 struct mount_pcpu *mpcpu; in vfs_ref_from_vp() local
493 struct mount_pcpu *mpcpu; in vfs_ref() local
510 struct mount_pcpu *mpcpu; in vfs_rel() local
1564 struct mount_pcpu *mpcpu; in vfs_op_enter() local
1578 mpcpu->mntp_ref = 0; in vfs_op_enter()
1581 mpcpu->mntp_lockref = 0; in vfs_op_enter()
1637 struct mount_pcpu *mpcpu; in vfs_op_wait_func() local
1666 struct mount_pcpu *mpcpu; in vfs_assert_mount_counters() local
1684 struct mount_pcpu *mpcpu; in vfs_dump_mount_counters() local
1695 ref += mpcpu->mntp_ref; in vfs_dump_mount_counters()
[all …]
H A Dvfs_vnops.c1852 struct mount_pcpu *mpcpu; in vn_start_write_refed() local
1856 vfs_op_thread_enter(mp, mpcpu)) { in vn_start_write_refed()
1858 vfs_mp_count_add_pcpu(mpcpu, writeopcount, 1); in vn_start_write_refed()
1859 vfs_op_thread_exit(mp, mpcpu); in vn_start_write_refed()
2009 struct mount_pcpu *mpcpu; in vn_finished_write() local
2015 if (vfs_op_thread_enter(mp, mpcpu)) { in vn_finished_write()
2016 vfs_mp_count_sub_pcpu(mpcpu, writeopcount, 1); in vn_finished_write()
2017 vfs_mp_count_sub_pcpu(mpcpu, ref, 1); in vn_finished_write()
2018 vfs_op_thread_exit(mp, mpcpu); in vn_finished_write()
H A Dvfs_cache.c5345 struct mount_pcpu *mpcpu, *prev_mpcpu; in cache_fplookup_climb_mount() local
5368 vfs_op_thread_exit_crit(mp, mpcpu); in cache_fplookup_climb_mount()
5372 vfs_op_thread_exit_crit(mp, mpcpu); in cache_fplookup_climb_mount()
5377 vfs_op_thread_exit_crit(mp, mpcpu); in cache_fplookup_climb_mount()
5382 vfs_op_thread_exit_crit(mp, mpcpu); in cache_fplookup_climb_mount()
5386 prev_mpcpu = mpcpu; in cache_fplookup_climb_mount()
5402 struct mount_pcpu *mpcpu; in cache_fplookup_cross_mount() local
5419 vfs_op_thread_exit_crit(mp, mpcpu); in cache_fplookup_cross_mount()
5423 vfs_op_thread_exit_crit(mp, mpcpu); in cache_fplookup_cross_mount()
5428 vfs_op_thread_exit_crit(mp, mpcpu); in cache_fplookup_cross_mount()
[all …]
H A Dvfs_subr.c787 struct mount_pcpu *mpcpu; in vfs_busy() local
792 if (vfs_op_thread_enter(mp, mpcpu)) { in vfs_busy()
796 vfs_mp_count_add_pcpu(mpcpu, ref, 1); in vfs_busy()
798 vfs_op_thread_exit(mp, mpcpu); in vfs_busy()
848 struct mount_pcpu *mpcpu; in vfs_unbusy() local
853 if (vfs_op_thread_enter(mp, mpcpu)) { in vfs_unbusy()
856 vfs_mp_count_sub_pcpu(mpcpu, ref, 1); in vfs_unbusy()
857 vfs_op_thread_exit(mp, mpcpu); in vfs_unbusy()
6645 struct mount_pcpu *mpcpu; in vfs_cache_root() local
6653 vfs_op_thread_exit(mp, mpcpu); in vfs_cache_root()
[all …]
/freebsd-13.1/sys/sys/
H A Dmount.h1089 MPASS(mpcpu->mntp_thread_in_ops == 0); \