| 5198 | */ |
| 5199 | #ifdef INVARIANTS |
| 5200 | static void |
| 5201 | cache_fpl_pathlen_add(struct cache_fpl *fpl, size_t n) |
| 5202 | { |
| 5203 | |
| 5204 | fpl->debug.ni_pathlen += n; |
| 5205 | KASSERT(fpl->debug.ni_pathlen <= PATH_MAX, |
| 5206 | ("%s: pathlen overflow to %zd\n", __func__, fpl->debug.ni_pathlen)); |
| 5207 | } |
| 5208 | |
| 5209 | static void |
| 5210 | cache_fpl_pathlen_sub(struct cache_fpl *fpl, size_t n) |
no outgoing calls
no test coverage detected