From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.6 (2021-04-09) on dcvr.yhbt.net X-Spam-Level: X-Spam-ASN: 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,RCVD_IN_DNSWL_HI,SPF_HELO_NONE,SPF_PASS, T_SCC_BODY_TEXT_LINE shortcircuit=no autolearn=ham autolearn_force=no version=3.4.6 Received: from out1.vger.email (out1.vger.email [IPv6:2620:137:e000::1:20]) by dcvr.yhbt.net (Postfix) with ESMTP id CB9001F545 for ; Mon, 26 Jun 2023 20:45:53 +0000 (UTC) Authentication-Results: dcvr.yhbt.net; dkim=pass (1024-bit key; unprotected) header.d=pobox.com header.i=@pobox.com header.a=rsa-sha256 header.s=sasl header.b=L82gbd+3; dkim-atps=neutral Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S230209AbjFZUpt (ORCPT ); Mon, 26 Jun 2023 16:45:49 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:45120 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S229849AbjFZUpr (ORCPT ); Mon, 26 Jun 2023 16:45:47 -0400 Received: from pb-smtp2.pobox.com (pb-smtp2.pobox.com [64.147.108.71]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id C7F85E75 for ; Mon, 26 Jun 2023 13:45:31 -0700 (PDT) Received: from pb-smtp2.pobox.com (unknown [127.0.0.1]) by pb-smtp2.pobox.com (Postfix) with ESMTP id 682AF19599D; Mon, 26 Jun 2023 16:45:22 -0400 (EDT) (envelope-from junio@pobox.com) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed; d=pobox.com; h=from:to:cc :subject:references:date:in-reply-to:message-id:mime-version :content-type; s=sasl; bh=vyL16MRDpM2aE5zlaXg/BSSryfylScS30qAQ/r CObA4=; b=L82gbd+3SWg5YrmborskGcMDv9DBV0M8c0CONBdvgz75OiHco0IRvk slypsGpVU2jYd/nPjOemQZWLHOV3BPUQKHXLtq+ZM3TDtZB+88fsfgjPYG2sUIaz mBOwQ3hHUufobIv0TGUnBF9PjOe4wAomlG9s53uKdGh+NEDzR6f84= Received: from pb-smtp2.nyi.icgroup.com (unknown [127.0.0.1]) by pb-smtp2.pobox.com (Postfix) with ESMTP id 5BB0919599B; Mon, 26 Jun 2023 16:45:22 -0400 (EDT) (envelope-from junio@pobox.com) Received: from pobox.com (unknown [34.105.62.77]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pb-smtp2.pobox.com (Postfix) with ESMTPSA id B57BF19599A; Mon, 26 Jun 2023 16:45:21 -0400 (EDT) (envelope-from junio@pobox.com) From: Junio C Hamano To: "Glen Choo via GitGitGadget" Cc: git@vger.kernel.org, Jonathan Tan , =?utf-8?B?w4Z2YXIgQXJuZmrDtnLDsA==?= Bjarmason , Emily Shaffer , Phillip Wood , Jeff King , Glen Choo Subject: Re: [PATCH v4 00/12] config: remove global state from config iteration References: Date: Mon, 26 Jun 2023 13:45:20 -0700 In-Reply-To: (Glen Choo via GitGitGadget's message of "Mon, 26 Jun 2023 18:11:11 +0000") Message-ID: User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/28.2 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain X-Pobox-Relay-ID: 5E5E2CBA-1462-11EE-A36F-307A8E0A682E-77302942!pb-smtp2.pobox.com Precedence: bulk List-ID: X-Mailing-List: git@vger.kernel.org "Glen Choo via GitGitGadget" writes: > I also tested these patches on top of 'seen', and the only conflict I found was > with en/header-split-cache-h-part-3, where ll-merge.c got renamed to merge-ll.c, > so we need to apply the config refactor there (should work with .cocci). Both recursive and ort merge strategies should be able to deal with ll-merge.c <-> merge-ll.c, I think. Thanks.