[PATCH 19/39] pack: add repository argument to rearrange_packed_git
From: Jonathan Nieder <hidden>
Date: 2017-08-30 07:04:00
Subsystem:
the rest · Maintainer:
Linus Torvalds
Add a repository argument to allow the rearrange_packed_git caller to be more specific about which repository to handle. This is a small mechanical change; it doesn't change the implementation to handle repositories other than the_repository yet. As with the previous commits, use a macro to catch callers passing a repository other than the_repository at compile time. Signed-off-by: Stefan Beller <redacted> Signed-off-by: Jonathan Nieder <redacted> --- packfile.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-)
diff --git a/packfile.c b/packfile.c
index 3a841c0f69..1d03bf48b4 100644
--- a/packfile.c
+++ b/packfile.c@@ -850,7 +850,8 @@ static int sort_pack(const void *a_, const void *b_) return -1; } -static void rearrange_packed_git(void) +#define rearrange_packed_git(r) rearrange_packed_git_##r() +static void rearrange_packed_git_the_repository(void) { the_repository->objects.packed_git = llist_mergesort( the_repository->objects.packed_git, get_next_packed_git,
@@ -876,7 +877,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(the_repository, alt->path, 0); - rearrange_packed_git(); + rearrange_packed_git(the_repository); prepare_packed_git_mru(); the_repository->objects.packed_git_initialized = 1; }
--
2.14.1.581.gf28d330327