Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1757132AbaGORR1 (ORCPT ); Tue, 15 Jul 2014 13:17:27 -0400 Received: from mail-qa0-f41.google.com ([209.85.216.41]:48966 "EHLO mail-qa0-f41.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1756940AbaGORRT (ORCPT ); Tue, 15 Jul 2014 13:17:19 -0400 From: Jeff Layton X-Google-Original-From: Jeff Layton Date: Tue, 15 Jul 2014 13:17:16 -0400 To: Christoph Hellwig Cc: davem@davemloft.net, kuznet@ms2.inr.ac.ru, jmorris@namei.org, yoshfuji@linux-ipv6.org, kaber@trash.net, netdev@vger.kernel.org, linux-kernel@vger.kernel.org, linux-nfs@vger.kernel.org Subject: Re: [PATCH] net: clean up some sparse endianness warnings in ipv6.h Message-ID: <20140715131716.7e14c493@tlielax.poochiereds.net> In-Reply-To: <20140715170107.GA1722@infradead.org> References: <1405340746-10678-1-git-send-email-jlayton@primarydata.com> <20140715170107.GA1722@infradead.org> X-Mailer: Claws Mail 3.10.1 (GTK+ 2.24.22; x86_64-redhat-linux-gnu) MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Tue, 15 Jul 2014 10:01:07 -0700 Christoph Hellwig wrote: > > #if defined(CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS) && BITS_PER_LONG == 64 > > - const unsigned long *ul = (const unsigned long *)a; > > + const __be64 *be = (const __be64 *)a; > > > > - return (ul[0] | (ul[1] ^ cpu_to_be64(1))) == 0UL; > > + return (be[0] | (be[1] ^ cpu_to_be64(1))) == cpu_to_be64(0UL); > > Do you need the swap for 0UL? I know sparse treats 0 as special, so why > wouldn't it treat 0UL special? Or just remove the 0UL postfix, no need > for it in a simple comparism. > > Otherwise looks fine to me. Maybe not, I did it for completeness sake. I'll see if I can remove that. The macros do the conversion at compile time though so it shouldn't hurt anything either way. -- Jeff Layton -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/