| 22 | struct trace_key trace_fsmonitor = TRACE_KEY_INIT(FSMONITOR); |
| 23 | |
| 24 | static void assert_index_minimum(struct index_state *istate, size_t pos) |
| 25 | { |
| 26 | if (pos > istate->cache_nr) |
| 27 | BUG("fsmonitor_dirty has more entries than the index (%"PRIuMAX" > %u)", |
| 28 | (uintmax_t)pos, istate->cache_nr); |
| 29 | } |
| 30 | |
| 31 | static void fsmonitor_ewah_callback(size_t pos, void *is) |
| 32 | { |
no outgoing calls
no test coverage detected