|
@@ -156,6 +156,12 @@ extern int restore_image(void);
|
|
*/
|
|
*/
|
|
unsigned long restore_jump_address;
|
|
unsigned long restore_jump_address;
|
|
|
|
|
|
|
|
+/*
|
|
|
|
+ * Value of the cr3 register from before the hibernation (this value is passed
|
|
|
|
+ * in the image header).
|
|
|
|
+ */
|
|
|
|
+unsigned long restore_cr3;
|
|
|
|
+
|
|
pgd_t *temp_level4_pgt;
|
|
pgd_t *temp_level4_pgt;
|
|
|
|
|
|
void *relocated_restore_code;
|
|
void *relocated_restore_code;
|
|
@@ -254,7 +260,8 @@ int pfn_is_nosave(unsigned long pfn)
|
|
|
|
|
|
struct restore_data_record {
|
|
struct restore_data_record {
|
|
unsigned long jump_address;
|
|
unsigned long jump_address;
|
|
- unsigned long control;
|
|
|
|
|
|
+ unsigned long cr3;
|
|
|
|
+ unsigned long magic;
|
|
};
|
|
};
|
|
|
|
|
|
#define RESTORE_MAGIC 0x0123456789ABCDEFUL
|
|
#define RESTORE_MAGIC 0x0123456789ABCDEFUL
|
|
@@ -271,7 +278,8 @@ int arch_hibernation_header_save(void *addr, unsigned int max_size)
|
|
if (max_size < sizeof(struct restore_data_record))
|
|
if (max_size < sizeof(struct restore_data_record))
|
|
return -EOVERFLOW;
|
|
return -EOVERFLOW;
|
|
rdr->jump_address = restore_jump_address;
|
|
rdr->jump_address = restore_jump_address;
|
|
- rdr->control = (restore_jump_address ^ RESTORE_MAGIC);
|
|
|
|
|
|
+ rdr->cr3 = restore_cr3;
|
|
|
|
+ rdr->magic = RESTORE_MAGIC;
|
|
return 0;
|
|
return 0;
|
|
}
|
|
}
|
|
|
|
|
|
@@ -285,7 +293,7 @@ int arch_hibernation_header_restore(void *addr)
|
|
struct restore_data_record *rdr = addr;
|
|
struct restore_data_record *rdr = addr;
|
|
|
|
|
|
restore_jump_address = rdr->jump_address;
|
|
restore_jump_address = rdr->jump_address;
|
|
- return (rdr->control == (restore_jump_address ^ RESTORE_MAGIC)) ?
|
|
|
|
- 0 : -EINVAL;
|
|
|
|
|
|
+ restore_cr3 = rdr->cr3;
|
|
|
|
+ return (rdr->magic == RESTORE_MAGIC) ? 0 : -EINVAL;
|
|
}
|
|
}
|
|
#endif /* CONFIG_HIBERNATION */
|
|
#endif /* CONFIG_HIBERNATION */
|