From: Stefan Beller Date: Fri, 23 Mar 2018 17:45:17 +0000 (+0100) Subject: packfile: allow rearrange_packed_git to handle arbitrary repositories X-Git-Tag: v2.18.0-rc0~143^2~10 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=c235beac4e51ce7ebfefe6c9c38d3b8906222ed2;p=git packfile: allow rearrange_packed_git to handle arbitrary repositories Signed-off-by: Stefan Beller Signed-off-by: Junio C Hamano Signed-off-by: Nguyễn Thái Ngọc Duy Signed-off-by: Junio C Hamano --- diff --git a/packfile.c b/packfile.c index e954b575c3..326c171e98 100644 --- a/packfile.c +++ b/packfile.c @@ -866,10 +866,10 @@ static int sort_pack(const void *a_, const void *b_) return -1; } -static void rearrange_packed_git(void) +static void rearrange_packed_git(struct repository *r) { - the_repository->objects->packed_git = llist_mergesort( - the_repository->objects->packed_git, get_next_packed_git, + r->objects->packed_git = llist_mergesort( + r->objects->packed_git, get_next_packed_git, set_next_packed_git, sort_pack); } @@ -893,7 +893,7 @@ void prepare_packed_git(void) prepare_alt_odb(the_repository); for (alt = the_repository->objects->alt_odb_list; alt; alt = alt->next) prepare_packed_git_one(alt->path, 0); - rearrange_packed_git(); + rearrange_packed_git(the_repository); prepare_packed_git_mru(the_repository); the_repository->objects->packed_git_initialized = 1; }