| 5670 | } |
| 5671 | |
| 5672 | void |
| 5673 | vop_deleteextattr_post(void *ap, int rc) |
| 5674 | { |
| 5675 | struct vop_deleteextattr_args *a; |
| 5676 | struct vnode *vp; |
| 5677 | |
| 5678 | a = ap; |
| 5679 | vp = a->a_vp; |
| 5680 | vn_seqc_write_end(vp); |
| 5681 | if (!rc) |
| 5682 | VFS_KNOTE_LOCKED(a->a_vp, NOTE_ATTRIB); |
| 5683 | } |
| 5684 | |
| 5685 | void |
| 5686 | vop_link_pre(void *ap) |
nothing calls this directly
no test coverage detected