Skip to content

Commit d6220cc

Browse files
ttaylorrgitster
authored andcommitted
pack-objects: perform name-hash traversal for unpacked objects
With '--unpacked', pack-objects adds loose objects (which don't appear in any of the excluded packs from '--stdin-packs') to the output pack without considering them as reachability tips for the name-hash traversal. This was an oversight in the original implementation of '--stdin-packs', since the code which enumerates and adds loose objects to the output pack (`add_unreachable_loose_objects()`) did not have access to the 'rev_info' struct found in `read_packs_list_from_stdin()`. Excluding unpacked objects from that traversal doesn't affect the correctness of the resulting pack, but it does make it harder to discover good deltas for loose objects. Now that the 'rev_info' struct is declared outside of `read_packs_list_from_stdin()`, we can pass it to `add_objects_in_unpacked_packs()` and add any loose objects as tips to the above-mentioned traversal, in theory producing slightly tighter packs as a result. Signed-off-by: Taylor Blau <[email protected]> Signed-off-by: Junio C Hamano <[email protected]>
1 parent 97ec432 commit d6220cc

File tree

1 file changed

+12
-8
lines changed

1 file changed

+12
-8
lines changed

builtin/pack-objects.c

Lines changed: 12 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -3879,7 +3879,7 @@ static void read_packs_list_from_stdin(struct rev_info *revs)
38793879
string_list_clear(&exclude_packs, 0);
38803880
}
38813881

3882-
static void add_unreachable_loose_objects(void);
3882+
static void add_unreachable_loose_objects(struct rev_info *revs);
38833883

38843884
static void read_stdin_packs(int rev_list_unpacked)
38853885
{
@@ -3906,7 +3906,7 @@ static void read_stdin_packs(int rev_list_unpacked)
39063906
ignore_packed_keep_in_core = 1;
39073907
read_packs_list_from_stdin(&revs);
39083908
if (rev_list_unpacked)
3909-
add_unreachable_loose_objects();
3909+
add_unreachable_loose_objects(&revs);
39103910

39113911
if (prepare_revision_walk(&revs))
39123912
die(_("revision walk setup failed"));
@@ -4025,7 +4025,7 @@ static void enumerate_cruft_objects(void)
40254025
_("Enumerating cruft objects"), 0);
40264026

40274027
add_objects_in_unpacked_packs();
4028-
add_unreachable_loose_objects();
4028+
add_unreachable_loose_objects(NULL);
40294029

40304030
stop_progress(&progress_state);
40314031
}
@@ -4303,8 +4303,9 @@ static void add_objects_in_unpacked_packs(void)
43034303
}
43044304

43054305
static int add_loose_object(const struct object_id *oid, const char *path,
4306-
void *data UNUSED)
4306+
void *data)
43074307
{
4308+
struct rev_info *revs = data;
43084309
enum object_type type = oid_object_info(the_repository, oid, NULL);
43094310

43104311
if (type < 0) {
@@ -4325,6 +4326,10 @@ static int add_loose_object(const struct object_id *oid, const char *path,
43254326
} else {
43264327
add_object_entry(oid, type, "", 0);
43274328
}
4329+
4330+
if (revs && type == OBJ_COMMIT)
4331+
add_pending_oid(revs, NULL, oid, 0);
4332+
43284333
return 0;
43294334
}
43304335

@@ -4333,11 +4338,10 @@ static int add_loose_object(const struct object_id *oid, const char *path,
43334338
* add_object_entry will weed out duplicates, so we just add every
43344339
* loose object we find.
43354340
*/
4336-
static void add_unreachable_loose_objects(void)
4341+
static void add_unreachable_loose_objects(struct rev_info *revs)
43374342
{
43384343
for_each_loose_file_in_objdir(repo_get_object_directory(the_repository),
4339-
add_loose_object,
4340-
NULL, NULL, NULL);
4344+
add_loose_object, NULL, NULL, revs);
43414345
}
43424346

43434347
static int has_sha1_pack_kept_or_nonlocal(const struct object_id *oid)
@@ -4684,7 +4688,7 @@ static void get_object_list(struct rev_info *revs, int ac, const char **av)
46844688
if (keep_unreachable)
46854689
add_objects_in_unpacked_packs();
46864690
if (pack_loose_unreachable)
4687-
add_unreachable_loose_objects();
4691+
add_unreachable_loose_objects(NULL);
46884692
if (unpack_unreachable)
46894693
loosen_unused_packed_objects();
46904694

0 commit comments

Comments
 (0)