Re: [PATCH v2 11/21] bisect: use struct node_data array instead of int array

2016-04-15 Thread Junio C Hamano
Stephan Beyer writes: > This is a preparation for subsequent changes. > During a bisection process, we want to augment commits with > further information to improve speed. > > Signed-off-by: Stephan Beyer > --- Makes sense. -- To unsubscribe from this list: send the line "unsubscribe git" in t

Re: [PATCH v2 11/21] bisect: use struct node_data array instead of int array

2016-04-12 Thread Christian Couder
On Sun, Apr 10, 2016 at 3:19 PM, Stephan Beyer wrote: > > @@ -321,14 +321,13 @@ static struct commit_list *do_find_bisection(struct > commit_list *list, > * add one for p itself if p is to be counted, > * otherwise inherit it from q directly. >

[PATCH v2 11/21] bisect: use struct node_data array instead of int array

2016-04-10 Thread Stephan Beyer
This is a preparation for subsequent changes. During a bisection process, we want to augment commits with further information to improve speed. Signed-off-by: Stephan Beyer --- bisect.c | 61 ++--- 1 file changed, 30 insertions(+), 31 delet