diff options
author | Kirill A. Shutemov <kirill.shutemov@linux.intel.com> | 2017-02-13 15:52:28 +0300 |
---|---|---|
committer | Thomas Gleixner <tglx@linutronix.de> | 2017-02-13 21:04:38 +0300 |
commit | 3ba5b5ea7dc3a10ef50819b43a9f8de2705f4eec (patch) | |
tree | 20ce08b017488fdfc6691a460365cfc5d6522bb7 /.cocciconfig | |
parent | 7089db84e356562f8ba737c29e472cc42d530dbc (diff) | |
download | linux-3ba5b5ea7dc3a10ef50819b43a9f8de2705f4eec.tar.xz |
x86/vm86: Fix unused variable warning if THP is disabled
GCC complains about unused variable 'vma' in mark_screen_rdonly() if THP is
disabled:
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);
That's silly. pmd_trans_huge() resolves to 0 when THP is disabled, so the
whole block should be eliminated.
Moving the variable declaration outside the if() block shuts GCC up.
Reported-by: Jérémy Lefaure <jeremy.lefaure@lse.epita.fr>
Signed-off-by: Kirill A. Shutemov <kirill.shutemov@linux.intel.com>
Tested-by: Borislav Petkov <bp@suse.de>
Cc: Carlos O'Donell <carlos@redhat.com>
Link: http://lkml.kernel.org/r/20170213125228.63645-1-kirill.shutemov@linux.intel.com
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Diffstat (limited to '.cocciconfig')
0 files changed, 0 insertions, 0 deletions