Skip to content

Commit 09e3ab9

Browse files
dschoGit for Windows Build Agent
authored and
Git for Windows Build Agent
committed
mark_fsmonitor_valid(): mark the index as changed if needed
Without this bug fix, t7519's four "status doesn't detect unreported modifications" test cases would fail occasionally (and, oddly enough, *a lot* more frequently on Windows). The reason is that these test cases intentionally use the side effect of `git status` to re-write the index if any updates were detected: they first clean the worktree, run `git status` to update the index as well as show the output to the casual reader, then make the worktree dirty again and expect no changes to reported if running with a mocked fsmonitor hook. The problem with this strategy was that the index was written during said `git status` on the clean worktree for the *wrong* reason: not because the index was marked as changed (it wasn't), but because the recorded mtimes were racy with the index' own mtime. As the mtime granularity on Windows is 100 nanoseconds (see e.g. https://docs.microsoft.com/en-us/windows/desktop/SysInfo/file-times), the mtimes of the files are often enough *not* racy with the index', so that that `git status` call currently does not always update the index (including the fsmonitor extension), causing the test case to fail. The obvious fix: if we change *any* index entry's `CE_FSMONITOR_VALID` flag, we should also mark the index as changed. That will cause the index to be written upon `git status`, *including* an updated fsmonitor extension. Side note: Even though the reader might think that the t7519 issue should be *much* more prevalent on Linux, given that the ext4 filesystem (that seems to be used by every Linux distribution) stores mtimes in nanosecond precision. However, ext4 uses `current_kernel_time()` (see https://unix.stackexchange.com/questions/11599#comment762968_11599; it is *amazingly* hard to find any proper source of information about such ext4 questions) whose accuracy seems to depend on many factors but is safely worse than the 100-nanosecond granularity of NTFS (again, it is *horribly* hard to find anything remotely authoritative about this question). So it seems that the racy index condition that hid the bug fixed by this patch simply is a lot more likely on Linux than on Windows. But not impossible ;-) Signed-off-by: Johannes Schindelin <[email protected]>
1 parent 64014b4 commit 09e3ab9

File tree

4 files changed

+7
-6
lines changed

4 files changed

+7
-6
lines changed

diff-lib.c

Lines changed: 1 addition & 1 deletion
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
}

fsmonitor.h

Lines changed: 3 additions & 2 deletions
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

Lines changed: 1 addition & 1 deletion
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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -204,7 +204,7 @@ void fill_stat_cache_info(struct index_state *istate, struct cache_entry *ce, 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

@@ -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
}

0 commit comments

Comments
 (0)