From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-5.5 required=3.0 tests=HEADER_FROM_DIFFERENT_DOMAINS, MAILING_LIST_MULTI,SIGNED_OFF_BY,SPF_PASS,URIBL_BLOCKED,USER_AGENT_MUTT autolearn=ham autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id 16778C10F0E for ; Fri, 12 Apr 2019 14:55:54 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id D87B320850 for ; Fri, 12 Apr 2019 14:55:53 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1726850AbfDLOzw (ORCPT ); Fri, 12 Apr 2019 10:55:52 -0400 Received: from verein.lst.de ([213.95.11.211]:43089 "EHLO newverein.lst.de" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1726624AbfDLOzv (ORCPT ); Fri, 12 Apr 2019 10:55:51 -0400 Received: by newverein.lst.de (Postfix, from userid 2407) id A3D8568AFE; Fri, 12 Apr 2019 16:55:38 +0200 (CEST) Date: Fri, 12 Apr 2019 16:55:38 +0200 From: Christoph Hellwig To: Arnd Bergmann Cc: Christoph Hellwig , Linus Torvalds , Andrew Morton , linux-arch , mick@ics.forth.gr, Linux Kernel Mailing List Subject: Re: [PATCH, RFC] byteorder: sanity check toolchain vs kernel endianess Message-ID: <20190412145538.GA24473@lst.de> References: <20190412143538.11780-1-hch@lst.de> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.5.17 (2007-11-01) Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Fri, Apr 12, 2019 at 04:53:28PM +0200, Arnd Bergmann wrote: > On Fri, Apr 12, 2019 at 4:36 PM Christoph Hellwig wrote: > > > > When removing some dead big endian checks in the RISC-V code Nick > > suggested that we should have some generic sanity checks. I don't think > > we should have thos inside the RISC-V code, but maybe it might make > > sense to have these in the generic byteorder headers. Note that these > > are UAPI headers and some compilers might not actually define > > __BYTE_ORDER__, so we first check that it actually exists. > > > > Suggested-by: Nick Kossifidis > > Signed-off-by: Christoph Hellwig > > Acked-by: Arnd Bergmann > > Extra checking like this is good in general, but I'm not sure I see > exactly what kind of issue one might expect to prevent with this: I'm personally not worried at all. Just trying to respond to Nicks review comment and make it reasonable generic if we have to have these checks at all. I personally would be ok without them, I just don't want them hidden somewhere in the RISC-V code (RISC-V is always little endian at least right now).