| 5659 | } |
| 5660 | |
| 5661 | void |
| 5662 | vop_deleteextattr_pre(void *ap) |
| 5663 | { |
| 5664 | struct vop_deleteextattr_args *a; |
| 5665 | struct vnode *vp; |
| 5666 | |
| 5667 | a = ap; |
| 5668 | vp = a->a_vp; |
| 5669 | vn_seqc_write_begin(vp); |
| 5670 | } |
| 5671 | |
| 5672 | void |
| 5673 | vop_deleteextattr_post(void *ap, int rc) |
nothing calls this directly
no test coverage detected