| 166 | } |
| 167 | |
| 168 | static int |
| 169 | vfs_mount_sigdefer(struct mount *mp) |
| 170 | { |
| 171 | int prev_stops, rc; |
| 172 | |
| 173 | TSRAW(curthread, TS_ENTER, "VFS_MOUNT", mp->mnt_vfc->vfc_name); |
| 174 | prev_stops = sigdeferstop(SIGDEFERSTOP_SILENT); |
| 175 | rc = (*mp->mnt_vfc->vfc_vfsops_sd->vfs_mount)(mp); |
| 176 | sigallowstop(prev_stops); |
| 177 | TSRAW(curthread, TS_EXIT, "VFS_MOUNT", mp->mnt_vfc->vfc_name); |
| 178 | return (rc); |
| 179 | } |
| 180 | |
| 181 | static int |
| 182 | vfs_unmount_sigdefer(struct mount *mp, int mntflags) |
nothing calls this directly
no test coverage detected