| 763 | |
| 764 | #ifdef INVARIANTS |
| 765 | static void |
| 766 | cache_assert_bucket_locked(struct namecache *ncp) |
| 767 | { |
| 768 | struct mtx *blp; |
| 769 | |
| 770 | blp = NCP2BUCKETLOCK(ncp); |
| 771 | mtx_assert(blp, MA_OWNED); |
| 772 | } |
| 773 | |
| 774 | static void |
| 775 | cache_assert_bucket_unlocked(struct namecache *ncp) |
no test coverage detected