| 135 | } |
| 136 | |
| 137 | static void |
| 138 | mount_fini(void *mem, int size) |
| 139 | { |
| 140 | struct mount *mp; |
| 141 | |
| 142 | mp = (struct mount *)mem; |
| 143 | uma_zfree_pcpu(pcpu_zone_16, mp->mnt_pcpu); |
| 144 | lockdestroy(&mp->mnt_explock); |
| 145 | mtx_destroy(&mp->mnt_listmtx); |
| 146 | mtx_destroy(&mp->mnt_mtx); |
| 147 | } |
| 148 | |
| 149 | static void |
| 150 | vfs_mount_init(void *dummy __unused) |
nothing calls this directly
no test coverage detected