From nobody Thu Apr 16 05:23:18 2026 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id 305E6C433FE for ; Thu, 24 Nov 2022 08:53:16 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S229681AbiKXIxN (ORCPT ); Thu, 24 Nov 2022 03:53:13 -0500 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:55162 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S229790AbiKXIxL (ORCPT ); Thu, 24 Nov 2022 03:53:11 -0500 Received: from out0-147.mail.aliyun.com (out0-147.mail.aliyun.com [140.205.0.147]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 1493885A35 for ; Thu, 24 Nov 2022 00:53:08 -0800 (PST) X-Alimail-AntiSpam: AC=PASS;BC=-1|-1;BR=01201311R101e4;CH=green;DM=||false|;DS=||;FP=0|-1|-1|-1|0|-1|-1|-1;HT=ay29a033018047203;MF=houwenlong.hwl@antgroup.com;NM=1;PH=DS;RN=18;SR=0;TI=SMTPD_---.QFkkAyF_1669279984; Received: from localhost(mailfrom:houwenlong.hwl@antgroup.com fp:SMTPD_---.QFkkAyF_1669279984) by smtp.aliyun-inc.com; Thu, 24 Nov 2022 16:53:05 +0800 From: "Hou Wenlong" To: linux-kernel@vger.kernel.org Cc: "Hou Wenlong" , "Juergen Gross" , "=?UTF-8?B?U3JpdmF0c2EgUy4gQmhhdCAoVk13YXJlKQ==?=" , "Alexey Makhalov" , "VMware PV-Drivers Reviewers" , "Thomas Gleixner" , "Ingo Molnar" , "Borislav Petkov" , "Dave Hansen" , , "H. Peter Anvin" , "Peter Zijlstra" , "Josh Poimboeuf" , "Kees Cook" , "Song Liu" , "Nadav Amit" , Subject: [PATCH] x86/paravirt: Use relative reference for original instruction Date: Thu, 24 Nov 2022 16:51:20 +0800 Message-Id: X-Mailer: git-send-email 2.31.1 MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Type: text/plain; charset="utf-8" Similar to the alternative patching, use relative reference for original instruction rather than absolute one, which saves 8 bytes for one entry on x86_64. And it could generate R_X86_64_PC32 relocation instead of R_X86_64_64 relocation, which also reduces relocation metadata on relocatable builds. Signed-off-by: Hou Wenlong --- arch/x86/include/asm/paravirt.h | 6 +++--- arch/x86/include/asm/paravirt_types.h | 4 ++-- arch/x86/kernel/alternative.c | 8 +++++--- 3 files changed, 10 insertions(+), 8 deletions(-) diff --git a/arch/x86/include/asm/paravirt.h b/arch/x86/include/asm/paravir= t.h index 2851bc2339d5..2cbe9b64e103 100644 --- a/arch/x86/include/asm/paravirt.h +++ b/arch/x86/include/asm/paravirt.h @@ -735,13 +735,13 @@ extern void default_banner(void); =20 #else /* __ASSEMBLY__ */ =20 -#define _PVSITE(ptype, ops, word, algn) \ +#define _PVSITE(ptype, ops, algn) \ 771:; \ ops; \ 772:; \ .pushsection .parainstructions,"a"; \ .align algn; \ - word 771b; \ + .long 771b-.; \ .byte ptype; \ .byte 772b-771b; \ _ASM_ALIGN; \ @@ -752,7 +752,7 @@ extern void default_banner(void); #ifdef CONFIG_PARAVIRT_XXL =20 #define PARA_PATCH(off) ((off) / 8) -#define PARA_SITE(ptype, ops) _PVSITE(ptype, ops, .quad, 8) +#define PARA_SITE(ptype, ops) _PVSITE(ptype, ops, 8) #define PARA_INDIRECT(addr) *addr(%rip) =20 #ifdef CONFIG_DEBUG_ENTRY diff --git a/arch/x86/include/asm/paravirt_types.h b/arch/x86/include/asm/p= aravirt_types.h index 8c1da419260f..19f709cf7df9 100644 --- a/arch/x86/include/asm/paravirt_types.h +++ b/arch/x86/include/asm/paravirt_types.h @@ -5,7 +5,7 @@ #ifndef __ASSEMBLY__ /* These all sit in the .parainstructions section to tell us what to patch= . */ struct paravirt_patch_site { - u8 *instr; /* original instructions */ + s32 instr_offset; /* original instructions */ u8 type; /* type of this instruction */ u8 len; /* length of original instruction */ }; @@ -274,7 +274,7 @@ extern struct paravirt_patch_template pv_ops; "771:\n\t" insn_string "\n" "772:\n" \ ".pushsection .parainstructions,\"a\"\n" \ _ASM_ALIGN "\n" \ - _ASM_PTR " 771b\n" \ + " .long 771b-.\n" \ " .byte " type "\n" \ " .byte 772b-771b\n" \ _ASM_ALIGN "\n" \ diff --git a/arch/x86/kernel/alternative.c b/arch/x86/kernel/alternative.c index 111b809f0ac2..6eea563a098d 100644 --- a/arch/x86/kernel/alternative.c +++ b/arch/x86/kernel/alternative.c @@ -1232,20 +1232,22 @@ void __init_or_module apply_paravirt(struct paravir= t_patch_site *start, { struct paravirt_patch_site *p; char insn_buff[MAX_PATCH_LEN]; + u8 *instr; =20 for (p =3D start; p < end; p++) { unsigned int used; =20 + instr =3D (u8 *)&p->instr_offset + p->instr_offset; BUG_ON(p->len > MAX_PATCH_LEN); /* prep the buffer with the original instructions */ - memcpy(insn_buff, p->instr, p->len); - used =3D paravirt_patch(p->type, insn_buff, (unsigned long)p->instr, p->= len); + memcpy(insn_buff, instr, p->len); + used =3D paravirt_patch(p->type, insn_buff, (unsigned long)instr, p->len= ); =20 BUG_ON(used > p->len); =20 /* Pad the rest with nops */ add_nops(insn_buff + used, p->len - used); - text_poke_early(p->instr, insn_buff, p->len); + text_poke_early(instr, insn_buff, p->len); } } extern struct paravirt_patch_site __start_parainstructions[], --=20 2.31.1