From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-15.8 required=3.0 tests=BAYES_00,DKIM_SIGNED, DKIM_VALID,DKIM_VALID_AU,HEADER_FROM_DIFFERENT_DOMAINS,INCLUDES_CR_TRAILER, INCLUDES_PATCH,MAILING_LIST_MULTI,SPF_HELO_NONE,SPF_PASS,URIBL_BLOCKED autolearn=unavailable autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id 96F2DC433E0 for ; Wed, 10 Feb 2021 02:09:51 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id 5DB8064DDB for ; Wed, 10 Feb 2021 02:09:51 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S235285AbhBJCJl (ORCPT ); Tue, 9 Feb 2021 21:09:41 -0500 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:36092 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S234230AbhBJAyP (ORCPT ); Tue, 9 Feb 2021 19:54:15 -0500 Received: from galois.linutronix.de (Galois.linutronix.de [IPv6:2a0a:51c0:0:12e:550::1]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id E715DC06174A; Tue, 9 Feb 2021 16:53:28 -0800 (PST) Message-Id: <20210210002512.106502464@linutronix.de> DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linutronix.de; s=2020; t=1612918406; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version:content-type:content-type: content-transfer-encoding:content-transfer-encoding: references:references; bh=FxwveKckE0tqKxgLn3EeM+hWUlhTWbik83gdx5hPZqk=; b=vf1m5pgyzXTcJyVlDUobt6WHl/1m9ZgVvKKZNd0IP/x3YcZMAg0ApAwbxyLuupWDls6Tj8 kTkeKsY8XcO/jGBbJRZpf/kH872wFZNqhKMXjUq3V6aPzIBjjqxAsRzW0VdiJFSlclww1H yY4JM5L9l93Hngb7kxrF0n1yB/JZtu80/54E4Vmuv2sMggtp1dOuF89oHNEWY/8q0j9iI2 ezjZnLCSRI+5fm5nSzv94/HSHiKGoloCvfWQvz+70O9fOVnU2qEsNVabGxEzXK9H78imEt mplcrcTinbRL7N9JAIZvI5nSdhUGeqKGlx9CZoXsZmVIFT0z5v9I99t58Oz0xw== DKIM-Signature: v=1; a=ed25519-sha256; c=relaxed/relaxed; d=linutronix.de; s=2020e; t=1612918406; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version:content-type:content-type: content-transfer-encoding:content-transfer-encoding: references:references; bh=FxwveKckE0tqKxgLn3EeM+hWUlhTWbik83gdx5hPZqk=; b=x5iZVVmFeFDsmqSBdBMklqowiTv+OFDqK+BpBfZNGJN9+R5E1VuQykYfdnTUtiWYrbxw+i AqA1C6M1m/cj0RDw== Date: Wed, 10 Feb 2021 00:40:42 +0100 From: Thomas Gleixner To: LKML Cc: x86@kernel.org, Josh Poimboeuf , Helge Deller , "David S. Miller" , Michael Ellerman , Rich Felker , Heiko Carstens , Kees Cook , stable@vger.kernel.org, Lai Jiangshan Subject: [patch V2 01/13] x86/entry: Fix instrumentation annotation References: <20210209234041.127454039@linutronix.de> MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-transfer-encoding: 8-bit Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org From: Thomas Gleixner Embracing a callout into instrumentation_begin() / instrumentation_begin() does not really make sense. Make the latter instrumentation_end(). Fixes: 2f6474e4636b ("x86/entry: Switch XEN/PV hypercall entry to IDTENTRY") Signed-off-by: Thomas Gleixner Reviewed-by: Kees Cook Cc: stable@vger.kernel.org --- arch/x86/entry/common.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- a/arch/x86/entry/common.c +++ b/arch/x86/entry/common.c @@ -270,7 +270,7 @@ static void __xen_pv_evtchn_do_upcall(vo instrumentation_begin(); run_on_irqstack_cond(__xen_pv_evtchn_do_upcall, regs); - instrumentation_begin(); + instrumentation_end(); set_irq_regs(old_regs);