mirror of
git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2026-03-22 07:27:12 +08:00
The config XEN_SAVE_RESTORE's only purpose is to select HIBERNATE_CALLBACKS, when config XEN is set. The XEN config definition can simply select HIBERNATE_CALLBACKS, though, and the definition of XEN_SAVE_RESTORE can be dropped. So, remove this indirection through XEN_SAVE_RESTORE and select HIBERNATE_CALLBACKS directly. Also, drop the XEN_SAVE_RESTORE from the x86 xen config fragment. No functional change intended with this clean-up. Signed-off-by: Lukas Bulwahn <lukas.bulwahn@redhat.com> Reviewed-by: Juergen Gross <jgross@suse.com> Signed-off-by: Juergen Gross <jgross@suse.com> Message-ID: <20250829070402.159390-1-lukas.bulwahn@redhat.com>
25 lines
628 B
Plaintext
25 lines
628 B
Plaintext
# global x86 required specific stuff
|
|
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_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
|