Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753046AbcLHSZo convert rfc822-to-8bit (ORCPT ); Thu, 8 Dec 2016 13:25:44 -0500 Received: from blatinox.fr ([51.254.120.209]:55038 "EHLO vps202351.ovh.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752904AbcLHSZm (ORCPT ); Thu, 8 Dec 2016 13:25:42 -0500 Date: Thu, 8 Dec 2016 13:25:37 -0500 From: =?UTF-8?B?SsOpcsOpbXk=?= Lefaure To: "Kirill A. Shutemov" Cc: x86@kernel.org, Borislav Petkov , linux-kernel@vger.kernel.org Subject: Re: [PATCH] x86/vm86: fix compilation warning on a unused variable Message-ID: <20161208132537.29c2b325@blatinox-arch> In-Reply-To: <20161208105011.2jmuvlgdnirnv33b@black.fi.intel.com> References: <20161208043833.15088-1-jeremy.lefaure@lse.epita.fr> <20161208105011.2jmuvlgdnirnv33b@black.fi.intel.com> X-Mailer: Claws Mail 3.14.0-64-g1117a0 (GTK+ 2.24.31; x86_64-unknown-linux-gnu) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8BIT Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1470 Lines: 35 On Thu, 8 Dec 2016 13:50:11 +0300 "Kirill A. Shutemov" wrote: > On Wed, Dec 07, 2016 at 11:38:33PM -0500, Jérémy Lefaure wrote: > > When CONFIG_TRANSPARENT_HUGEPAGE is disabled, split_huge_pmd is a no-op > > stub. In such case, vma is unused and a compiler raises a warning: > > > > arch/x86/kernel/vm86_32.c: In function ‘mark_screen_rdonly’: > > arch/x86/kernel/vm86_32.c:180:26: warning: unused variable ‘vma’ > > [-Wunused-variable] > > struct vm_area_struct *vma = find_vma(mm, 0xA0000); > > ^~~ > > Adding __maybe_unused in the vma declaration fixes this warning. > > Hm. pmd_trans_huge() is zero if CONFIG_TRANSPARENT_HUGEPAGE is not set. > Compiler should get rid of whole block of code under the 'if'. > > Could you share your kernel config which triggers the warning? > And what compiler do you use? > After a `make allnoconfig`, I enable "Legacy VM86 support" and nothing else. I tested with 2 compilers, gcc 4.9.2 (on debian jessie) and gcc 6.2.1 (on archlinux). Actually, the compiler does not raise warnings on complete build (`make mrproper`, configuration and `make`) but only on partial build (`make arch/x86/kernel/vm86_32.o` or `touch arch/x86/kernel/vm86_32.c && make`). So maybe it is a compiler issue ? The solution you propose in your other email (adding "(void)__vma;" in the no-op split_huge_pmd) seems to fix the warnings on partial build. Thanks, Jérémy