From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from insect.birch.relay.mailchannels.net (insect.birch.relay.mailchannels.net [23.83.209.93]) by sourceware.org (Postfix) with ESMTPS id 9A140396AC1E; Wed, 16 Jun 2021 04:02:47 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.1 sourceware.org 9A140396AC1E Authentication-Results: sourceware.org; dmarc=none (p=none dis=none) header.from=gotplt.org Authentication-Results: sourceware.org; spf=pass smtp.mailfrom=gotplt.org X-Sender-Id: dreamhost|x-authsender|siddhesh@gotplt.org Received: from relay.mailchannels.net (localhost [127.0.0.1]) by relay.mailchannels.net (Postfix) with ESMTP id 40FBA1022C6; Wed, 16 Jun 2021 04:02:46 +0000 (UTC) Received: from pdx1-sub0-mail-a47.g.dreamhost.com (100-96-13-100.trex.outbound.svc.cluster.local [100.96.13.100]) (Authenticated sender: dreamhost) by relay.mailchannels.net (Postfix) with ESMTPA id CFC751024C7; Wed, 16 Jun 2021 04:02:45 +0000 (UTC) X-Sender-Id: dreamhost|x-authsender|siddhesh@gotplt.org Received: from pdx1-sub0-mail-a47.g.dreamhost.com (pop.dreamhost.com [64.90.62.162]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384) by 100.96.13.100 (trex/6.3.1); Wed, 16 Jun 2021 04:02:46 +0000 X-MC-Relay: Neutral X-MailChannels-SenderId: dreamhost|x-authsender|siddhesh@gotplt.org X-MailChannels-Auth-Id: dreamhost X-Fumbling-Power: 17b6bc58532a7ff5_1623816166076_618880680 X-MC-Loop-Signature: 1623816166076:2039874385 X-MC-Ingress-Time: 1623816166076 Received: from pdx1-sub0-mail-a47.g.dreamhost.com (localhost [127.0.0.1]) by pdx1-sub0-mail-a47.g.dreamhost.com (Postfix) with ESMTP id 6C5C48BC45; Tue, 15 Jun 2021 21:02:45 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha1; c=relaxed; d=gotplt.org; h=subject:to :cc:references:from:message-id:date:mime-version:in-reply-to :content-type:content-transfer-encoding; s=gotplt.org; bh=VO3DSU iFAdCq/onmvxrP91DBPr0=; b=h6ORKn5tICfAlqabJghC0bqaOOhQaHNZ2Lynnr /d82e3Mcx0BZBKDN5I3aW7f6K+/j4A6sy7EUU5AtDix9j58dgwrztHXxqDWg8rh4 wNo/kEgmDduO2eYqms99u29PyrrDjYJaa4DVkomlrfRjCbewCwHfZKFFk3/iiFeb ewfHQ= Received: from [192.168.1.126] (unknown [1.186.101.110]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) (Authenticated sender: siddhesh@gotplt.org) by pdx1-sub0-mail-a47.g.dreamhost.com (Postfix) with ESMTPSA id D75DE8BC31; Tue, 15 Jun 2021 21:02:42 -0700 (PDT) Subject: [PING][PATCH 0/6] gconv configuration parsing cleanups To: Siddhesh Poyarekar , libc-alpha@sourceware.org Cc: schwab@linux-m68k.org References: <20210610111853.2286873-1-siddhesh@sourceware.org> X-DH-BACKEND: pdx1-sub0-mail-a47 From: Siddhesh Poyarekar Message-ID: <0f580ce4-aa32-22af-d4c1-61858e5b40c0@gotplt.org> Date: Wed, 16 Jun 2021 09:32:37 +0530 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:78.0) Gecko/20100101 Thunderbird/78.10.1 MIME-Version: 1.0 In-Reply-To: <20210610111853.2286873-1-siddhesh@sourceware.org> Content-Type: text/plain; charset=utf-8; format=flowed Content-Language: en-US Content-Transfer-Encoding: 7bit X-Spam-Status: No, score=-3030.0 required=5.0 tests=BAYES_00, DKIM_SIGNED, DKIM_VALID, DKIM_VALID_AU, DKIM_VALID_EF, RCVD_IN_BARRACUDACENTRAL, RCVD_IN_DNSWL_NONE, RCVD_IN_MSPIKE_H2, SPF_HELO_NONE, SPF_PASS, TXREP autolearn=no autolearn_force=no version=3.4.2 X-Spam-Checker-Version: SpamAssassin 3.4.2 (2018-09-13) on server2.sourceware.org X-BeenThere: libc-alpha@sourceware.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Libc-alpha mailing list List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 16 Jun 2021 04:02:51 -0000 Ping! On 6/10/21 4:48 PM, Siddhesh Poyarekar via Libc-alpha wrote: > This patchset consolidates the file parsing in gconv_conf and > iconvconfig into a single file gconv_parseconfdir. Also, add a NEWS > item to mention gconv-modules.d since it is a user visible change. > > Siddhesh Poyarekar (6): > iconv: Remove alloca use in gconv-modules configuration parsing > gconv_conf: Remove unused variables > gconv_conf: Split out configuration file processing > iconvconfig: Use common gconv module parsing function > Handle DT_UNKNOWN in gconv-modules.d > Add NEWS item for gconv-modules.d change > > NEWS | 6 ++ > iconv/gconv_conf.c | 137 ++---------------------------- > iconv/gconv_parseconfdir.h | 170 +++++++++++++++++++++++++++++++++++++ > iconv/iconvconfig.c | 119 +++----------------------- > 4 files changed, 195 insertions(+), 237 deletions(-) > create mode 100644 iconv/gconv_parseconfdir.h >