packfile: add all_packs list
If a repo contains a multi-pack-index, then the packed_git list does not contain the packfiles that are covered by the multi-pack-index. This is important for doing object lookups, abbreviations, and approximating object count. However, there are many operations that really want to iterate over all packfiles. Create a new 'all_packs' linked list that contains this list, starting with the packfiles in the multi-pack-index and then continuing along the packed_git linked list. Signed-off-by: Derrick Stolee <dstolee@microsoft.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
This commit is contained in:

committed by
Junio C Hamano

parent
29e2016b8f
commit
0bff5269d3
2
midx.c
2
midx.c
@ -197,7 +197,7 @@ static void close_midx(struct multi_pack_index *m)
|
||||
FREE_AND_NULL(m->pack_names);
|
||||
}
|
||||
|
||||
static int prepare_midx_pack(struct multi_pack_index *m, uint32_t pack_int_id)
|
||||
int prepare_midx_pack(struct multi_pack_index *m, uint32_t pack_int_id)
|
||||
{
|
||||
struct strbuf pack_name = STRBUF_INIT;
|
||||
|
||||
|
Reference in New Issue
Block a user