| 5738 | |
| 5739 | #ifdef DEBUG_VFS_LOCKS |
| 5740 | void |
| 5741 | vop_mkdir_debugpost(void *ap, int rc) |
| 5742 | { |
| 5743 | struct vop_mkdir_args *a; |
| 5744 | |
| 5745 | a = ap; |
| 5746 | if (!rc) |
| 5747 | cache_validate(a->a_dvp, *a->a_vpp, a->a_cnp); |
| 5748 | } |
| 5749 | #endif |
| 5750 | |
| 5751 | void |
nothing calls this directly
no test coverage detected