Re: [PATCH] alloc: allow arbitrary repositories for alloc functions

2018-05-15 Thread Junio C Hamano
Stefan Beller writes: > We have to convert all of the alloc functions at once, because alloc_report > uses a funky macro for reporting. It is better for the sake of mechanical > conversion to convert multiple functions at once rather than changing the > structure of the

[PATCH] alloc: allow arbitrary repositories for alloc functions

2018-05-15 Thread Stefan Beller
We have to convert all of the alloc functions at once, because alloc_report uses a funky macro for reporting. It is better for the sake of mechanical conversion to convert multiple functions at once rather than changing the structure of the reporting function. We record all memory allocation in

Re: [PATCH] alloc: allow arbitrary repositories for alloc functions

2018-05-11 Thread Eric Sunshine
On Fri, May 11, 2018 at 3:17 PM Stefan Beller wrote: > diff --git a/commit.c b/commit.c > @@ -296,6 +297,17 @@ void free_commit_buffer(struct commit *commit) > +void relase_commit_memory(struct commit *c) s/relase/release/

[PATCH] alloc: allow arbitrary repositories for alloc functions

2018-05-11 Thread Stefan Beller
We have to convert all of the alloc functions at once, because alloc_report uses a funky macro for reporting. It is better for the sake of mechanical conversion to convert multiple functions at once rather than changing the structure of the reporting function. We record all memory allocation in