| 1252 | } |
| 1253 | |
| 1254 | static void |
| 1255 | cache_neg_promote(struct namecache *ncp) |
| 1256 | { |
| 1257 | struct neglist *nl; |
| 1258 | |
| 1259 | nl = NCP2NEGLIST(ncp); |
| 1260 | mtx_lock(&nl->nl_lock); |
| 1261 | cache_neg_promote_locked(ncp); |
| 1262 | mtx_unlock(&nl->nl_lock); |
| 1263 | } |
| 1264 | |
| 1265 | static void |
| 1266 | cache_neg_insert(struct namecache *ncp) |
no test coverage detected