Re: [PATCH v2 11/24] midx: read pack names into array

2018-06-25 Thread Eric Sunshine
On Mon, Jun 25, 2018 at 10:35 AM Derrick Stolee wrote: > diff --git a/midx.c b/midx.c > @@ -210,6 +227,20 @@ static void sort_packs_by_name(char **pack_names, > uint32_t nr_packs, uint32_t *p > +static size_t write_midx_pack_lookup(struct hashfile *f, > +char *

[PATCH v2 11/24] midx: read pack names into array

2018-06-25 Thread Derrick Stolee
Signed-off-by: Derrick Stolee --- midx.c | 31 +++ object-store.h | 1 + t/helper/test-read-midx.c | 5 + t/t5319-multi-pack-index.sh | 7 ++- 4 files changed, 43 insertions(+), 1 deletion(-) diff --git a/midx.c b/midx.c