| 5760 | } |
| 5761 | |
| 5762 | void |
| 5763 | vop_mknod_post(void *ap, int rc) |
| 5764 | { |
| 5765 | struct vop_mknod_args *a; |
| 5766 | struct vnode *dvp; |
| 5767 | |
| 5768 | a = ap; |
| 5769 | dvp = a->a_dvp; |
| 5770 | vn_seqc_write_end(dvp); |
| 5771 | if (!rc) |
| 5772 | VFS_KNOTE_LOCKED(dvp, NOTE_WRITE); |
| 5773 | } |
| 5774 | |
| 5775 | void |
| 5776 | vop_reclaim_post(void *ap, int rc) |
nothing calls this directly
no test coverage detected