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-ASN: AS17314 8.43.84.0/22 X-Spam-Status: No, score=-3.7 required=3.0 tests=AWL,BAYES_00,DKIM_SIGNED, DKIM_VALID,DKIM_VALID_AU,DKIM_VALID_EF,MAILING_LIST_MULTI, PDS_RDNS_DYNAMIC_FP,RCVD_IN_DNSWL_MED,RDNS_DYNAMIC,SPF_HELO_PASS, SPF_PASS shortcircuit=no autolearn=ham autolearn_force=no version=3.4.2 Received: from sourceware.org (ip-8-43-85-97.sourceware.org [8.43.85.97]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by dcvr.yhbt.net (Postfix) with ESMTPS id D4A471F8C6 for ; Thu, 8 Jul 2021 15:43:35 +0000 (UTC) Received: from server2.sourceware.org (localhost [IPv6:::1]) by sourceware.org (Postfix) with ESMTP id DD8A23AA7CB6 for ; Thu, 8 Jul 2021 15:43:34 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org DD8A23AA7CB6 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=sourceware.org; s=default; t=1625759014; bh=Whloswqcro7FDDBciy/lg+qU/UUigc8oRCAxun/422g=; h=To:Subject:References:Date:In-Reply-To:List-Id:List-Unsubscribe: List-Archive:List-Post:List-Help:List-Subscribe:From:Reply-To: From; b=rp+8z2yWhBv81/SYL1oeEks4jaE2BfCprGzyeDk85yKML0jiuC7O68m4A28gOr2Eb T5L7u8Uqni4o3RwjUqz3WswWayWPjy7PFUaQFQOPTmaFC15K/ewA2n5MmI41ppKLd0 Uz0WV16vLNNvtVgUhjGzLZNSPvFeoLLEb29kLt28= Received: from us-smtp-delivery-124.mimecast.com (us-smtp-delivery-124.mimecast.com [170.10.133.124]) by sourceware.org (Postfix) with ESMTP id B936F3AA903F for ; Thu, 8 Jul 2021 15:43:05 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.1 sourceware.org B936F3AA903F Received: from mimecast-mx01.redhat.com (mimecast-mx01.redhat.com [209.132.183.4]) (Using TLS) by relay.mimecast.com with ESMTP id us-mta-544-KsSJCSK0OTO9sR7XNjrVRA-1; Thu, 08 Jul 2021 11:43:03 -0400 X-MC-Unique: KsSJCSK0OTO9sR7XNjrVRA-1 Received: from smtp.corp.redhat.com (int-mx08.intmail.prod.int.phx2.redhat.com [10.5.11.23]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mimecast-mx01.redhat.com (Postfix) with ESMTPS id 6CEE3100CC9E for ; Thu, 8 Jul 2021 15:42:50 +0000 (UTC) Received: from oldenburg.str.redhat.com (ovpn-115-5.ams2.redhat.com [10.36.115.5]) by smtp.corp.redhat.com (Postfix) with ESMTPS id F184D19C66 for ; Thu, 8 Jul 2021 15:42:47 +0000 (UTC) To: Florian Weimer via Libc-alpha Subject: Re: [PATCH 30/30] nss: Directly load nss_dns, without going through dlsym/dlopen References: <173b8b3328d263fd01e89562685a5dc14fd37b25.1625755446.git.fweimer@redhat.com> Date: Thu, 08 Jul 2021 17:42:38 +0200 In-Reply-To: <173b8b3328d263fd01e89562685a5dc14fd37b25.1625755446.git.fweimer@redhat.com> (Florian Weimer via Libc-alpha's message of "Thu, 08 Jul 2021 17:07:35 +0200") Message-ID: <87im1klslt.fsf@oldenburg.str.redhat.com> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/27.2 (gnu/linux) MIME-Version: 1.0 X-Scanned-By: MIMEDefang 2.84 on 10.5.11.23 X-Mimecast-Spam-Score: 0 X-Mimecast-Originator: redhat.com Content-Type: text/plain 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: , From: Florian Weimer via Libc-alpha Reply-To: Florian Weimer Errors-To: libc-alpha-bounces+e=80x24.org@sourceware.org Sender: "Libc-alpha" * Florian Weimer via Libc-alpha: > This partially fixes static-only NSS support (bug 27959): The dns > module no longer needs dlopen. Support for the files module remains > to be added, and also support for disabling dlopen altogher. > > This commit introduces module_load_builtin into nss/nss_module.c, which > handles the common parts of loading the built-in nss_files and nss_dns > modules. I've fixed the commit message not to mention the files module in the first paragraph. Thanks, Florian