| 744 | } |
| 745 | |
| 746 | static inline struct nchashhead * |
| 747 | NCP2BUCKET(struct namecache *ncp) |
| 748 | { |
| 749 | uint32_t hash; |
| 750 | |
| 751 | hash = cache_get_hash(ncp->nc_name, ncp->nc_nlen, ncp->nc_dvp); |
| 752 | return (NCHHASH(hash)); |
| 753 | } |
| 754 | |
| 755 | static inline struct mtx * |
| 756 | NCP2BUCKETLOCK(struct namecache *ncp) |
no test coverage detected