| 753 | } |
| 754 | |
| 755 | static inline struct mtx * |
| 756 | NCP2BUCKETLOCK(struct namecache *ncp) |
| 757 | { |
| 758 | uint32_t hash; |
| 759 | |
| 760 | hash = cache_get_hash(ncp->nc_name, ncp->nc_nlen, ncp->nc_dvp); |
| 761 | return (HASH2BUCKETLOCK(hash)); |
| 762 | } |
| 763 | |
| 764 | #ifdef INVARIANTS |
| 765 | static void |
no test coverage detected