Home
last modified time | relevance | path

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

/freebsd/sys/kern/
H A Dvfs_mount.c496 struct mount_pcpu *mpcpu; in vfs_ref_from_vp() local
526 struct mount_pcpu *mpcpu; in vfs_ref() local
644 struct mount_pcpu *mpcpu; in vfs_rel() local
1857 struct mount_pcpu *mpcpu; in vfs_op_enter() local
1871 mpcpu->mntp_ref = 0; in vfs_op_enter()
1874 mpcpu->mntp_lockref = 0; in vfs_op_enter()
1933 struct mount_pcpu *mpcpu; in vfs_op_wait_func() local
1962 struct mount_pcpu *mpcpu; in vfs_assert_mount_counters() local
1980 struct mount_pcpu *mpcpu; in vfs_dump_mount_counters() local
1991 ref += mpcpu->mntp_ref; in vfs_dump_mount_counters()
[all …]
H A Dvfs_cache.c5590 struct mount_pcpu *mpcpu, *prev_mpcpu; in cache_fplookup_climb_mount() local
5613 vfs_op_thread_exit_crit(mp, mpcpu); in cache_fplookup_climb_mount()
5617 vfs_op_thread_exit_crit(mp, mpcpu); in cache_fplookup_climb_mount()
5622 vfs_op_thread_exit_crit(mp, mpcpu); in cache_fplookup_climb_mount()
5627 vfs_op_thread_exit_crit(mp, mpcpu); in cache_fplookup_climb_mount()
5631 prev_mpcpu = mpcpu; in cache_fplookup_climb_mount()
5647 struct mount_pcpu *mpcpu; in cache_fplookup_cross_mount() local
5664 vfs_op_thread_exit_crit(mp, mpcpu); in cache_fplookup_cross_mount()
5668 vfs_op_thread_exit_crit(mp, mpcpu); in cache_fplookup_cross_mount()
5673 vfs_op_thread_exit_crit(mp, mpcpu); in cache_fplookup_cross_mount()
[all …]
H A Dvfs_subr.c841 struct mount_pcpu *mpcpu; in vfs_busy() local
846 if (vfs_op_thread_enter(mp, mpcpu)) { in vfs_busy()
850 vfs_mp_count_add_pcpu(mpcpu, ref, 1); in vfs_busy()
852 vfs_op_thread_exit(mp, mpcpu); in vfs_busy()
904 struct mount_pcpu *mpcpu; in vfs_unbusy() local
909 if (vfs_op_thread_enter(mp, mpcpu)) { in vfs_unbusy()
912 vfs_mp_count_sub_pcpu(mpcpu, ref, 1); in vfs_unbusy()
913 vfs_op_thread_exit(mp, mpcpu); in vfs_unbusy()
6783 struct mount_pcpu *mpcpu; in vfs_cache_root() local
6791 vfs_op_thread_exit(mp, mpcpu); in vfs_cache_root()
[all …]
H A Dvfs_vnops.c1869 struct mount_pcpu *mpcpu; in vn_start_write_refed() local
1873 vfs_op_thread_enter(mp, mpcpu)) { in vn_start_write_refed()
1875 vfs_mp_count_add_pcpu(mpcpu, writeopcount, 1); in vn_start_write_refed()
1876 vfs_op_thread_exit(mp, mpcpu); in vn_start_write_refed()
2039 struct mount_pcpu *mpcpu; in vn_finished_write() local
2045 if (vfs_op_thread_enter(mp, mpcpu)) { in vn_finished_write()
2046 vfs_mp_count_sub_pcpu(mpcpu, writeopcount, 1); in vn_finished_write()
2047 vfs_mp_count_sub_pcpu(mpcpu, ref, 1); in vn_finished_write()
2048 vfs_op_thread_exit(mp, mpcpu); in vn_finished_write()
/freebsd/sys/sys/
H A Dmount.h1142 MPASS(mpcpu->mntp_thread_in_ops == 0); \