Home
last modified time | relevance | path

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

/freebsd-14.2/sys/kern/
H A Dvfs_mount.c497 struct mount_pcpu *mpcpu; in vfs_ref_from_vp() local
527 struct mount_pcpu *mpcpu; in vfs_ref() local
645 struct mount_pcpu *mpcpu; in vfs_rel() local
1865 struct mount_pcpu *mpcpu; in vfs_op_enter() local
1879 mpcpu->mntp_ref = 0; in vfs_op_enter()
1882 mpcpu->mntp_lockref = 0; in vfs_op_enter()
1941 struct mount_pcpu *mpcpu; in vfs_op_wait_func() local
1970 struct mount_pcpu *mpcpu; in vfs_assert_mount_counters() local
1988 struct mount_pcpu *mpcpu; in vfs_dump_mount_counters() local
1999 ref += mpcpu->mntp_ref; in vfs_dump_mount_counters()
[all …]
H A Dvfs_subr.c847 struct mount_pcpu *mpcpu; in vfs_busy() local
852 if (vfs_op_thread_enter(mp, mpcpu)) { in vfs_busy()
856 vfs_mp_count_add_pcpu(mpcpu, ref, 1); in vfs_busy()
858 vfs_op_thread_exit(mp, mpcpu); in vfs_busy()
910 struct mount_pcpu *mpcpu; in vfs_unbusy() local
915 if (vfs_op_thread_enter(mp, mpcpu)) { in vfs_unbusy()
918 vfs_mp_count_sub_pcpu(mpcpu, ref, 1); in vfs_unbusy()
919 vfs_op_thread_exit(mp, mpcpu); in vfs_unbusy()
6798 struct mount_pcpu *mpcpu; in vfs_cache_root() local
6806 vfs_op_thread_exit(mp, mpcpu); in vfs_cache_root()
[all …]
H A Dvfs_vnops.c1871 struct mount_pcpu *mpcpu; in vn_start_write_refed() local
1875 vfs_op_thread_enter(mp, mpcpu)) { in vn_start_write_refed()
1877 vfs_mp_count_add_pcpu(mpcpu, writeopcount, 1); in vn_start_write_refed()
1878 vfs_op_thread_exit(mp, mpcpu); in vn_start_write_refed()
2041 struct mount_pcpu *mpcpu; in vn_finished_write() local
2047 if (vfs_op_thread_enter(mp, mpcpu)) { in vn_finished_write()
2048 vfs_mp_count_sub_pcpu(mpcpu, writeopcount, 1); in vn_finished_write()
2049 vfs_mp_count_sub_pcpu(mpcpu, ref, 1); in vn_finished_write()
2050 vfs_op_thread_exit(mp, mpcpu); in vn_finished_write()
H A Dvfs_cache.c5523 struct mount_pcpu *mpcpu, *prev_mpcpu; in cache_fplookup_climb_mount() local
5546 vfs_op_thread_exit_crit(mp, mpcpu); in cache_fplookup_climb_mount()
5550 vfs_op_thread_exit_crit(mp, mpcpu); in cache_fplookup_climb_mount()
5555 vfs_op_thread_exit_crit(mp, mpcpu); in cache_fplookup_climb_mount()
5560 vfs_op_thread_exit_crit(mp, mpcpu); in cache_fplookup_climb_mount()
5564 prev_mpcpu = mpcpu; in cache_fplookup_climb_mount()
5580 struct mount_pcpu *mpcpu; in cache_fplookup_cross_mount() local
5597 vfs_op_thread_exit_crit(mp, mpcpu); in cache_fplookup_cross_mount()
5601 vfs_op_thread_exit_crit(mp, mpcpu); in cache_fplookup_cross_mount()
5606 vfs_op_thread_exit_crit(mp, mpcpu); in cache_fplookup_cross_mount()
[all …]
/freebsd-14.2/sys/sys/
H A Dmount.h1144 MPASS(mpcpu->mntp_thread_in_ops == 0); \