diff options
author | Juergen Gross <jgross@suse.com> | 2020-08-15 12:06:38 +0200 |
---|---|---|
committer | Ingo Molnar <mingo@kernel.org> | 2020-08-15 13:52:11 +0200 |
commit | ecac71816a1829c0e54c41c5f1845f75b55dc618 (patch) | |
tree | cbd5af6cc3c72d3fd0cfbf248293c9e754b13f0b /arch/x86/include/asm/required-features.h | |
parent | x86/paravirt: Clean up paravirt macros (diff) | |
download | linux-ecac71816a1829c0e54c41c5f1845f75b55dc618.tar.xz linux-ecac71816a1829c0e54c41c5f1845f75b55dc618.zip |
x86/paravirt: Use CONFIG_PARAVIRT_XXL instead of CONFIG_PARAVIRT
There are some code parts using CONFIG_PARAVIRT for Xen pvops related
issues instead of the more stringent CONFIG_PARAVIRT_XXL.
Signed-off-by: Juergen Gross <jgross@suse.com>
Signed-off-by: Ingo Molnar <mingo@kernel.org>
Link: https://lore.kernel.org/r/20200815100641.26362-4-jgross@suse.com
Diffstat (limited to 'arch/x86/include/asm/required-features.h')
-rw-r--r-- | arch/x86/include/asm/required-features.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/x86/include/asm/required-features.h b/arch/x86/include/asm/required-features.h index 6847d85400a8..3ff0d48469f2 100644 --- a/arch/x86/include/asm/required-features.h +++ b/arch/x86/include/asm/required-features.h @@ -54,7 +54,7 @@ #endif #ifdef CONFIG_X86_64 -#ifdef CONFIG_PARAVIRT +#ifdef CONFIG_PARAVIRT_XXL /* Paravirtualized systems may not have PSE or PGE available */ #define NEED_PSE 0 #define NEED_PGE 0 |