From patchwork Tue Aug 25 12:24:33 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: "H.J. Lu" X-Patchwork-Id: 510485 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from sourceware.org (server1.sourceware.org [209.132.180.131]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by ozlabs.org (Postfix) with ESMTPS id 63BEC1401EF for ; Tue, 25 Aug 2015 22:24:43 +1000 (AEST) Authentication-Results: ozlabs.org; dkim=pass (1024-bit key; secure) header.d=sourceware.org header.i=@sourceware.org header.b=fku9gDrg; dkim-atps=neutral DomainKey-Signature: a=rsa-sha1; c=nofws; d=sourceware.org; h=list-id :list-unsubscribe:list-subscribe:list-archive:list-post :list-help:sender:date:from:to:subject:message-id:mime-version :content-type; q=dns; s=default; b=lQRYyUQAloafLal/POiXubwA9RRYi lM108E+97H8UcE3qZxQIfWSNBH9rhWSTZR94i9dk5xxHTPyr/nFqwiEFfIAFPccl wMz8hgSZw4jdxvJjbEerbSa7iu92t2eNwhJa98oJ6y7ZtDq+DPG/xuMvsipGiDKq ojBuS+gv/n6XcM= DKIM-Signature: v=1; a=rsa-sha1; c=relaxed; d=sourceware.org; h=list-id :list-unsubscribe:list-subscribe:list-archive:list-post :list-help:sender:date:from:to:subject:message-id:mime-version :content-type; s=default; bh=1YM4wjc/ghSgSpyp87TDB9sk37M=; b=fku 9gDrgjvy3+JCSs0Wdtiwf8nEjAcFVnXb1dvtmGtiCg1Yx2vvuPGG5w1zntyQjdGQ XX5Zy0yjzbHqm5pt4oF9WlYTP8l3EPsgE0f/GMZHmsWb1p+1o5Ke9kcxNpqEp5cT krVr87xMOn3BbhP+2hrZBgCnIIfax2lhExULs2C0= Received: (qmail 100053 invoked by alias); 25 Aug 2015 12:24:37 -0000 Mailing-List: contact libc-alpha-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Unsubscribe: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: libc-alpha-owner@sourceware.org Delivered-To: mailing list libc-alpha@sourceware.org Received: (qmail 99074 invoked by uid 89); 25 Aug 2015 12:24:36 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-0.3 required=5.0 tests=AWL, BAYES_40, FREEMAIL_FROM, RCVD_IN_DNSWL_LOW, SPF_PASS autolearn=ham version=3.3.2 X-HELO: mail-pa0-f48.google.com X-Received: by 10.66.219.227 with SMTP id pr3mr55049400pac.140.1440505474219; Tue, 25 Aug 2015 05:24:34 -0700 (PDT) Date: Tue, 25 Aug 2015 05:24:33 -0700 From: "H.J. Lu" To: GNU C Library Subject: [PATCH 7/7] Don't run tst-getpid2 with LD_BIND_NOW=1 Message-ID: <20150825122433.GF1588@gmail.com> MIME-Version: 1.0 Content-Disposition: inline User-Agent: Mutt/1.5.23 (2014-03-12) Since _dl_x86_64_save_sse and _dl_x86_64_restore_sse are removed now, we don't need to run tst-getpid2 with LD_BIND_NOW=1. OK for master? H.J. --- * sysdeps/unix/sysv/linux/Makefile (tst-getpid2-ENV): Removed. --- sysdeps/unix/sysv/linux/Makefile | 5 ----- 1 file changed, 5 deletions(-) diff --git a/sysdeps/unix/sysv/linux/Makefile b/sysdeps/unix/sysv/linux/Makefile index bfbabd4..2c67a66 100644 --- a/sysdeps/unix/sysv/linux/Makefile +++ b/sysdeps/unix/sysv/linux/Makefile @@ -193,9 +193,4 @@ endif ifeq ($(subdir),nptl) tests += tst-setgetname tst-align-clone tst-getpid1 tst-getpid2 - -# In this test, we create a CLONE_VM "thread" that shares TLS storage -# with the original thread. Both threads then race in ld.so with lazy PLT -# resolution. Avoid this race by disabling lazy binding. BZ #11214. -tst-getpid2-ENV = LD_BIND_NOW=1 endif