| 201 | } |
| 202 | |
| 203 | static int |
| 204 | vfs_cachedroot_sigdefer(struct mount *mp, int flags, struct vnode **vpp) |
| 205 | { |
| 206 | int prev_stops, rc; |
| 207 | |
| 208 | prev_stops = sigdeferstop(SIGDEFERSTOP_SILENT); |
| 209 | rc = (*mp->mnt_vfc->vfc_vfsops_sd->vfs_cachedroot)(mp, flags, vpp); |
| 210 | sigallowstop(prev_stops); |
| 211 | return (rc); |
| 212 | } |
| 213 | |
| 214 | static int |
| 215 | vfs_quotactl_sigdefer(struct mount *mp, int cmd, uid_t uid, void *arg) |
nothing calls this directly
no test coverage detected