summaryrefslogtreecommitdiff
path: root/read-cache.c
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2018-10-26 05:22:10 (GMT)
committerJunio C Hamano <gitster@pobox.com>2018-10-26 05:22:10 (GMT)
commit7a43ab6fb25924ca018073ef7ef46e16b3156bd0 (patch)
tree08b311fbea07553319c3cd651908dce9aee98505 /read-cache.c
parent3c4a8214a07d3903c1563ee0bd98a886874146b6 (diff)
parent4c490f3d321da415b8d3bec4a04565906657b9c9 (diff)
downloadgit-7a43ab6fb25924ca018073ef7ef46e16b3156bd0.zip
git-7a43ab6fb25924ca018073ef7ef46e16b3156bd0.tar.gz
git-7a43ab6fb25924ca018073ef7ef46e16b3156bd0.tar.bz2
Merge branch 'sg/split-index-racefix'
The codepath to support the experimental split-index mode had remaining "racily clean" issues fixed. * sg/split-index-racefix: split-index: BUG() when cache entry refers to non-existing shared entry split-index: smudge and add racily clean cache entries to split index split-index: don't compare cached data of entries already marked for split index split-index: count the number of deleted entries t1700-split-index: date back files to avoid racy situations split-index: add tests to demonstrate the racy split index problem t1700-split-index: document why FSMONITOR is disabled in this test script
Diffstat (limited to 'read-cache.c')
-rw-r--r--read-cache.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/read-cache.c b/read-cache.c
index 1df5c16..d579582 100644
--- a/read-cache.c
+++ b/read-cache.c
@@ -345,7 +345,7 @@ static int is_racy_stat(const struct index_state *istate,
);
}
-static int is_racy_timestamp(const struct index_state *istate,
+int is_racy_timestamp(const struct index_state *istate,
const struct cache_entry *ce)
{
return (!S_ISGITLINK(ce->ce_mode) &&