Re: [PATCH 04/16] object-store: move packed_git and packed_git_mru to object store

2018-02-16 Thread Junio C Hamano
Stefan Beller writes: > @@ @@ > - packed_git_mru > + the_repository->objects.packed_git_mru Regarding this... > diff --git a/object-store.h b/object-store.h > index a3f0d6ac15..024ccc91e9 100644 > --- a/object-store.h > +++ b/object-store.h > @@ -2,6 +2,7 @@ >

[PATCH 04/16] object-store: move packed_git and packed_git_mru to object store

2018-02-16 Thread Stefan Beller
In a process with multiple repositories open, packfile accessors should be associated to a single repository and not shared globally. Move packed_git and packed_git_mru into the_repository and adjust callers to reflect this. Patch generated by 1. Moving the struct packed_git declaration to