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 2AFB74A0C for ; Mon, 13 Apr 2026 23:12:48 +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=1776121968; cv=none; b=ivLQJlSQ/IiZbsmTB/WvgFoKvxTpciiM7JCJNprtXzRxqKP9tWwfzVf2SCAfT4knN2GBC00H/pqEjLiCnYA6+kH7ahT1Y6pnr14a1lZ/S/I8FWZ+DvQgbBOSQ7v73RaA/GjoIAWq44tby+74hJXD2g4m1RCXflHysNAWV2pUjGw= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1776121968; c=relaxed/simple; bh=moDKVULf0ecIQ4kil4hM7jbA7EHFep5W31sYyYJLfG8=; h=Date:From:To:Cc:Subject:Message-ID:MIME-Version:Content-Type: Content-Disposition; b=TbbmKjBiEziG3KXsOxRAtioHx/EOedzPwyXo2keMG4NnIekUanVgKdI/6aif/xzO3s+Xrv51pwicw/socCRUHiqtdN9MYkGrXz03CTPsXWb+TuLuu4iOFEMVlIU/KrfuH9QSUqS8lZ1scNJJODWg5PUVi0fEZTwDfCz/cENrPX4= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b=Bj64yV2q; 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="Bj64yV2q" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 00ECAC2BCAF; Mon, 13 Apr 2026 23:12:47 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1776121968; bh=moDKVULf0ecIQ4kil4hM7jbA7EHFep5W31sYyYJLfG8=; h=Date:From:To:Cc:Subject:From; b=Bj64yV2qvjb7TpzSHDIhhGXYTd1qRY4XKdxJ+prPlg9EAc4PXw4oYJ/1QfTXhH5xN U4V1VZWoMgGia2FSa697Uf6YjrZThTHWtvoOCpMaI1AXCosBtGoDm92l4FLm1NVM86 UlBLaLiQWXRJPcRkG+VRIbab/l2w52SKUw1JHD39lTzXVa9uuPrJYkX2kDSzN0UWfo 9jxmbGkLSmyaI8kmrJAc34LPaqQnT1IL2We+IPLyJ+YLYVfi+aC7MxLeogexRoJq/X cmPO2fAul5XmoLxc9EspYtcH7ESQRIJiAOUjPWgdc5RAr9zBQ9DugPFzumFN22c9x7 B72uUA291mzpA== Date: Mon, 13 Apr 2026 16:12:47 -0700 From: Kees Cook To: Linus Torvalds Cc: linux-kernel@vger.kernel.org, Jan Kara , Kees Cook , Thorsten Blum Subject: [GIT PULL] execve updates for v7.1-rc1 Message-ID: <202604131610.6AA251E@keescook> 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 Hi Linus, Please pull these execve updates for v7.1-rc1. Thanks! -Kees The following changes since commit 4ced4cf5c9d172d91f181df3accdf949d3761aab: binfmt_elf_fdpic: fix AUXV size calculation for ELF_HWCAP3 and ELF_HWCAP4 (2026-02-23 16:09:00 -0800) are available in the Git repository at: https://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git tags/execve-v7.1-rc1 for you to fetch changes up to 9bf092c97b86af63694d9902b9e14047214ba76d: sched: update task_struct->comm comment (2026-04-01 12:26:07 -0700) ---------------------------------------------------------------- execve updates for v7.1-rc1 - use strnlen() in __set_task_comm (Thorsten Blum) - update task_struct->comm comment (Thorsten Blum) ---------------------------------------------------------------- Thorsten Blum (2): exec: use strnlen() in __set_task_comm sched: update task_struct->comm comment include/linux/sched.h | 9 +++------ fs/exec.c | 2 +- 2 files changed, 4 insertions(+), 7 deletions(-) -- Kees Cook