| 1125 | #define cache_neg_hit_abort(ncp) do { } while (0) |
| 1126 | |
| 1127 | static void |
| 1128 | cache_neg_hit_finish(struct namecache *ncp) |
| 1129 | { |
| 1130 | |
| 1131 | SDT_PROBE2(vfs, namecache, lookup, hit__negative, ncp->nc_dvp, ncp->nc_name); |
| 1132 | counter_u64_add(numneghits, 1); |
| 1133 | } |
| 1134 | |
| 1135 | /* |
| 1136 | * Move a negative entry to the hot list. |
no test coverage detected