mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-11-25 02:40:54 +07:00
suspend: cleanup reference to swsusp_pg_dir[]
swsusp_pg_dir[] is used for suspend, but not for hibernation. clean-up the ifdefs which worked by accident, while implying the opposite. Delete the __nosavedata, which also implied the opposite. Some day we may optimize CONFIG_ACPI_SLEEP to build minimal kernels for just hibernate or just suspend but not both, but today isn't that day. Signed-off-by: Rafael J. Wysocki <rjw@sisk.pl> Signed-off-by: Len Brown <len.brown@intel.com>
This commit is contained in:
parent
ffffa4b502
commit
a6eb84bc1e
@ -423,23 +423,23 @@ static void __init pagetable_init(void)
|
|||||||
paravirt_pagetable_setup_done(pgd_base);
|
paravirt_pagetable_setup_done(pgd_base);
|
||||||
}
|
}
|
||||||
|
|
||||||
#if defined(CONFIG_HIBERNATION) || defined(CONFIG_ACPI)
|
#ifdef CONFIG_ACPI_SLEEP
|
||||||
/*
|
/*
|
||||||
* Swap suspend & friends need this for resume because things like the intel-agp
|
* ACPI suspend needs this for resume, because things like the intel-agp
|
||||||
* driver might have split up a kernel 4MB mapping.
|
* driver might have split up a kernel 4MB mapping.
|
||||||
*/
|
*/
|
||||||
char __nosavedata swsusp_pg_dir[PAGE_SIZE]
|
char swsusp_pg_dir[PAGE_SIZE]
|
||||||
__attribute__ ((aligned(PAGE_SIZE)));
|
__attribute__ ((aligned(PAGE_SIZE)));
|
||||||
|
|
||||||
static inline void save_pg_dir(void)
|
static inline void save_pg_dir(void)
|
||||||
{
|
{
|
||||||
memcpy(swsusp_pg_dir, swapper_pg_dir, PAGE_SIZE);
|
memcpy(swsusp_pg_dir, swapper_pg_dir, PAGE_SIZE);
|
||||||
}
|
}
|
||||||
#else
|
#else /* !CONFIG_ACPI_SLEEP */
|
||||||
static inline void save_pg_dir(void)
|
static inline void save_pg_dir(void)
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
#endif
|
#endif /* !CONFIG_ACPI_SLEEP */
|
||||||
|
|
||||||
void zap_low_mappings(void)
|
void zap_low_mappings(void)
|
||||||
{
|
{
|
||||||
|
Loading…
Reference in New Issue
Block a user