From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from smtp.kernel.org (aws-us-west-2-korg-mail-1.web.codeaurora.org [10.30.226.201]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id 728EE1F4168; Sun, 20 Jul 2025 11:22:03 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=10.30.226.201 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1753010523; cv=none; b=QnH1Ikbe2zRbev/7dlJahpoGU7AzmNVVh50/Le6Fc/LsxRek4KqGO8RCavX+LQhGCbuox/hY6SbinGKN2OV8TI/xLZlRRyLiwBUZ/bn6n9Ui1GSh/M9IZLHdQoQpE32D0Ilqk1B1lnkVTZxJyeZWcV+1BcUFcULdQqF0pqH4GvM= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1753010523; c=relaxed/simple; bh=3uIkfEUozHzb5pUawgw4UEmKyKmCSUiWLTb5Y250hmg=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=BmZaGimPmIcOTBZoeShgCYoFohcMwz1dioTY2+VFFZ+zDf1LKUrmdF5ntrv4DwtEAulFTjC5ayqD9wzmz+Dcp/58q0RzQe0mFvKmuw0bONJYCMew63TAbkcLPhxOY+emdZkAsigZfLajx6i0jVaM4L+URGoOw7KJ33ILFXcZ3F0= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b=kLgXSW63; arc=none smtp.client-ip=10.30.226.201 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b="kLgXSW63" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 32F67C4CEE7; Sun, 20 Jul 2025 11:21:59 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1753010522; bh=3uIkfEUozHzb5pUawgw4UEmKyKmCSUiWLTb5Y250hmg=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=kLgXSW632BxpIzK/ZeFVOnIefmp631hcc+FBFb9dPKYhNJ2Q/l1N9ZQ6q6fnD+OBG TydljIYSB8MFTf4wLlKUSHKntV9HUlTcdCELiTLhtdgfGzYUjEZrpiHjnKmle9nGui RJYY8n1wza0NyWobIpBixKkNBqUDsEfT5uPMldsJFEd6Sm78Pryx1WrQULNpPyOUtr F+YFm3/8RsU7wPxsN2tUtKtaDab5xBlmqw5HXHP6QeU5HbUBQxTTJl2JHTOnGI7L0Q FO3nkm59JMDv55EqRxlQ+pA//VDGfGhZhwPCSsbm8Qs+00yoEEgZ8Ir4LewU8CRokP 2RBXYE4EyB5Gw== From: Jiri Olsa To: Oleg Nesterov , Peter Zijlstra , Andrii Nakryiko Cc: bpf@vger.kernel.org, linux-kernel@vger.kernel.org, linux-trace-kernel@vger.kernel.org, x86@kernel.org, Song Liu , Yonghong Song , John Fastabend , Hao Luo , Steven Rostedt , Masami Hiramatsu , Alan Maguire , David Laight , =?UTF-8?q?Thomas=20Wei=C3=9Fschuh?= , Ingo Molnar Subject: [PATCHv6 perf/core 02/22] uprobes: Rename arch_uretprobe_trampoline function Date: Sun, 20 Jul 2025 13:21:12 +0200 Message-ID: <20250720112133.244369-3-jolsa@kernel.org> X-Mailer: git-send-email 2.50.1 In-Reply-To: <20250720112133.244369-1-jolsa@kernel.org> References: <20250720112133.244369-1-jolsa@kernel.org> Precedence: bulk X-Mailing-List: linux-trace-kernel@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit We are about to add uprobe trampoline, so cleaning up the namespace. Acked-by: Andrii Nakryiko Acked-by: Oleg Nesterov Signed-off-by: Jiri Olsa --- arch/x86/kernel/uprobes.c | 2 +- include/linux/uprobes.h | 2 +- kernel/events/uprobes.c | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/arch/x86/kernel/uprobes.c b/arch/x86/kernel/uprobes.c index 6d383839e839..77050e5a4680 100644 --- a/arch/x86/kernel/uprobes.c +++ b/arch/x86/kernel/uprobes.c @@ -338,7 +338,7 @@ extern u8 uretprobe_trampoline_entry[]; extern u8 uretprobe_trampoline_end[]; extern u8 uretprobe_syscall_check[]; -void *arch_uprobe_trampoline(unsigned long *psize) +void *arch_uretprobe_trampoline(unsigned long *psize) { static uprobe_opcode_t insn = UPROBE_SWBP_INSN; struct pt_regs *regs = task_pt_regs(current); diff --git a/include/linux/uprobes.h b/include/linux/uprobes.h index 516217c39094..01112f27cd21 100644 --- a/include/linux/uprobes.h +++ b/include/linux/uprobes.h @@ -224,7 +224,7 @@ extern bool arch_uprobe_ignore(struct arch_uprobe *aup, struct pt_regs *regs); extern void arch_uprobe_copy_ixol(struct page *page, unsigned long vaddr, void *src, unsigned long len); extern void uprobe_handle_trampoline(struct pt_regs *regs); -extern void *arch_uprobe_trampoline(unsigned long *psize); +extern void *arch_uretprobe_trampoline(unsigned long *psize); extern unsigned long uprobe_get_trampoline_vaddr(void); #else /* !CONFIG_UPROBES */ struct uprobes_state { diff --git a/kernel/events/uprobes.c b/kernel/events/uprobes.c index 257581432cd8..4e8e607abda8 100644 --- a/kernel/events/uprobes.c +++ b/kernel/events/uprobes.c @@ -1727,7 +1727,7 @@ static int xol_add_vma(struct mm_struct *mm, struct xol_area *area) return ret; } -void * __weak arch_uprobe_trampoline(unsigned long *psize) +void * __weak arch_uretprobe_trampoline(unsigned long *psize) { static uprobe_opcode_t insn = UPROBE_SWBP_INSN; @@ -1759,7 +1759,7 @@ static struct xol_area *__create_xol_area(unsigned long vaddr) init_waitqueue_head(&area->wq); /* Reserve the 1st slot for get_trampoline_vaddr() */ set_bit(0, area->bitmap); - insns = arch_uprobe_trampoline(&insns_size); + insns = arch_uretprobe_trampoline(&insns_size); arch_uprobe_copy_ixol(area->page, 0, insns, insns_size); if (!xol_add_vma(mm, area)) -- 2.50.1