diff options
Diffstat (limited to 'arch/x86/power/hibernate_asm_64.S')
| -rw-r--r-- | arch/x86/power/hibernate_asm_64.S | 14 | 
1 files changed, 8 insertions, 6 deletions
diff --git a/arch/x86/power/hibernate_asm_64.S b/arch/x86/power/hibernate_asm_64.S index a4d5eb0a7ece..7918b8415f13 100644 --- a/arch/x86/power/hibernate_asm_64.S +++ b/arch/x86/power/hibernate_asm_64.S @@ -22,7 +22,7 @@  #include <asm/processor-flags.h>  #include <asm/frame.h> -ENTRY(swsusp_arch_suspend) +SYM_FUNC_START(swsusp_arch_suspend)  	movq	$saved_context, %rax  	movq	%rsp, pt_regs_sp(%rax)  	movq	%rbp, pt_regs_bp(%rax) @@ -50,9 +50,9 @@ ENTRY(swsusp_arch_suspend)  	call swsusp_save  	FRAME_END  	ret -ENDPROC(swsusp_arch_suspend) +SYM_FUNC_END(swsusp_arch_suspend) -ENTRY(restore_image) +SYM_CODE_START(restore_image)  	/* prepare to jump to the image kernel */  	movq	restore_jump_address(%rip), %r8  	movq	restore_cr3(%rip), %r9 @@ -67,9 +67,10 @@ ENTRY(restore_image)  	/* jump to relocated restore code */  	movq	relocated_restore_code(%rip), %rcx  	jmpq	*%rcx +SYM_CODE_END(restore_image)  	/* code below has been relocated to a safe page */ -ENTRY(core_restore_code) +SYM_CODE_START(core_restore_code)  	/* switch to temporary page tables */  	movq	%rax, %cr3  	/* flush TLB */ @@ -97,10 +98,11 @@ ENTRY(core_restore_code)  .Ldone:  	/* jump to the restore_registers address from the image header */  	jmpq	*%r8 +SYM_CODE_END(core_restore_code)  	 /* code below belongs to the image kernel */  	.align PAGE_SIZE -ENTRY(restore_registers) +SYM_FUNC_START(restore_registers)  	/* go back to the original page tables */  	movq    %r9, %cr3 @@ -142,4 +144,4 @@ ENTRY(restore_registers)  	movq	%rax, in_suspend(%rip)  	ret -ENDPROC(restore_registers) +SYM_FUNC_END(restore_registers)  |