git.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Junio C Hamano <gitster@pobox.com>
To: Miklos Vajna <vmiklos@frugalware.org>
Cc: git@vger.kernel.org
Subject: Re: [PATCH] Introduce get_octopus_merge_bases() in commit.c
Date: Wed, 11 Jun 2008 16:51:49 -0700	[thread overview]
Message-ID: <7vprqna5t6.fsf@gitster.siamese.dyndns.org> (raw)
In-Reply-To: <1213219039-1211-1-git-send-email-vmiklos@frugalware.org> (Miklos Vajna's message of "Wed, 11 Jun 2008 23:17:19 +0200")

Miklos Vajna <vmiklos@frugalware.org> writes:

> diff --git a/commit.c b/commit.c
> index bbf9c75..f9410d8 100644
> --- a/commit.c
> +++ b/commit.c
> @@ -600,6 +600,33 @@ static struct commit_list *merge_bases(struct commit *one, struct commit *two)
>  	return result;
>  }
>  
> +struct commit_list *get_octopus_merge_bases(struct commit_list *in, int cleanup)
> +{
> +	struct commit_list *i, *j, *k, *ret = NULL;
> +	struct commit_list **pptr = &ret;
> +
> +	for (i = in; i; i = i->next) {
> +		if (!ret)
> +			pptr = &commit_list_insert(i->item, pptr)->next;
> +		else {
> +			struct commit_list *new = NULL, *end = NULL;
> +
> +			for (j = ret; j; j = j->next) {
> +				struct commit_list *bases;
> +				bases = get_merge_bases(i->item, j->item, cleanup);

Why is passing "cleanup" through to get_merge_bases() safe, even when you
are running it more than once?

get_merge_bases() uses PARENT1, PARENT2 and other flags internally, and
the information necessary to clean them efficiently (i.e. the set of
commits that could be smudged with these flags due to its operation) is
known only to it _after it finishes_.  You cannot even say "previous run
did not clean things up, so please clean-up before starting this round"
upfront.  That is why we have clean-up loops at the _end_ of the function
after it finishes computing what it wants to return.

The only reason clean-up is optional to the function is because there are
one-shot callers such as "git merge-base" that do not want to pay penalty
for cleaning up (the only time you do not have to tell it to clean up is
when you know the invocation is the _last_ invocation of the function, iow
there is no later invocation that will be harmed by leftover flags).

  reply	other threads:[~2008-06-11 23:53 UTC|newest]

Thread overview: 27+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2008-06-11 20:50 [PATCH 00/10] Build in merge Miklos Vajna
2008-06-11 20:50 ` [PATCH 01/10] Move split_cmdline() to alias.c Miklos Vajna
2008-06-11 20:50   ` [PATCH 02/10] Move commit_list_count() to commit.c Miklos Vajna
2008-06-11 20:50     ` [PATCH 03/10] Move parse-options's skip_prefix() to git-compat-util.h Miklos Vajna
2008-06-11 20:50       ` [PATCH 04/10] Add new test to ensure git-merge handles pull.twohead and pull.octopus Miklos Vajna
2008-06-11 20:50         ` [PATCH 05/10] parseopt: add a new PARSE_OPT_ARGV0_IS_AN_OPTION option Miklos Vajna
2008-06-11 20:50           ` [PATCH 06/10] Move read_cache_unmerged() to read-cache.c Miklos Vajna
2008-06-11 20:50             ` [PATCH 07/10] git-fmt-merge-msg: make it usable from other builtins Miklos Vajna
2008-06-11 20:50               ` [PATCH 08/10] Introduce get_octopus_merge_bases() in commit.c Miklos Vajna
2008-06-11 20:50                 ` [PATCH 09/10] Introduce filter_independent() " Miklos Vajna
2008-06-11 20:50                   ` [PATCH 10/10] Build in merge Miklos Vajna
2008-06-11 21:17                 ` [PATCH] Introduce get_octopus_merge_bases() in commit.c Miklos Vajna
2008-06-11 23:51                   ` Junio C Hamano [this message]
2008-06-12 16:59                     ` Miklos Vajna
  -- strict thread matches above, loose matches on Subject: below --
2008-06-06  5:53 [PATCH 09/10] " Junio C Hamano
2008-06-07 21:38 ` [PATCH] " Miklos Vajna
2008-06-09 14:02   ` Johannes Schindelin
2008-06-09 22:43     ` Miklos Vajna
2008-06-09 22:55       ` Junio C Hamano
2008-06-09 23:08         ` Johannes Schindelin
2008-06-09 23:20           ` Junio C Hamano
2008-06-09 23:35             ` Miklos Vajna
2008-06-09 23:06       ` Junio C Hamano
2008-06-09 23:25         ` Miklos Vajna
2008-06-09 23:31         ` Johannes Schindelin
2008-06-09 23:41           ` Junio C Hamano
2008-06-10  0:03             ` Miklos Vajna
2008-06-10  2:43               ` Johannes Schindelin

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=7vprqna5t6.fsf@gitster.siamese.dyndns.org \
    --to=gitster@pobox.com \
    --cc=git@vger.kernel.org \
    --cc=vmiklos@frugalware.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).