Skip to content

Commit a3e6b42

Browse files
committed
Merge branch 'js/fsmonitor-unflake'
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
2 parents bdc81d1 + b5a8169 commit a3e6b42

File tree

8 files changed

+14
-13
lines changed

8 files changed

+14
-13
lines changed

apply.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -4310,7 +4310,7 @@ static int add_index_file(struct apply_state *state,
43104310
"created file '%s'"),
43114311
path);
43124312
}
4313-
fill_stat_cache_info(ce, &st);
4313+
fill_stat_cache_info(state->repo->index, ce, &st);
43144314
}
43154315
if (write_object_file(buf, size, blob_type, &ce->oid) < 0) {
43164316
discard_cache_entry(ce);

builtin/update-index.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -280,7 +280,7 @@ static int add_one_path(const struct cache_entry *old, const char *path, int len
280280
memcpy(ce->name, path, len);
281281
ce->ce_flags = create_ce_flags(0);
282282
ce->ce_namelen = len;
283-
fill_stat_cache_info(ce, st);
283+
fill_stat_cache_info(&the_index, ce, st);
284284
ce->ce_mode = ce_mode_from_stat(old, st->st_mode);
285285

286286
if (index_path(&the_index, &ce->oid, path, st,

cache.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -826,7 +826,7 @@ int match_stat_data(const struct stat_data *sd, struct stat *st);
826826
int match_stat_data_racy(const struct index_state *istate,
827827
const struct stat_data *sd, struct stat *st);
828828

829-
void fill_stat_cache_info(struct cache_entry *ce, struct stat *st);
829+
void fill_stat_cache_info(struct index_state *istate, struct cache_entry *ce, struct stat *st);
830830

831831
#define REFRESH_REALLY 0x0001 /* ignore_valid */
832832
#define REFRESH_UNMERGED 0x0002 /* allow unmerged */

diff-lib.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -232,7 +232,7 @@ int run_diff_files(struct rev_info *revs, unsigned int option)
232232

233233
if (!changed && !dirty_submodule) {
234234
ce_mark_uptodate(ce);
235-
mark_fsmonitor_valid(ce);
235+
mark_fsmonitor_valid(istate, ce);
236236
if (!revs->diffopt.flags.find_copies_harder)
237237
continue;
238238
}

entry.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -373,7 +373,7 @@ static int write_entry(struct cache_entry *ce,
373373
if (lstat(ce->name, &st) < 0)
374374
return error_errno("unable to stat just-written file %s",
375375
ce->name);
376-
fill_stat_cache_info(ce, &st);
376+
fill_stat_cache_info(state->istate, ce, &st);
377377
ce->ce_flags |= CE_UPDATE_IN_BASE;
378378
mark_fsmonitor_invalid(state->istate, ce);
379379
state->istate->cache_changed |= CE_ENTRY_CHANGED;

fsmonitor.h

+3-2
Original file line numberDiff line numberDiff line change
@@ -49,9 +49,10 @@ void refresh_fsmonitor(struct index_state *istate);
4949
* called any time the cache entry has been updated to reflect the
5050
* current state of the file on disk.
5151
*/
52-
static inline void mark_fsmonitor_valid(struct cache_entry *ce)
52+
static inline void mark_fsmonitor_valid(struct index_state *istate, struct cache_entry *ce)
5353
{
54-
if (core_fsmonitor) {
54+
if (core_fsmonitor && !(ce->ce_flags & CE_FSMONITOR_VALID)) {
55+
istate->cache_changed = 1;
5556
ce->ce_flags |= CE_FSMONITOR_VALID;
5657
trace_printf_key(&trace_fsmonitor, "mark_fsmonitor_clean '%s'", ce->name);
5758
}

preload-index.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ static void *preload_thread(void *_data)
7878
if (ie_match_stat(index, ce, &st, CE_MATCH_RACY_IS_DIRTY|CE_MATCH_IGNORE_FSMONITOR))
7979
continue;
8080
ce_mark_uptodate(ce);
81-
mark_fsmonitor_valid(ce);
81+
mark_fsmonitor_valid(index, ce);
8282
} while (--nr > 0);
8383
if (p->progress) {
8484
struct progress_data *pd = p->progress;

read-cache.c

+5-5
Original file line numberDiff line numberDiff line change
@@ -195,7 +195,7 @@ int match_stat_data(const struct stat_data *sd, struct stat *st)
195195
* cache, ie the parts that aren't tracked by GIT, and only used
196196
* to validate the cache.
197197
*/
198-
void fill_stat_cache_info(struct cache_entry *ce, struct stat *st)
198+
void fill_stat_cache_info(struct index_state *istate, struct cache_entry *ce, struct stat *st)
199199
{
200200
fill_stat_data(&ce->ce_stat_data, st);
201201

@@ -204,7 +204,7 @@ void fill_stat_cache_info(struct cache_entry *ce, struct stat *st)
204204

205205
if (S_ISREG(st->st_mode)) {
206206
ce_mark_uptodate(ce);
207-
mark_fsmonitor_valid(ce);
207+
mark_fsmonitor_valid(istate, ce);
208208
}
209209
}
210210

@@ -728,7 +728,7 @@ int add_to_index(struct index_state *istate, const char *path, struct stat *st,
728728
memcpy(ce->name, path, namelen);
729729
ce->ce_namelen = namelen;
730730
if (!intent_only)
731-
fill_stat_cache_info(ce, st);
731+
fill_stat_cache_info(istate, ce, st);
732732
else
733733
ce->ce_flags |= CE_INTENT_TO_ADD;
734734

@@ -1432,7 +1432,7 @@ static struct cache_entry *refresh_cache_ent(struct index_state *istate,
14321432
*/
14331433
if (!S_ISGITLINK(ce->ce_mode)) {
14341434
ce_mark_uptodate(ce);
1435-
mark_fsmonitor_valid(ce);
1435+
mark_fsmonitor_valid(istate, ce);
14361436
}
14371437
return ce;
14381438
}
@@ -1447,7 +1447,7 @@ static struct cache_entry *refresh_cache_ent(struct index_state *istate,
14471447
updated = make_empty_cache_entry(istate, ce_namelen(ce));
14481448
copy_cache_entry(updated, ce);
14491449
memcpy(updated->name, ce->name, ce->ce_namelen + 1);
1450-
fill_stat_cache_info(updated, &st);
1450+
fill_stat_cache_info(istate, updated, &st);
14511451
/*
14521452
* If ignore_valid is not set, we should leave CE_VALID bit
14531453
* alone. Otherwise, paths marked with --no-assume-unchanged

0 commit comments

Comments
 (0)