From nobody Sat Jun 20 17:35:38 2026 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 5D9E12F12CF for ; Sun, 12 Apr 2026 17:46:04 +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=1776015964; cv=none; b=Dx70PmhKPHUadwPxpJ5gTW+9T4BN1NQ382tfViMAeKuhmUPHePDePsl+vfZpKzgY7WqpS2bgRLrkfmaIDKu4q0H3rT74DYgJZs79T/HVg9ucDftVq5/5DtHzzmoNmVJWZvtAdg0Mhzl8JOIrPKrDdIKpa5ySl/lCXQexe/R4oyw= ARC-Message-Signature: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1776015964; c=relaxed/simple; bh=HcIKewAw9LZkwzu7OgVAcmw8YTxOTr/V+xcfWNwkTWg=; h=Date:From:To:Cc:Subject:References:Message-ID:Content-Type: MIME-Version; b=Qdc/R71NOlKLoYmjLMc7+BDRrjTqC/j0oTpHqrdht5ZQPwUAB92uVZra+IYJCsBx6QomHQ5c4Tc2Qnb1g1zQv4qiedLBLcFxw4gCiSuGquIkCMA4HydFhr3mZSuCQ0QcUojJ5R5bbsxwFFHNLA4lB2L/syweGM3aCQhQBD6F4AQ= ARC-Authentication-Results: i=1; smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b=jU1bLTp5; 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="jU1bLTp5" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 60341C2BCB4; Sun, 12 Apr 2026 17:46:03 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1776015963; bh=HcIKewAw9LZkwzu7OgVAcmw8YTxOTr/V+xcfWNwkTWg=; h=Date:From:To:Cc:Subject:References:From; b=jU1bLTp5FNtoDHNe0VK1Ai7DvNpw7QvW8Qr+XTVotDoi5cRt2pzkQluH7hPPbWHSj K6nOIwh4gewxJ05eYtRbzolYalK+O/14M5cXqkCJ1lCz0G1pPMEVr/njNNr484CrkM eSQtzb6yA2a8GvHgwJcmzPYU1TQd6nNrWQ2qiYqVo9Hwtaf5OhZLhqC/EblZaM1jXa FI5hA7yhA7Ka54KCf8hlx3qM6wFCh4wwWZ13TZ/5z/ay5F7dPdrbArb6+Ne2CZ21AV WLBmLycrHz5df+yLdH2cvRHh4p1zD2dDXr8Hxp0jXO90nH+HZJICvkrRUzYckGTTIi C+J9QqwmEpzSQ== Date: Sun, 12 Apr 2026 19:46:01 +0200 From: Thomas Gleixner To: Linus Torvalds Cc: linux-kernel@vger.kernel.org, x86@kernel.org Subject: [GIT pull] core/entry for v7.1-rc1 References: <177601563477.7932.4081917600853246368.tglx@xen13> Message-ID: <177601563600.7932.7631058131124441236.tglx@xen13> Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable Precedence: bulk X-Mailing-List: linux-kernel@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Linus, please pull the latest core/entry branch from: git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git core-entry-202= 6-04-12 up to: c291cfac49a6: entry: Add missing kernel-doc for arch_ptrace_report_= syscall functions A trivial update for the entry code adding missing kernel documentation for function arguments. Thanks, tglx ------------------> Kit Dallege (1): entry: Add missing kernel-doc for arch_ptrace_report_syscall functions include/linux/entry-common.h | 3 +++ 1 file changed, 3 insertions(+) diff --git a/include/linux/entry-common.h b/include/linux/entry-common.h index f83ca0abf2cd..d223246401bc 100644 --- a/include/linux/entry-common.h +++ b/include/linux/entry-common.h @@ -48,6 +48,7 @@ =20 /** * arch_ptrace_report_syscall_entry - Architecture specific ptrace_report_= syscall_entry() wrapper + * @regs: Pointer to the register state at syscall entry * * Invoked from syscall_trace_enter() to wrap ptrace_report_syscall_entry(= ). * @@ -205,6 +206,8 @@ static __always_inline bool report_single_step(unsigned= long work) =20 /** * arch_ptrace_report_syscall_exit - Architecture specific ptrace_report_s= yscall_exit() + * @regs: Pointer to the register state at syscall exit + * @step: Indicates a single-step exit rather than a normal syscall exit * * This allows architecture specific ptrace_report_syscall_exit() * implementations. If not defined by the architecture this falls back to