public inbox for git@vger.kernel.org 
 help / color / mirror / Atom feed
* [PATCH] commit-reach: stop sorting in paint_down_to_common()
@ 2026-05-27 15:52 René Scharfe
  2026-05-29  8:43 ` Jeff King
  0 siblings, 1 reply; 4+ messages in thread
From: René Scharfe @ 2026-05-27 15:52 UTC (permalink / raw)
  To: Git List

None of the three callers of paint_down_to_common() care about the order
of its result list: merge_bases_many() sorts it again after removing
stale items, remove_redundant_no_gen() and repo_in_merge_bases_many()
throw the list away without even looking at it.  So drop the unnecessary
commit_list_sort_by_date() call.

Signed-off-by: René Scharfe <l.s.r@web•de>
---
 commit-reach.c | 1 -
 1 file changed, 1 deletion(-)

diff --git a/commit-reach.c b/commit-reach.c
index 5a52be90a6..056a7ed8d8 100644
--- a/commit-reach.c
+++ b/commit-reach.c
@@ -137,7 +137,6 @@ static int paint_down_to_common(struct repository *r,
 	}
 
 	clear_prio_queue(&queue);
-	commit_list_sort_by_date(result);
 	return 0;
 }
 
-- 
2.54.0

^ permalink raw reply related	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2026-05-29 19:04 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-05-27 15:52 [PATCH] commit-reach: stop sorting in paint_down_to_common() René Scharfe
2026-05-29  8:43 ` Jeff King
2026-05-29 15:32   ` René Scharfe
2026-05-29 19:04     ` Jeff King

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox