From c49c82aa4c1036ba1629f73223cff53230e695f3 Mon Sep 17 00:00:00 2001 From: Abhishek Kumar Date: Wed, 17 Jun 2020 14:44:10 +0530 Subject: commit: move members graph_pos, generation to a slab We remove members `graph_pos` and `generation` from the struct commit. The default assignments in init_commit_node() are no longer valid, which is fine as the slab helpers return appropriate default values and the assignments are removed. We will replace existing use of commit->generation and commit->graph_pos by commit_graph_data_slab helpers using `contrib/coccinelle/commit.cocci'. Signed-off-by: Abhishek Kumar Signed-off-by: Junio C Hamano --- alloc.c | 2 -- 1 file changed, 2 deletions(-) (limited to 'alloc.c') diff --git a/alloc.c b/alloc.c index 99fa934b32..957a0af362 100644 --- a/alloc.c +++ b/alloc.c @@ -114,8 +114,6 @@ void init_commit_node(struct commit *c) { c->object.type = OBJ_COMMIT; c->index = alloc_commit_index(); - c->graph_pos = COMMIT_NOT_FROM_GRAPH; - c->generation = GENERATION_NUMBER_INFINITY; } void *alloc_commit_node(struct repository *r) -- cgit v1.2.3