| 514 | static MALLOC_DEFINE(M_VFSCACHE, "vfscache", "VFS name cache entries"); |
| 515 | |
| 516 | static inline void |
| 517 | cache_assert_vlp_locked(struct mtx *vlp) |
| 518 | { |
| 519 | |
| 520 | if (vlp != NULL) |
| 521 | mtx_assert(vlp, MA_OWNED); |
| 522 | } |
| 523 | |
| 524 | static inline void |
| 525 | cache_assert_vnode_locked(struct vnode *vp) |
no test coverage detected