* Invalidate the FSM bit on this CE. This is like mark_fsmonitor_invalid() * but we've already handled the untracked-cache, so let's not repeat that * work. This also lets us have a different trace message so that we can * see everything that was done as part of the refresh-callback. */
| 195 | * see everything that was done as part of the refresh-callback. |
| 196 | */ |
| 197 | static void invalidate_ce_fsm(struct cache_entry *ce) |
| 198 | { |
| 199 | if (ce->ce_flags & CE_FSMONITOR_VALID) { |
| 200 | trace_printf_key(&trace_fsmonitor, |
| 201 | "fsmonitor_refresh_callback INV: '%s'", |
| 202 | ce->name); |
| 203 | ce->ce_flags &= ~CE_FSMONITOR_VALID; |
| 204 | } |
| 205 | } |
| 206 | |
| 207 | static size_t handle_path_with_trailing_slash( |
| 208 | struct index_state *istate, const char *name, int pos); |
no outgoing calls
no test coverage detected