From: Thomas Rast <trast@inf.ethz.ch>
To: Junio C Hamano <gitster@pobox.com>
Cc: Nguyen Thai Ngoc Duy <pclouds@gmail.com>,
Git Mailing List <git@vger.kernel.org>
Subject: Re: in_merge_bases() is too expensive for recent "pu" update
Date: Tue, 28 Aug 2012 10:12:57 +0200 [thread overview]
Message-ID: <877gsjmo3a.fsf@thomas.inf.ethz.ch> (raw)
In-Reply-To: <7va9xfpyyf.fsf@alter.siamese.dyndns.org> (Junio C. Hamano's message of "Mon, 27 Aug 2012 18:50:00 -0700")
Junio C Hamano <gitster@pobox.com> writes:
> Thomas Rast <trast@student.ethz.ch> writes:
>
>> diff --git i/commit.c w/commit.c
>> index 65a8485..70427ab 100644
>> --- i/commit.c
>> +++ w/commit.c
>> @@ -837,10 +837,13 @@ int in_merge_bases(struct commit *commit, struct commit **reference, int num)
>> struct commit_list *bases, *b;
>> int ret = 0;
>>
>> - if (num == 1)
>> - bases = get_merge_bases(commit, *reference, 1);
>> - else
>> + if (num != 1)
>> die("not yet");
>> +
>> + bases = merge_bases_many(commit, 1, reference);
>> + clear_commit_marks(commit, all_flags);
>> + clear_commit_marks(*reference, all_flags);
>> +
>> for (b = bases; b; b = b->next) {
>> if (!hashcmp(commit->object.sha1, b->item->object.sha1)) {
>> ret = 1;
>
> This ended up being part of the series I sent earlier, and I want to
> assign authorship to you. As you did this as part of the discussion,
> naturally the patch came without a sign-off. Can we consider it
> signed off? Just saying "ok" is fine.
Sure:
ok
;-)
I'm also mildly surprised that it ended up being correct, albeit with
some extra work from you :-)
--
Thomas Rast
trast@{inf,student}.ethz.ch
next prev parent reply other threads:[~2012-08-28 8:13 UTC|newest]
Thread overview: 16+ messages / expand[flat|nested] mbox.gz Atom feed top
2012-08-23 12:32 in_merge_bases() is too expensive for recent "pu" update Nguyen Thai Ngoc Duy
2012-08-23 14:20 ` Thomas Rast
2012-08-23 18:08 ` Junio C Hamano
2012-08-23 20:42 ` Junio C Hamano
2012-08-23 21:03 ` Junio C Hamano
2012-08-24 9:32 ` Thomas Rast
2012-08-24 15:50 ` Junio C Hamano
2012-08-24 9:43 ` Thomas Rast
2012-08-24 15:15 ` Jeff King
2012-08-24 16:15 ` Junio C Hamano
2012-08-24 15:52 ` Junio C Hamano
2012-08-24 11:42 ` Nguyen Thai Ngoc Duy
2012-08-24 11:51 ` Nguyen Thai Ngoc Duy
2012-08-28 1:50 ` Junio C Hamano
2012-08-28 8:12 ` Thomas Rast [this message]
2012-08-28 16:03 ` Junio C Hamano
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=877gsjmo3a.fsf@thomas.inf.ethz.ch \
--to=trast@inf.ethz.ch \
--cc=git@vger.kernel.org \
--cc=gitster@pobox.com \
--cc=pclouds@gmail.com \
/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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.