| 827 | } |
| 828 | |
| 829 | static void |
| 830 | cache_unlock_all_vnodes(void) |
| 831 | { |
| 832 | u_int i; |
| 833 | |
| 834 | for (i = 0; i < numvnodelocks; i++) |
| 835 | mtx_unlock(&vnodelocks[i]); |
| 836 | } |
| 837 | |
| 838 | static int |
| 839 | cache_trylock_vnodes(struct mtx *vlp1, struct mtx *vlp2) |
no test coverage detected