| 3743 | static void cache_fpl_pathlen_sub(struct cache_fpl *fpl, size_t n); |
| 3744 | |
| 3745 | static void |
| 3746 | cache_fpl_cleanup_cnp(struct componentname *cnp) |
| 3747 | { |
| 3748 | |
| 3749 | uma_zfree(namei_zone, cnp->cn_pnbuf); |
| 3750 | #ifdef DIAGNOSTIC |
| 3751 | cnp->cn_pnbuf = NULL; |
| 3752 | cnp->cn_nameptr = NULL; |
| 3753 | #endif |
| 3754 | } |
| 3755 | |
| 3756 | static struct vnode * |
| 3757 | cache_fpl_handle_root(struct cache_fpl *fpl) |
no test coverage detected