| 3486 | "Process corefile name format string"); |
| 3487 | |
| 3488 | static void |
| 3489 | vnode_close_locked(struct thread *td, struct vnode *vp) |
| 3490 | { |
| 3491 | |
| 3492 | VOP_UNLOCK(vp); |
| 3493 | vn_close(vp, FWRITE, td->td_ucred, td); |
| 3494 | } |
| 3495 | |
| 3496 | /* |
| 3497 | * If the core format has a %I in it, then we need to check |
no test coverage detected