Lines Matching refs:swsusp_header
106 struct swsusp_header { struct
117 static struct swsusp_header *swsusp_header; argument
319 hib_submit_io(REQ_OP_READ, swsusp_resume_block, swsusp_header, NULL); in mark_swapfiles()
320 if (!memcmp("SWAP-SPACE",swsusp_header->sig, 10) || in mark_swapfiles()
321 !memcmp("SWAPSPACE2",swsusp_header->sig, 10)) { in mark_swapfiles()
322 memcpy(swsusp_header->orig_sig,swsusp_header->sig, 10); in mark_swapfiles()
323 memcpy(swsusp_header->sig, HIBERNATE_SIG, 10); in mark_swapfiles()
324 swsusp_header->image = handle->first_sector; in mark_swapfiles()
326 swsusp_header->hw_sig = swsusp_hardware_signature; in mark_swapfiles()
329 swsusp_header->flags = flags; in mark_swapfiles()
331 swsusp_header->crc32 = handle->crc32; in mark_swapfiles()
333 swsusp_resume_block, swsusp_header, NULL); in mark_swapfiles()
1017 *flags_p = swsusp_header->flags; in get_swap_reader()
1019 if (!swsusp_header->image) /* how can this happen? */ in get_swap_reader()
1024 offset = swsusp_header->image; in get_swap_reader()
1508 if (swsusp_header->flags & SF_CRC32_MODE) { in load_compressed_image()
1509 if(handle->crc32 != swsusp_header->crc32) { in load_compressed_image()
1592 clear_page(swsusp_header); in swsusp_check()
1594 swsusp_header, NULL); in swsusp_check()
1598 if (!memcmp(HIBERNATE_SIG, swsusp_header->sig, 10)) { in swsusp_check()
1599 memcpy(swsusp_header->sig, swsusp_header->orig_sig, 10); in swsusp_check()
1600 swsusp_header_flags = swsusp_header->flags; in swsusp_check()
1604 swsusp_header, NULL); in swsusp_check()
1608 if (!error && swsusp_header->flags & SF_HW_SIG && in swsusp_check()
1609 swsusp_header->hw_sig != swsusp_hardware_signature) { in swsusp_check()
1611 swsusp_header->hw_sig, swsusp_hardware_signature); in swsusp_check()
1654 swsusp_header, NULL); in swsusp_unmark()
1655 if (!memcmp(HIBERNATE_SIG,swsusp_header->sig, 10)) { in swsusp_unmark()
1656 memcpy(swsusp_header->sig,swsusp_header->orig_sig, 10); in swsusp_unmark()
1659 swsusp_header, NULL); in swsusp_unmark()
1676 swsusp_header = (struct swsusp_header*) __get_free_page(GFP_KERNEL); in swsusp_header_init()
1677 if (!swsusp_header) in swsusp_header_init()