Lines Matching refs:rdr
155 struct restore_data_record *rdr = addr; in arch_hibernation_header_save() local
159 rdr->magic = RESTORE_MAGIC; in arch_hibernation_header_save()
160 rdr->jump_address = (unsigned long)restore_registers; in arch_hibernation_header_save()
161 rdr->jump_address_phys = __pa_symbol(restore_registers); in arch_hibernation_header_save()
180 rdr->cr3 = restore_cr3 & ~CR3_PCID_MASK; in arch_hibernation_header_save()
182 return hibernation_e820_save(rdr->e820_digest); in arch_hibernation_header_save()
192 struct restore_data_record *rdr = addr; in arch_hibernation_header_restore() local
194 if (rdr->magic != RESTORE_MAGIC) { in arch_hibernation_header_restore()
199 restore_jump_address = rdr->jump_address; in arch_hibernation_header_restore()
200 jump_address_phys = rdr->jump_address_phys; in arch_hibernation_header_restore()
201 restore_cr3 = rdr->cr3; in arch_hibernation_header_restore()
203 if (hibernation_e820_mismatch(rdr->e820_digest)) { in arch_hibernation_header_restore()