Received: by 2002:ac0:a594:0:0:0:0:0 with SMTP id m20-v6csp4281770imm; Fri, 18 May 2018 02:25:26 -0700 (PDT) X-Google-Smtp-Source: AB8JxZqgfK7ea3UXLl9NA3rBoA1lANSWAH4GOOpbX0BqT6kUM5I6uRe1p/96xH/H95l4PthzsKmI X-Received: by 2002:aa7:84c7:: with SMTP id x7-v6mr8667615pfn.195.1526635526442; Fri, 18 May 2018 02:25:26 -0700 (PDT) ARC-Seal: i=1; a=rsa-sha256; t=1526635526; cv=none; d=google.com; s=arc-20160816; b=1HJBoRhUf5zCByj9aFNFQVkmZ5XKU1ZUC+4OU3FdFlUlVetuIyOCQMgXPy9d7iJH+C kG9KxcgplefCzFx5bF4b4Qxym7UEZTzRVuD/OtSqarAMqdivkUr4B8Ag1Sl4VUGs7LVM 8i5JWuCi1xMReDZCzsG3Hf1n3d7PfA+yy+sZWe/nqF4K4BBHdY31jgD14mNweOYY1mA5 7zdLQyHHZL1uCF62+YamEA57jxE5yAJCCPl7Kk9MhOTWczTPTldHZ12Ws/NlGuFsMeRQ vAe6AsnBwbGSYPUwUStNBxNJVOBnqzvrAdRqROSRvezFOgi6sqYtaSP17GEMymFg1T+l tpgg== ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; h=list-id:precedence:sender:references:in-reply-to:message-id:date :subject:cc:to:from:arc-authentication-results; bh=dhtIW/FHCdEmp40EAvZ+mwvFZuCEqEA82dRsy5DWmd4=; b=ibR08jb3qnglOiCchYwf8MgsKF3nIVeY9UdjWrrBhxXOIjbmD5AFHD49ecUs5VOeYU gSaBJq/PWrBLKo4aIoMe1JhNdDujttUt1m1kxQivm5ETD8AldwZFjhwbX9b/k6lrQoEJ 9YicnW93IhP/X/cW4MIhaGiMv5txSQPc33BW6PpRh/2xtqazauRwbGyGNA1SZzwwEPQG ryTAQT++GEpKEOTbsaw7bsM00GOxf+kzFahgHMiGWffcEYxndXMaRAy8Gj/b6niXdsbi eboXfHBWjAANTY2Jx+tJWRNaxPDRHk5faT+4FP0yBNDZshFohEkeGVRu2og36RVJbr8D 3Hxw== ARC-Authentication-Results: i=1; mx.google.com; spf=pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Return-Path: Received: from vger.kernel.org (vger.kernel.org. [209.132.180.67]) by mx.google.com with ESMTP id g11-v6si7200484pfk.187.2018.05.18.02.25.12; Fri, 18 May 2018 02:25:26 -0700 (PDT) Received-SPF: pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) client-ip=209.132.180.67; Authentication-Results: mx.google.com; spf=pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753156AbeERJRk (ORCPT + 99 others); Fri, 18 May 2018 05:17:40 -0400 Received: from mx2.suse.de ([195.135.220.15]:45372 "EHLO mx2.suse.de" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1753099AbeERJRa (ORCPT ); Fri, 18 May 2018 05:17:30 -0400 X-Virus-Scanned: by amavisd-new at test-mx.suse.de Received: from relay2.suse.de (charybdis-ext.suse.de [195.135.220.254]) by mx2.suse.de (Postfix) with ESMTP id EE415AF43; Fri, 18 May 2018 09:17:28 +0000 (UTC) From: Jiri Slaby To: mingo@redhat.com Cc: linux-arch@vger.kernel.org, linux-kernel@vger.kernel.org, Jiri Slaby , Thomas Gleixner , "H. Peter Anvin" , x86@kernel.org Subject: [PATCH v6 04/28] x86/asm: annotate relocate_kernel Date: Fri, 18 May 2018 11:16:57 +0200 Message-Id: <20180518091721.7604-5-jslaby@suse.cz> X-Mailer: git-send-email 2.16.3 In-Reply-To: <20180518091721.7604-1-jslaby@suse.cz> References: <20180518091721.7604-1-jslaby@suse.cz> Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org There are functions in relocate_kernel which are not annotated. This makes automatic annotations rather hard. So annotate all the functions now. Note that these are not C-like functions, so we do not use FUNC, but CODE markers. Also they are not aligned, so we use the NOALIGN versions: - SYM_CODE_START_NOALIGN - SYM_CODE_START_LOCAL_NOALIGN - SYM_CODE_END In return, we get: 0000 108 NOTYPE GLOBAL DEFAULT 1 relocate_kernel 006c 165 NOTYPE LOCAL DEFAULT 1 identity_mapped 0146 127 NOTYPE LOCAL DEFAULT 1 swap_pages 0111 53 NOTYPE LOCAL DEFAULT 1 virtual_mapped Signed-off-by: Jiri Slaby Cc: Thomas Gleixner Cc: Ingo Molnar Cc: "H. Peter Anvin" Cc: x86@kernel.org --- arch/x86/kernel/relocate_kernel_32.S | 13 ++++++++----- arch/x86/kernel/relocate_kernel_64.S | 13 ++++++++----- 2 files changed, 16 insertions(+), 10 deletions(-) diff --git a/arch/x86/kernel/relocate_kernel_32.S b/arch/x86/kernel/relocate_kernel_32.S index 77630d57e7bf..74d7891fc026 100644 --- a/arch/x86/kernel/relocate_kernel_32.S +++ b/arch/x86/kernel/relocate_kernel_32.S @@ -37,8 +37,7 @@ #define CP_PA_BACKUP_PAGES_MAP DATA(0x1c) .text - .globl relocate_kernel -relocate_kernel: +SYM_CODE_START_NOALIGN(relocate_kernel) /* Save the CPU context, used for jumping back */ pushl %ebx @@ -95,8 +94,9 @@ relocate_kernel: addl $(identity_mapped - relocate_kernel), %eax pushl %eax ret +SYM_CODE_END(relocate_kernel) -identity_mapped: +SYM_CODE_START_LOCAL_NOALIGN(identity_mapped) /* set return address to 0 if not preserving context */ pushl $0 /* store the start address on the stack */ @@ -193,8 +193,9 @@ identity_mapped: addl $(virtual_mapped - relocate_kernel), %eax pushl %eax ret +SYM_CODE_END(identity_mapped) -virtual_mapped: +SYM_CODE_START_LOCAL_NOALIGN(virtual_mapped) movl CR4(%edi), %eax movl %eax, %cr4 movl CR3(%edi), %eax @@ -210,9 +211,10 @@ virtual_mapped: popl %esi popl %ebx ret +SYM_CODE_END(virtual_mapped) /* Do the copies */ -swap_pages: +SYM_CODE_START_LOCAL_NOALIGN(swap_pages) movl 8(%esp), %edx movl 4(%esp), %ecx pushl %ebp @@ -272,6 +274,7 @@ swap_pages: popl %ebx popl %ebp ret +SYM_CODE_END(swap_pages) .globl kexec_control_code_size .set kexec_control_code_size, . - relocate_kernel diff --git a/arch/x86/kernel/relocate_kernel_64.S b/arch/x86/kernel/relocate_kernel_64.S index 11eda21eb697..beb78767a5b3 100644 --- a/arch/x86/kernel/relocate_kernel_64.S +++ b/arch/x86/kernel/relocate_kernel_64.S @@ -40,8 +40,7 @@ .text .align PAGE_SIZE .code64 - .globl relocate_kernel -relocate_kernel: +SYM_CODE_START_NOALIGN(relocate_kernel) /* * %rdi indirection_page * %rsi page_list @@ -105,8 +104,9 @@ relocate_kernel: addq $(identity_mapped - relocate_kernel), %r8 pushq %r8 ret +SYM_CODE_END(relocate_kernel) -identity_mapped: +SYM_CODE_START_LOCAL_NOALIGN(identity_mapped) /* set return address to 0 if not preserving context */ pushq $0 /* store the start address on the stack */ @@ -211,8 +211,9 @@ identity_mapped: movq $virtual_mapped, %rax pushq %rax ret +SYM_CODE_END(identity_mapped) -virtual_mapped: +SYM_CODE_START_LOCAL_NOALIGN(virtual_mapped) movq RSP(%r8), %rsp movq CR4(%r8), %rax movq %rax, %cr4 @@ -230,9 +231,10 @@ virtual_mapped: popq %rbp popq %rbx ret +SYM_CODE_END(virtual_mapped) /* Do the copies */ -swap_pages: +SYM_CODE_START_LOCAL_NOALIGN(swap_pages) movq %rdi, %rcx /* Put the page_list in %rcx */ xorl %edi, %edi xorl %esi, %esi @@ -285,6 +287,7 @@ swap_pages: jmp 0b 3: ret +SYM_CODE_END(swap_pages) .globl kexec_control_code_size .set kexec_control_code_size, . - relocate_kernel -- 2.16.3