From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S965223AbdEVWMO (ORCPT ); Mon, 22 May 2017 18:12:14 -0400 Received: from mail-pf0-f177.google.com ([209.85.192.177]:32889 "EHLO mail-pf0-f177.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S964830AbdEVWMI (ORCPT ); Mon, 22 May 2017 18:12:08 -0400 Date: Mon, 22 May 2017 15:12:03 -0700 From: Matthias Kaehlcke To: Andrew Morton Cc: linux-kernel@vger.kernel.org, Douglas Anderson Subject: Re: [PATCH] zlib: Put get_unaligned16() inside #ifdef block Message-ID: <20170522221203.GM141096@google.com> References: <20170522211326.66973-1-mka@chromium.org> <20170522143925.3a7483acaee4b5ed2987cae1@linux-foundation.org> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Disposition: inline In-Reply-To: <20170522143925.3a7483acaee4b5ed2987cae1@linux-foundation.org> User-Agent: Mutt/1.5.21 (2010-09-15) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Hi Andrew, El Mon, May 22, 2017 at 02:39:25PM -0700 Andrew Morton ha dit: > On Mon, 22 May 2017 14:13:26 -0700 Matthias Kaehlcke wrote: > > > The function is not used when CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y. > > Adding the #ifdef fixes the following warning when building with clang: > > > > lib/zlib_inflate/inffast.c:31:1: error: unused function 'get_unaligned16' > > [-Werror,-Wunused-function] > > > > ... > > > > --- a/lib/zlib_inflate/inffast.c > > +++ b/lib/zlib_inflate/inffast.c > > @@ -26,6 +26,7 @@ union uu { > > unsigned char b[2]; > > }; > > > > +#ifndef CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS > > /* Endian independed version */ > > static inline unsigned short > > get_unaligned16(const unsigned short *p) > > @@ -37,6 +38,7 @@ get_unaligned16(const unsigned short *p) > > mm.b[1] = b[1]; > > return mm.us; > > } > > +#endif > > > > #ifdef POSTINC > > # define OFF 0 > > Do we really want to mucky up the source code to keep clang happy? gcc > won't warn about an unused static inline. Can we configure clang to do > the same? To my knowledge there is no option to tell clang to behave like gcc in this aspect. On the positive side the number of instances is relatively limited, at least for defconfig and my custom configs. In most cases it is enough with adding __maybe_unused, which is already widely used in the kernel. Personally I think it is useful to be warned about unused functions in .c files, regardless of whether the function is inline or not.