瀏覽代碼

x86/asm, x86/power/hibernate: Use local labels in asm

... so that they don't appear in the object file and thus in
objdump output. They're local anyway and have a meaning only
within that file.

No functionality change.

Signed-off-by: Borislav Petkov <bp@suse.de>
Acked-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
Acked-by: Pavel Machek <pavel@ucw.cz>
Cc: H. Peter Anvin <hpa@zytor.com>
Cc: Rafael J. Wysocki <rjw@rjwysocki.net>
Cc: Thomas Gleixner <tglx@linutronix.de>
Cc: linux-pm@vger.kernel.org
Link: http://lkml.kernel.org/r/1428867906-12016-1-git-send-email-bp@alien8.de
Signed-off-by: Ingo Molnar <mingo@kernel.org>
Borislav Petkov 10 年之前
父節點
當前提交
ff22e20101
共有 1 個文件被更改,包括 4 次插入4 次删除
  1. 4 4
      arch/x86/power/hibernate_asm_64.S

+ 4 - 4
arch/x86/power/hibernate_asm_64.S

@@ -78,9 +78,9 @@ ENTRY(restore_image)
 
 
 	/* code below has been relocated to a safe page */
 	/* code below has been relocated to a safe page */
 ENTRY(core_restore_code)
 ENTRY(core_restore_code)
-loop:
+.Lloop:
 	testq	%rdx, %rdx
 	testq	%rdx, %rdx
-	jz	done
+	jz	.Ldone
 
 
 	/* get addresses from the pbe and copy the page */
 	/* get addresses from the pbe and copy the page */
 	movq	pbe_address(%rdx), %rsi
 	movq	pbe_address(%rdx), %rsi
@@ -91,8 +91,8 @@ loop:
 
 
 	/* progress to the next pbe */
 	/* progress to the next pbe */
 	movq	pbe_next(%rdx), %rdx
 	movq	pbe_next(%rdx), %rdx
-	jmp	loop
-done:
+	jmp	.Lloop
+.Ldone:
 	/* jump to the restore_registers address from the image header */
 	/* jump to the restore_registers address from the image header */
 	jmpq	*%rax
 	jmpq	*%rax
 	/*
 	/*