Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1755238AbdCJIVE (ORCPT ); Fri, 10 Mar 2017 03:21:04 -0500 Received: from out1-smtp.messagingengine.com ([66.111.4.25]:44966 "EHLO out1-smtp.messagingengine.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1755121AbdCJIVC (ORCPT ); Fri, 10 Mar 2017 03:21:02 -0500 X-ME-Sender: X-Sasl-enc: Wetmqx4WlX7fKWM45RVoA1I8qS4pXUTujcVJORII3vLn 1489134060 Date: Fri, 10 Mar 2017 19:20:57 +1100 From: "Tobin C. Harding" To: Michael Ellerman Cc: Daniel Axtens , linuxppc-dev@lists.ozlabs.org, Benjamin Herrenschmidt , Paul Mackerras , linux-kernel@vger.kernel.org Subject: Re: [PATCH] powerpc: asm: convert directive .llong to .8byte Message-ID: <20170310082057.GB23154@eros> References: <1489038132-3523-1-git-send-email-me@tobin.cc> <87o9xa3sd7.fsf@possimpible.ozlabs.ibm.com> <87d1dplgtx.fsf@concordia.ellerman.id.au> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <87d1dplgtx.fsf@concordia.ellerman.id.au> X-Mailer: Mutt 1.5.24 (2015-08-30) User-Agent: Mutt/1.5.24 (2015-08-30) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 885 Lines: 32 On Fri, Mar 10, 2017 at 06:40:58PM +1100, Michael Ellerman wrote: > Daniel Axtens writes: > > > Hi Tobin, > > > >> .llong is an undocumented PPC specific directive. The generic > >> equivalent is .quad, but even better (because it's self describing) is > >> .8byte. > >> > >> Convert directives .llong -> .8byte > >> > >> Signed-off-by: Tobin C. Harding > >> --- > >> > >> Fixes: issue #33 (github) > > > > Thanks for tackling these! > > > > I have applied your patch to my local tree. I ran `git grep '\.llong'`, > > and found: > > > > tools/testing/selftests/powerpc/switch_endian/switch_endian_test.S: .llong 0x5555AAAA5555AAAA > > > > That file is also handled by mpe and the powerpc tree even though it > > doesn't live in arch/powerpc - could you please change that one as well? > > I can do that one when I apply it. Excellent. thanks, Tobin.