diff options
| author | Junio C Hamano <gitster@pobox.com> | 2019-07-25 14:27:10 -0700 |
|---|---|---|
| committer | Junio C Hamano <gitster@pobox.com> | 2019-07-25 14:27:10 -0700 |
| commit | 10432cc810eb9228dde99b38e2b4b37f5c80d12e (patch) | |
| tree | 0a910eec49b51268b53890a259265ba833999b18 /cache.h | |
| parent | Merge branch 'vv/merge-squash-with-explicit-commit' into maint (diff) | |
| parent | mark_fsmonitor_valid(): mark the index as changed if needed (diff) | |
| download | git-10432cc810eb9228dde99b38e2b4b37f5c80d12e.tar.gz git-10432cc810eb9228dde99b38e2b4b37f5c80d12e.zip | |
Merge branch 'js/fsmonitor-unflake' into maint
The data collected by fsmonitor was not properly written back to
the on-disk index file, breaking t7519 tests occasionally, which
has been corrected.
* js/fsmonitor-unflake:
mark_fsmonitor_valid(): mark the index as changed if needed
fill_stat_cache_info(): prepare for an fsmonitor fix
Diffstat (limited to 'cache.h')
| -rw-r--r-- | cache.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -826,7 +826,7 @@ int match_stat_data(const struct stat_data *sd, struct stat *st); int match_stat_data_racy(const struct index_state *istate, const struct stat_data *sd, struct stat *st); -void fill_stat_cache_info(struct cache_entry *ce, struct stat *st); +void fill_stat_cache_info(struct index_state *istate, struct cache_entry *ce, struct stat *st); #define REFRESH_REALLY 0x0001 /* ignore_valid */ #define REFRESH_UNMERGED 0x0002 /* allow unmerged */ |
