• Toshi Kani's avatar
    x86/vdso32: Define PGTABLE_LEVELS to 32bit VDSO · fb535ccb
    Toshi Kani authored
    In case of CONFIG_X86_64, vdso32/vclock_gettime.c fakes a 32-bit
    non-PAE kernel configuration by re-defining it to CONFIG_X86_32.
    However, it does not re-define CONFIG_PGTABLE_LEVELS leaving it
    as 4 levels.
    
    This mismatch leads <asm/pgtable_type.h> to NOT include <asm-generic/
    pgtable-nopud.h> and <asm-generic/pgtable-nopmd.h>, which will cause
    compile errors when a later patch enhances <asm/pgtable_type.h> to
    use PUD_SHIFT and PMD_SHIFT.  These -nopud & -nopmd headers define
    these SHIFTs for the 32-bit non-PAE kernel.
    
    Fix it by re-defining CONFIG_PGTABLE_LEVELS to 2 levels.
    Signed-off-by: default avatarToshi Kani <toshi.kani@hpe.com>
    Cc: Andrew Morton <akpm@linux-foundation.org>
    Cc: Juergen Gross <jgross@suse.com>
    Cc: H. Peter Anvin <hpa@zytor.com>
    Cc: Ingo Molnar <mingo@redhat.com>
    Cc: Borislav Petkov <bp@alien8.de>
    Cc: Konrad Wilk <konrad.wilk@oracle.com>
    Cc: Robert Elliot <elliott@hpe.com>
    Cc: linux-mm@kvack.org
    Link: http://lkml.kernel.org/r/1442514264-12475-2-git-send-email-toshi.kani@hpe.comSigned-off-by: default avatarThomas Gleixner <tglx@linutronix.de>
    fb535ccb
vclock_gettime.c 618 Bytes