mirror of
https://github.com/edk2-porting/linux-next.git
synced 2024-12-23 20:53:53 +08:00
xen64: fix build error on 32-bit + !HIGHMEM
fix: arch/x86/xen/enlighten.c: In function 'xen_set_fixmap': arch/x86/xen/enlighten.c:1127: error: 'FIX_KMAP_BEGIN' undeclared (first use in this function) arch/x86/xen/enlighten.c:1127: error: (Each undeclared identifier is reported only once arch/x86/xen/enlighten.c:1127: error: for each function it appears in.) arch/x86/xen/enlighten.c:1127: error: 'FIX_KMAP_END' undeclared (first use in this function) make[1]: *** [arch/x86/xen/enlighten.o] Error 1 make: *** [arch/x86/xen/enlighten.o] Error 2 FIX_KMAP_BEGIN is only available on HIGHMEM. Signed-off-by: Ingo Molnar <mingo@elte.hu>
This commit is contained in:
parent
9c8a442044
commit
b3fe124389
@ -1124,7 +1124,9 @@ static void xen_set_fixmap(unsigned idx, unsigned long phys, pgprot_t prot)
|
|||||||
#ifdef CONFIG_X86_32
|
#ifdef CONFIG_X86_32
|
||||||
case FIX_WP_TEST:
|
case FIX_WP_TEST:
|
||||||
case FIX_VDSO:
|
case FIX_VDSO:
|
||||||
|
# ifdef CONFIG_HIGHMEM
|
||||||
case FIX_KMAP_BEGIN ... FIX_KMAP_END:
|
case FIX_KMAP_BEGIN ... FIX_KMAP_END:
|
||||||
|
# endif
|
||||||
#else
|
#else
|
||||||
case VSYSCALL_LAST_PAGE ... VSYSCALL_FIRST_PAGE:
|
case VSYSCALL_LAST_PAGE ... VSYSCALL_FIRST_PAGE:
|
||||||
#endif
|
#endif
|
||||||
|
Loading…
Reference in New Issue
Block a user