| 1559 | } |
| 1560 | |
| 1561 | void |
| 1562 | vfs_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 | |
| 1573 | void |
| 1574 | vfs_op_exit(struct mount *mp) |
no test coverage detected