| 868 | } |
| 869 | |
| 870 | static void |
| 871 | cache_unlock_vnodes(struct mtx *vlp1, struct mtx *vlp2) |
| 872 | { |
| 873 | |
| 874 | MPASS(vlp1 != NULL || vlp2 != NULL); |
| 875 | |
| 876 | if (vlp1 != NULL) |
| 877 | mtx_unlock(vlp1); |
| 878 | if (vlp2 != NULL) |
| 879 | mtx_unlock(vlp2); |
| 880 | } |
| 881 | |
| 882 | static int |
| 883 | sysctl_nchstats(SYSCTL_HANDLER_ARGS) |
no test coverage detected