From patchwork Fri Jun 13 11:29:50 2014 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Adhemerval Zanella X-Patchwork-Id: 359523 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 EEA8B1400E8 for ; Fri, 13 Jun 2014 21:30:05 +1000 (EST) DomainKey-Signature: a=rsa-sha1; c=nofws; d=sourceware.org; h=list-id :list-unsubscribe:list-subscribe:list-archive:list-post :list-help:sender:message-id:date:from:mime-version:to:subject :references:in-reply-to:content-type:content-transfer-encoding; q=dns; s=default; b=a8TcRRz/NcQ6N6lb0rADBR19NxiWMKhPQhDyKp66cuB hAu9+PQd5+CyV7O+OnoUjk2msu/YuOOHjV5c7otA+87itpceUzMtnu7RqXLPZh3l q5xgQC9wcYvUSyoNh48vbHNeCw9Md1JA4te1hg3WSLqPWSIzvTZ7JJpOzGBhv9zo = 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:message-id:date:from:mime-version:to:subject :references:in-reply-to:content-type:content-transfer-encoding; s=default; bh=5CiqkkBhVxQSO6X9AcsPMSLQxAE=; b=QJ1M6NihPKE2TIpkk npmoJygP+kXqRuuGre52AHn/B0ZA5/n/kcTUOzbZ8JMnHVzWBS7mN2ob9wioWK07 UhbZlLouv8jdgQFTytGknmmFOyFjgxinNcV96WEnrWeDcqBm+OQjqDAUV9L0+rJn 6F9GsfyxHIiya4wBsoG/2rVWXI= Received: (qmail 20401 invoked by alias); 13 Jun 2014 11:29:59 -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 20389 invoked by uid 89); 13 Jun 2014 11:29:57 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-3.0 required=5.0 tests=AWL, BAYES_00, RP_MATCHES_RCVD autolearn=ham version=3.3.2 X-HELO: e24smtp03.br.ibm.com Message-ID: <539AE0AE.10505@linux.vnet.ibm.com> Date: Fri, 13 Jun 2014 08:29:50 -0300 From: Adhemerval Zanella User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:24.0) Gecko/20100101 Thunderbird/24.5.0 MIME-Version: 1.0 To: libc-alpha@sourceware.org Subject: Re: [PATCH] PowerPC: Move powerpc code out of nptl/ subdirectory References: <5399C285.6080900@linux.vnet.ibm.com> <5399D40A.8060408@linux.vnet.ibm.com> <20140612164113.AD0622C39C1@topped-with-meat.com> In-Reply-To: <20140612164113.AD0622C39C1@topped-with-meat.com> X-TM-AS-MML: disable X-Content-Scanned: Fidelis XPS MAILER x-cbid: 14061311-9564-0000-0000-0000010F8E0A On 12-06-2014 13:41, Roland McGrath wrote: >> The idea is just: >> >> # renamed: nptl/sysdeps/powerpc/Makefile -> sysdeps/powerpc/nptl/*/Makefile > The /*/ is bizarre. > My bad, this is the correct patch: diff --git a/nptl/sysdeps/powerpc/Makefile b/sysdeps/powerpc/nptl/powerpc/Makefile similarity index 100% rename from nptl/sysdeps/powerpc/Makefile rename to sysdeps/powerpc/nptl/powerpc/Makefile diff --git a/nptl/sysdeps/powerpc/pthread_spin_lock.c b/sysdeps/powerpc/nptl/powerpc/pthread_spin_lock.c similarity index 100% rename from nptl/sysdeps/powerpc/pthread_spin_lock.c rename to sysdeps/powerpc/nptl/powerpc/pthread_spin_lock.c diff --git a/nptl/sysdeps/powerpc/pthread_spin_trylock.c b/sysdeps/powerpc/nptl/powerpc/pthread_spin_trylock.c similarity index 100% rename from nptl/sysdeps/powerpc/pthread_spin_trylock.c rename to sysdeps/powerpc/nptl/powerpc/pthread_spin_trylock.c diff --git a/nptl/sysdeps/powerpc/pthreaddef.h b/sysdeps/powerpc/nptl/powerpc/pthreaddef.h similarity index 100% rename from nptl/sysdeps/powerpc/pthreaddef.h rename to sysdeps/powerpc/nptl/powerpc/pthreaddef.h diff --git a/nptl/sysdeps/powerpc/tcb-offsets.sym b/sysdeps/powerpc/nptl/powerpc/tcb-offsets.sym similarity index 100% rename from nptl/sysdeps/powerpc/tcb-offsets.sym rename to sysdeps/powerpc/nptl/powerpc/tcb-offsets.sym diff --git a/nptl/sysdeps/powerpc/tls.h b/sysdeps/powerpc/nptl/powerpc/tls.h similarity index 100% rename from nptl/sysdeps/powerpc/tls.h rename to sysdeps/powerpc/nptl/powerpc/tls.h