diff options
author | Jason Andryuk <jandryuk@gmail.com> | 2020-12-16 09:08:38 -0500 |
---|---|---|
committer | Juergen Gross <jgross@suse.com> | 2020-12-19 07:27:37 +0100 |
commit | 6190c0ccaf5dfee845df9c9cd8ad9fdc5856bb41 (patch) | |
tree | d8b06b26a3b30b60c03f1b86fabce28555dc2ebd /arch | |
parent | 5e65f524ed25a124e68bab511a3372821c7dd966 (diff) | |
download | linux-6190c0ccaf5dfee845df9c9cd8ad9fdc5856bb41.tar.bz2 |
xen: Kconfig: remove X86_64 depends from XEN_512GB
commit bfda93aee0ec ("xen: Kconfig: nest Xen guest options")
accidentally re-added X86_64 as a dependency to XEN_512GB. It was
originally removed in commit a13f2ef168cb ("x86/xen: remove 32-bit Xen
PV guest support"). Remove it again.
Fixes: bfda93aee0ec ("xen: Kconfig: nest Xen guest options")
Reported-by: Boris Ostrovsky <boris.ostrovsky@oracle.com>
Signed-off-by: Jason Andryuk <jandryuk@gmail.com>
Reviewed-by: Juergen Gross <jgross@suse.com>
Link: https://lore.kernel.org/r/20201216140838.16085-1-jandryuk@gmail.com
Signed-off-by: Juergen Gross <jgross@suse.com>
Diffstat (limited to 'arch')
-rw-r--r-- | arch/x86/xen/Kconfig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/x86/xen/Kconfig b/arch/x86/xen/Kconfig index 2b105888927c..afc1da68b06d 100644 --- a/arch/x86/xen/Kconfig +++ b/arch/x86/xen/Kconfig @@ -28,7 +28,7 @@ config XEN_PV config XEN_512GB bool "Limit Xen pv-domain memory to 512GB" - depends on XEN_PV && X86_64 + depends on XEN_PV default y help Limit paravirtualized user domains to 512GB of RAM. |