mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-27 22:24:11 +08:00
ab0af755d4
Commit c70727a5bc
("xen: allow more than 512 GB of RAM for 64 bit
pv-domains") from July 2015 replaces the config XEN_MAX_DOMAIN_MEMORY with
a new config XEN_512GB, but misses to adjust arch/x86/configs/xen.config.
As XEN_512GB defaults to yes, there is no need to explicitly set any config
in xen.config.
Just remove setting the obsolete config XEN_MAX_DOMAIN_MEMORY.
Signed-off-by: Lukas Bulwahn <lukas.bulwahn@gmail.com>
Reviewed-by: Juergen Gross <jgross@suse.com>
Link: https://lore.kernel.org/r/20220817044333.22310-1-lukas.bulwahn@gmail.com
Signed-off-by: Juergen Gross <jgross@suse.com>
28 lines
711 B
Plaintext
28 lines
711 B
Plaintext
# global x86 required specific stuff
|
|
# On 32-bit HIGHMEM4G is not allowed
|
|
CONFIG_HIGHMEM64G=y
|
|
CONFIG_64BIT=y
|
|
|
|
# These enable us to allow some of the
|
|
# not so generic stuff below
|
|
CONFIG_HYPERVISOR_GUEST=y
|
|
CONFIG_PCI=y
|
|
CONFIG_PCI_MSI=y
|
|
CONFIG_X86_MCE=y
|
|
CONFIG_ACPI_PROCESSOR=y
|
|
CONFIG_CPU_FREQ=y
|
|
|
|
# x86 xen specific config options
|
|
CONFIG_XEN_PVH=y
|
|
CONFIG_XEN_SAVE_RESTORE=y
|
|
# CONFIG_XEN_DEBUG_FS is not set
|
|
CONFIG_XEN_MCE_LOG=y
|
|
CONFIG_XEN_ACPI_PROCESSOR=m
|
|
# x86 specific backend drivers
|
|
CONFIG_XEN_PCIDEV_BACKEND=m
|
|
# x86 specific frontend drivers
|
|
CONFIG_XEN_PCIDEV_FRONTEND=m
|
|
# depends on MEMORY_HOTPLUG, arm64 doesn't enable this yet,
|
|
# move to generic config if it ever does.
|
|
CONFIG_XEN_BALLOON_MEMORY_HOTPLUG=y
|