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 <abhishekkumar8222@gmail.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
This commit is contained in:

committed by
Junio C Hamano

parent
4844812b9e
commit
c49c82aa4c
6
commit.c
6
commit.c
@ -339,7 +339,7 @@ struct tree *repo_get_commit_tree(struct repository *r,
|
||||
if (commit->maybe_tree || !commit->object.parsed)
|
||||
return commit->maybe_tree;
|
||||
|
||||
if (commit->graph_pos != COMMIT_NOT_FROM_GRAPH)
|
||||
if (commit_graph_position(commit) != COMMIT_NOT_FROM_GRAPH)
|
||||
return get_commit_tree_in_graph(r, commit);
|
||||
|
||||
return NULL;
|
||||
@ -731,9 +731,9 @@ int compare_commits_by_gen_then_commit_date(const void *a_, const void *b_, void
|
||||
const struct commit *a = a_, *b = b_;
|
||||
|
||||
/* newer commits first */
|
||||
if (a->generation < b->generation)
|
||||
if (commit_graph_generation(a) < commit_graph_generation(b))
|
||||
return 1;
|
||||
else if (a->generation > b->generation)
|
||||
else if (commit_graph_generation(a) > commit_graph_generation(b))
|
||||
return -1;
|
||||
|
||||
/* use date as a heuristic when generations are equal */
|
||||
|
Reference in New Issue
Block a user