MCPcopy Create free account
hub / github.com/F-Stack/f-stack / vfs_op_exit_locked

Function vfs_op_exit_locked

freebsd/kern/vfs_mount.c:1561–1571  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1559}
1560
1561void
1562vfs_op_exit_locked(struct mount *mp)
1563{
1564
1565 mtx_assert(MNT_MTX(mp), MA_OWNED);
1566
1567 if (mp->mnt_vfs_ops <= 0)
1568 panic("%s: invalid vfs_ops count %d for mp %p\n",
1569 __func__, mp->mnt_vfs_ops, mp);
1570 mp->mnt_vfs_ops--;
1571}
1572
1573void
1574vfs_op_exit(struct mount *mp)

Callers 4

vfs_write_suspendFunction · 0.85
dounmount_cleanupFunction · 0.85
vfs_op_exitFunction · 0.85
dounmountFunction · 0.85

Calls 2

mtx_assertFunction · 0.85
panicFunction · 0.70

Tested by

no test coverage detected