Lines Matching refs:rdr
93 struct restore_data_record *rdr = addr; in arch_hibernation_header_save() local
97 rdr->magic = RESTORE_MAGIC; in arch_hibernation_header_save()
98 rdr->jump_address = (unsigned long)restore_registers; in arch_hibernation_header_save()
99 rdr->jump_address_phys = __pa_symbol(restore_registers); in arch_hibernation_header_save()
118 rdr->cr3 = restore_cr3 & ~CR3_PCID_MASK; in arch_hibernation_header_save()
120 rdr->e820_checksum = compute_e820_crc32(e820_table_firmware); in arch_hibernation_header_save()
131 struct restore_data_record *rdr = addr; in arch_hibernation_header_restore() local
133 if (rdr->magic != RESTORE_MAGIC) { in arch_hibernation_header_restore()
138 restore_jump_address = rdr->jump_address; in arch_hibernation_header_restore()
139 jump_address_phys = rdr->jump_address_phys; in arch_hibernation_header_restore()
140 restore_cr3 = rdr->cr3; in arch_hibernation_header_restore()
142 if (rdr->e820_checksum != compute_e820_crc32(e820_table_firmware)) { in arch_hibernation_header_restore()