Junio C Hamano <gitster@xxxxxxxxx> writes: > This is whitespace damaged in a funny way (some lines do not > have leading whitespace while some do). > > log_tree_diff() hence log_tree_commit() is caled by codepaths > other than "git log -p", and I am not convinced that this patch > would not break them. Worrysome. > > I wonder why we did not actually remove the duplicate parents > from "commit->parents" list after history simplification when we > originally did 88494423, instead of filtering only on the output > path. Anybody remember the reason? In any case, I think this patch would let us revert 88494239 and the "matching" patch for git-log I sent out earlier, and also makes your patch unnecessary. Seems to pass the test suite, and your original example of checking addafaf with path limiter of "diff.h". I am a bit worried about the possible fallout, though. There might be some callers that expect to find the same number of parents in commit->parents list and what is recorded in the commit object itself, although I do not think of any, and I tend to think it is broken if there is one. -- >8 -- [PATCH] remove duplicated parents after history simplification When we simplify history due to path limits, the parents list for a rewritten commit can end up having duplicates. Instead of filtering them out in the output codepath like earlier commit 88494423 did, remove them much earlier, when the parent rewriting actually happens. Signed-off-by: Junio C Hamano <gitster@xxxxxxxxx> --- revision.c | 22 +++++++++++++++++++++- 1 files changed, 21 insertions(+), 1 deletions(-) diff --git a/revision.c b/revision.c index 5184716..b8a7571 100644 --- a/revision.c +++ b/revision.c @@ -1308,6 +1308,26 @@ static enum rewrite_result rewrite_one(struct rev_info *revs, struct commit **pp } } +static int remove_duplicate_parents(struct commit *commit) +{ + struct commit_list *p; + struct commit_list **pp = &commit->parents; + + /* Examine existing parents while marking ones we have seen... */ + for (p = commit->parents; p; p = p->next) { + struct commit *parent = p->item; + if (parent->object.flags & TMP_MARK) + continue; + parent->object.flags |= TMP_MARK; + *pp = p; + pp = &p->next; + } + /* ... and clear the temporary mark */ + for (p = commit->parents; p; p = p->next) + p->item->object.flags &= ~TMP_MARK; + return 0; +} + static int rewrite_parents(struct rev_info *revs, struct commit *commit) { struct commit_list **pp = &commit->parents; @@ -1324,7 +1344,7 @@ static int rewrite_parents(struct rev_info *revs, struct commit *commit) } pp = &parent->next; } - return 0; + return remove_duplicate_parents(commit); } static int commit_match(struct commit *commit, struct rev_info *opt) - To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html