From patchwork Sat Jun 14 14:22:13 2014 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Adhemerval Zanella Netto X-Patchwork-Id: 1501 Received: (qmail 29583 invoked by alias); 14 Jun 2014 14:22:25 -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 29565 invoked by uid 89); 14 Jun 2014 14:22:24 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-2.5 required=5.0 tests=AWL, BAYES_00, RP_MATCHES_RCVD autolearn=ham version=3.3.2 X-HELO: e24smtp05.br.ibm.com Message-ID: <539C5A95.4000601@linux.vnet.ibm.com> Date: Sat, 14 Jun 2014 11:22:13 -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> <539AE0AE.10505@linux.vnet.ibm.com> <20140613234223.89D922C398B@topped-with-meat.com> In-Reply-To: <20140613234223.89D922C398B@topped-with-meat.com> X-TM-AS-MML: disable X-Content-Scanned: Fidelis XPS MAILER x-cbid: 14061414-1798-0000-0000-000002E135EC On 13-06-2014 20:42, Roland McGrath wrote: >> diff --git a/nptl/sysdeps/powerpc/Makefile b/sysdeps/powerpc/nptl/powerpc/Makefile >> diff --git a/nptl/sysdeps/powerpc/pthread_spin_lock.c b/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 >> diff --git a/nptl/sysdeps/powerpc/pthreaddef.h b/sysdeps/powerpc/nptl/powerpc/pthreaddef.h >> diff --git a/nptl/sysdeps/powerpc/tcb-offsets.sym b/sysdeps/powerpc/nptl/powerpc/tcb-offsets.sym >> diff --git a/nptl/sysdeps/powerpc/tls.h b/sysdeps/powerpc/nptl/powerpc/tls.h > Sorry, I think this is wrong again. Those files should be in > sysdeps/powerpc/nptl/. There should not be a directory called > sysdeps/powerpc/nptl/powerpc/ at all. All it actually takes is: > rm -rf sysdeps/powerpc/nptl # just in case a bogon exists there > git mv nptl/sysdeps/powerpc sysdeps/powerpc/nptl > > > Thanks, > Roland > It is and I apologize for sending bogus patches, I think here it is the correct version: diff --git a/nptl/sysdeps/powerpc/Makefile b/sysdeps/powerpc/nptl/Makefile similarity index 100% rename from nptl/sysdeps/powerpc/Makefile rename to sysdeps/powerpc/nptl/Makefile diff --git a/nptl/sysdeps/powerpc/pthread_spin_lock.c b/sysdeps/powerpc/nptl/pthread_spin_lock.c similarity index 100% rename from nptl/sysdeps/powerpc/pthread_spin_lock.c rename to sysdeps/powerpc/nptl/pthread_spin_lock.c diff --git a/nptl/sysdeps/powerpc/pthread_spin_trylock.c b/sysdeps/powerpc/nptl/pthread_spin_trylock.c similarity index 100% rename from nptl/sysdeps/powerpc/pthread_spin_trylock.c rename to sysdeps/powerpc/nptl/pthread_spin_trylock.c diff --git a/nptl/sysdeps/powerpc/pthreaddef.h b/sysdeps/powerpc/nptl/pthreaddef.h similarity index 100% rename from nptl/sysdeps/powerpc/pthreaddef.h rename to sysdeps/powerpc/nptl/pthreaddef.h diff --git a/nptl/sysdeps/powerpc/tcb-offsets.sym b/sysdeps/powerpc/nptl/tcb-offsets.sym similarity index 100% rename from nptl/sysdeps/powerpc/tcb-offsets.sym rename to sysdeps/powerpc/nptl/tcb-offsets.sym diff --git a/nptl/sysdeps/powerpc/tls.h b/sysdeps/powerpc/nptl/tls.h similarity index 100% rename from nptl/sysdeps/powerpc/tls.h rename to sysdeps/powerpc/nptl/tls.h