From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-vk1-xa2b.google.com (mail-vk1-xa2b.google.com [IPv6:2607:f8b0:4864:20::a2b]) by sourceware.org (Postfix) with ESMTPS id AFBDC3858402 for ; Thu, 11 Nov 2021 17:24:28 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.1 sourceware.org AFBDC3858402 Received: by mail-vk1-xa2b.google.com with SMTP id e64so3661609vke.4 for ; Thu, 11 Nov 2021 09:24:28 -0800 (PST) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20210112; h=x-gm-message-state:message-id:date:mime-version:user-agent:subject :content-language:to:cc:references:from:in-reply-to :content-transfer-encoding; bh=Hqfbac6/HQBb+5/qyRmOI/YYmkqazpSzsiHRsqiktiU=; b=fIQQ5kfc3lOZ0FpbV7EdeYTJpVbbh6t5EvP1/IbvuwSLAvu9oodYKNKACfdmom0DvK gt6ezbbR0zJq+qe7fWHukoU0l2O7QNJrqWxKzhlhKYNfseZbGnOLe9ssTU//0K9Vb7lc kwbURz4sH2o/lMYy4IDwG26eunmWG4D3jP+d1v9YGAkaKMSXbZnAp9TFQmBwE31PKmCN Iu77b03+lGQuTLDloy3+QHCRibE7HzcjhdOvavlNWJfswFygQxVpei1qBHga5wTpfQnx BoKoymkpUxW/XW/lE2BEPtolC/R5HL3sxXG+0gDoYqbOFo4q/qAo886yN2/s9Oom7B0B /n7w== X-Gm-Message-State: AOAM533aOHBwBb2LgWAMRy+iGRsIlB+NeNhULg4wcBIWfLQG2VsawoVK iVgrNzh7/vDYjqm7m5+no6Hx98rdCYZKmg== X-Google-Smtp-Source: ABdhPJwGVLuCjMUCb+JELDq9+5HD9xh8TsIsuXO3dv9oAHhyZBLFRt27t3jvSFeeY9OEy2MvPLS4ZQ== X-Received: by 2002:a05:6122:1696:: with SMTP id 22mr13534360vkl.2.1636651467909; Thu, 11 Nov 2021 09:24:27 -0800 (PST) Received: from ?IPV6:2804:431:c7cb:55a:48f2:1d0b:8ae8:643a? ([2804:431:c7cb:55a:48f2:1d0b:8ae8:643a]) by smtp.gmail.com with ESMTPSA id s16sm2210219vss.6.2021.11.11.09.24.26 (version=TLS1_3 cipher=TLS_AES_128_GCM_SHA256 bits=128/128); Thu, 11 Nov 2021 09:24:27 -0800 (PST) Message-ID: <698cfa0c-6af6-297b-26e0-839b04e2881b@linaro.org> Date: Thu, 11 Nov 2021 14:24:25 -0300 MIME-Version: 1.0 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:91.0) Gecko/20100101 Thunderbird/91.2.1 Subject: Re: [PATCH v5 03/22] elf: Do not fail for failed dlopem on audit modules (BZ #28061) Content-Language: en-US To: "H.J. Lu" Cc: GNU C Library , Florian Weimer , John Mellor-Crummey References: <20211109183347.2943786-1-adhemerval.zanella@linaro.org> <20211109183347.2943786-4-adhemerval.zanella@linaro.org> From: Adhemerval Zanella In-Reply-To: Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit X-Spam-Status: No, score=-8.6 required=5.0 tests=BAYES_00, DKIM_SIGNED, DKIM_VALID, DKIM_VALID_AU, DKIM_VALID_EF, NICE_REPLY_A, RCVD_IN_DNSWL_NONE, SPF_HELO_NONE, SPF_PASS, TXREP autolearn=ham autolearn_force=no version=3.4.4 X-Spam-Checker-Version: SpamAssassin 3.4.4 (2020-01-24) 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: Thu, 11 Nov 2021 17:24:30 -0000 On 09/11/2021 15:51, H.J. Lu wrote: > On Tue, Nov 9, 2021 at 10:35 AM Adhemerval Zanella via Libc-alpha > wrote: >> >> The dl_main() sets the LM_ID_BASE to RT_ADD just before starting to >> add load new shared objects. The state is set to R_CONSISTENT just >> after all objects are loaded. > > Did you mean dlmopen in subject? Yes, I have fixed it.