From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from smtp.kernel.org (aws-us-west-2-korg-mail-alma10-1.taild15c8.ts.net [100.103.45.18]) (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 C4E672BD022 for ; Sun, 5 Jul 2026 07:37:41 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=100.103.45.18 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1783237062; cv=none; b=kF4TlN+i3yIRFqBG3R85GhQLqQWSLlWYKsmKEtlC1flNj1eKoy6VnY+2tgstUVtHU9VW5NJVhG4me6o0bz6F5gygbnDp3UEcvHlCkyMTWq+Zm/aboX3knrVRWn5LJiGcZYOCsNergbwrUXbIuUrjHjME3t4DrV7/WNMDuTFGyZQ= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1783237062; c=relaxed/simple; bh=VJB/C6aZs+Oh+WIc9wQW5LMWqhED7DTILcWkh2wuuZ8=; h=Date:From:To:Cc:Subject:Message-ID:MIME-Version:Content-Type: Content-Disposition; b=YLeTGNSapGFaNU+FXu/NUaPay2txXQvh+hHbl9krl3Uv+IgS398hLEQIFoVVnyqia32YkEb/4RWVAJy/8S6rdep4936fFgAuPuKVPuuGlmyF2hLo4i9loU7RT7sRG0Co2p2dzMNq6MxWqmrZEJz20z2FKm8idIx05HJQtFV24ho= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b=oTAiWAWk; arc=none smtp.client-ip=100.103.45.18 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b="oTAiWAWk" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 666821F000E9; Sun, 5 Jul 2026 07:37:39 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=kernel.org; s=k20260515; t=1783237061; bh=RcFddH66MYeDlZ9aJ1NHbPAx512bb4ivyRSxwqP2iSU=; h=Date:From:To:Cc:Subject; b=oTAiWAWkL+X7BueIEPUoAGPIrO16EaZquOwUohOy5KQjAtUPckRcKFxZUbNWyf3ta 1Wo6UT63ApCESQEPFJ0srs4/QOK7LCUe6l3jFknsJzC6uXG2WqAxjmxfOtF10DmwLO AOJbF3341ctSpFD0iu5wdwbwl1L9ks4G6IF4xg9z0yvlrotP9RiNqcMeOIS7QPkn3c Kui7eGQosgTGcfE6amb10Gd7wY2z+N4r+Fd9zquwE1/Ng8nsfD0PGDFu07KKYzw0eC 6Z+xElBrDbVSJpZ2Ew8wyBmb2rzwlOU95FNp2HfW236WdXEOjlOVHLqtVpmouLw9C1 e3B2CTKidIL8A== Date: Sun, 5 Jul 2026 09:37:36 +0200 From: Ingo Molnar To: Linus Torvalds Cc: linux-kernel@vger.kernel.org, Peter Zijlstra , Arnaldo Carvalho de Melo , Jiri Olsa , Alexander Shishkin , Mark Rutland , Namhyung Kim Subject: [GIT PULL] perf events fixes Message-ID: Precedence: bulk X-Mailing-List: linux-kernel@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Linus, Please pull the latest perf/urgent Git tree from: git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf-urgent-2026-07-05 for you to fetch changes up to 169328645663bae30e9abad4012d52441e085a71: Misc perf events fixes: - Fix a perf_event_attr::remove_on_exec bug for group events (Taeyang Lee) - Fix uprobes CALL emulation interaction with shadow stacks, and add a testcase for this (David Windsor) - Fix uprobes unregister bug (Jiri Olsa) Thanks, Ingo ------------------> David Windsor (2): x86/uprobes: Keep shadow stack in sync for emulated CALLs selftests/x86: Add shadow stack uprobe CALL test Jiri Olsa (1): uprobes/x86: Use proper mm_struct in __in_uprobe_trampoline Taeyang Lee (1): perf/core: Detach event groups during remove_on_exec arch/x86/kernel/uprobes.c | 26 +++++--- kernel/events/core.c | 17 ++--- tools/testing/selftests/x86/test_shadow_stack.c | 86 +++++++++++++++++++++++++ 3 files changed, 113 insertions(+), 16 deletions(-)