From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.2 (2018-09-13) on dcvr.yhbt.net X-Spam-Level: X-Spam-Status: No, score=-3.9 required=3.0 tests=AWL,BAYES_00,DKIM_SIGNED, DKIM_VALID,DKIM_VALID_AU,HEADER_FROM_DIFFERENT_DOMAINS, MAILING_LIST_MULTI,SPF_HELO_PASS,SPF_PASS shortcircuit=no autolearn=ham autolearn_force=no version=3.4.2 Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by dcvr.yhbt.net (Postfix) with ESMTP id E39141F9FD for ; Wed, 24 Feb 2021 19:45:59 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S233743AbhBXTo4 (ORCPT ); Wed, 24 Feb 2021 14:44:56 -0500 Received: from pb-smtp20.pobox.com ([173.228.157.52]:60746 "EHLO pb-smtp20.pobox.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S232723AbhBXToz (ORCPT ); Wed, 24 Feb 2021 14:44:55 -0500 Received: from pb-smtp20.pobox.com (unknown [127.0.0.1]) by pb-smtp20.pobox.com (Postfix) with ESMTP id 0546A112508; Wed, 24 Feb 2021 14:44:14 -0500 (EST) (envelope-from junio@pobox.com) DKIM-Signature: v=1; a=rsa-sha1; c=relaxed; d=pobox.com; h=from:to:cc :subject:references:date:in-reply-to:message-id:mime-version :content-type; s=sasl; bh=Z2//mI9oABkgWghtwQNGTJWFZm8=; b=RywPTC m6GxUDT8zsSyZC1MS3aW+mxnCO03RRrZsnEmn+uMdBMOUtbRSxHHn8Y3WnizoG7G 1TQ6JWCyMzu24ukX3EJecvveQAZkPdJhknFY+uVQ5wjbBH9cDB0R8s32WnNqq5Ia oeTETOXa9Q3115KyKfnzFxs4X4BcV7/Rnd85o= DomainKey-Signature: a=rsa-sha1; c=nofws; d=pobox.com; h=from:to:cc :subject:references:date:in-reply-to:message-id:mime-version :content-type; q=dns; s=sasl; b=Mpwu/zNyASfdiqOXObDzT1pL7gDizpkL jnGs4hP16fXBHylgWO7S1LODsZMkv8/+hEYi7Z6ILqMU3O/KtpTmRjHrXWcQluqj eNQ8SXudnA3pRAM1YHnlyBJ8PlU7TIeGtMoX6LCjueDDz7lDXn91XuWVkly3U0Cu IBvbYj43jmY= Received: from pb-smtp20.sea.icgroup.com (unknown [127.0.0.1]) by pb-smtp20.pobox.com (Postfix) with ESMTP id F0BA7112507; Wed, 24 Feb 2021 14:44:13 -0500 (EST) (envelope-from junio@pobox.com) Received: from pobox.com (unknown [34.74.119.39]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pb-smtp20.pobox.com (Postfix) with ESMTPSA id 2DE99112506; Wed, 24 Feb 2021 14:44:11 -0500 (EST) (envelope-from junio@pobox.com) From: Junio C Hamano To: Derrick Stolee Cc: Taylor Blau , SZEDER =?utf-8?Q?G=C3=A1bor?= , Derrick Stolee via GitGitGadget , git@vger.kernel.org, l.s.r@web.de, Chris Torek , Derrick Stolee , Derrick Stolee Subject: Re: [PATCH v4 03/17] commit-graph: use chunk-format write API References: <20210224165242.GB3590451@szeder.dev> Date: Wed, 24 Feb 2021 11:44:09 -0800 In-Reply-To: (Derrick Stolee's message of "Wed, 24 Feb 2021 12:52:16 -0500") Message-ID: User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/27.1.90 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain X-Pobox-Relay-ID: AA986B60-76D8-11EB-A6A8-E43E2BB96649-77302942!pb-smtp20.pobox.com Precedence: bulk List-ID: X-Mailing-List: git@vger.kernel.org Derrick Stolee writes: >>> This patch series messes up the "Writing out commit graph" progress >>> display, and starting at this commit I get: > > Thanks for the report and identifying the exact place that caused the > mistake. > >> I can confirm. It looks like we never dropped the 'num_chunks' variable, >> which should have happened in this patch. > > Yes, makes sense. Hard to see that 'num_chunks' wasn't used because it > _was_ being used, just not as intended. > ... > > This is obviously correct. Thanks for the quick patch! Thanks all for noticing and fixing before the series hit the master branch.