Skip to content

Commit 1b4d882

Browse files
derrickstoleegitster
authored andcommitted
revision: use generation for A..B --topo-order queries
If a commit-graph exists with computed generation numbers, then a 'git rev-list --topo-order -n <N> <rev>' query will use those generation numbers to reduce the number of commits walked before writing N commits. One caveat put in b454241 (revision.c: generation-based topo-order algorithm, 2018-11-01) was to not enable the new algorithm for queries with a revision range "A..B". The logic was placed to walk from "A" and mark those commits as uninteresting, but the performance was actually worse than the existing logic in some cases. The root cause of this performance degradation is that generation numbers _increase_ the number of commits we walk relative to the existing heuristic of walking by commit date. While generation numbers actually guarantee that the algorithm is correct, the existing logic is very rarely wrong and that added requirement is not worth the cost. This motivates the planned "corrected commit date" to replace generation numbers in a future version of Git. The current change enables the logic to use whatever reachability index is currently in the commit-graph (generation numbers or corrected commit date). The limited flag in struct rev_info forces a full walk of the commit history (after discovering the A..B range). Previosuly, it is enabled whenever we see an uninteresting commit. We prevent enabling the parameter when we are planning to use the reachability index for a topo-order. Signed-off-by: Derrick Stolee <[email protected]> Signed-off-by: Junio C Hamano <[email protected]>
1 parent aa25c82 commit 1b4d882

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

revision.c

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -436,7 +436,9 @@ static struct commit *handle_commit(struct rev_info *revs,
436436
die("unable to parse commit %s", name);
437437
if (flags & UNINTERESTING) {
438438
mark_parents_uninteresting(commit);
439-
revs->limited = 1;
439+
440+
if (!revs->topo_order || !generation_numbers_enabled(the_repository))
441+
revs->limited = 1;
440442
}
441443
if (revs->sources) {
442444
char **slot = revision_sources_at(revs->sources, commit);

0 commit comments

Comments
 (0)