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 BC6E230EF80; Tue, 16 Dec 2025 11:43:34 +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=1765885414; cv=none; b=csEURwmrTUr+KzEZ9yuEViBcAbqjt9QA1V33QqHt1ntEByc4b19TsM62fkOTzgshqdWyB3jgCBlbrN+hU+2sz0QgHTtauivjoOV4jaq4GriSmjz9OpwsYk0uOgM2WAvpLgTGuZQSclcHvqDzzlMys2/xpU4j8kx9lCyNKlO76Sw= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1765885414; c=relaxed/simple; bh=UZu+EQqkNcDPqJguHdljp5d1/G2wRog0bsVk6WjQ+8M=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=UDFlqWTveMAcwCpCJGUScub4EZ+78w5ENwNVTV6wn+CYNdGnFoJ4pffxPRLZ/Ka/29iVm8aow9ahrX99quVfozSIMiGvEbbFlfAhYDlfdO6RoXhsIpC0/YYEMIARTfGx7dtxVlSwiON0ZwLDN89LKX07Gn51WmuOTYOgxzNlWbI= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=UB8BtuLv; arc=none smtp.client-ip=10.30.226.201 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b="UB8BtuLv" Received: by smtp.kernel.org (Postfix) with ESMTPSA id D472BC4CEF1; Tue, 16 Dec 2025 11:43:33 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1765885414; bh=UZu+EQqkNcDPqJguHdljp5d1/G2wRog0bsVk6WjQ+8M=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=UB8BtuLvq8jFnbu00elMZlJhRjbl+8UVBKB5PV8mHo9ev0GTPNruoetDFrKTNg10g d6KZUktwHDVHTg/tRdRHXzlGJWqx63NMOwACaC3KBra70iLpXx1EBWeYRbDdd4HZq7 HWfQa2gQgtlR7BUcJ53Wfiedkjeavz08SiEPibXU= From: Greg Kroah-Hartman To: stable@vger.kernel.org Cc: Greg Kroah-Hartman , patches@lists.linux.dev, Alexander Mikhalitsyn , Oleg Nesterov , Christian Brauner , Sasha Levin Subject: [PATCH 6.17 131/507] pidfs: add missing PIDFD_INFO_SIZE_VER1 Date: Tue, 16 Dec 2025 12:09:32 +0100 Message-ID: <20251216111350.276434091@linuxfoundation.org> X-Mailer: git-send-email 2.52.0 In-Reply-To: <20251216111345.522190956@linuxfoundation.org> References: <20251216111345.522190956@linuxfoundation.org> User-Agent: quilt/0.69 X-stable: review X-Patchwork-Hint: ignore Precedence: bulk X-Mailing-List: patches@lists.linux.dev List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit 6.17-stable review patch. If anyone has any objections, please let me know. ------------------ From: Christian Brauner [ Upstream commit 4061c43a99772c66c378cfacaa71550ab3b35909 ] We grew struct pidfd_info not too long ago. Link: https://patch.msgid.link/20251028-work-coredump-signal-v1-3-ca449b7b7aa0@kernel.org Fixes: 1d8db6fd698d ("pidfs, coredump: add PIDFD_INFO_COREDUMP") Reviewed-by: Alexander Mikhalitsyn Reviewed-by: Oleg Nesterov Signed-off-by: Christian Brauner Signed-off-by: Sasha Levin --- include/uapi/linux/pidfd.h | 1 + 1 file changed, 1 insertion(+) diff --git a/include/uapi/linux/pidfd.h b/include/uapi/linux/pidfd.h index 957db425d459a..6ccbabd9a68d8 100644 --- a/include/uapi/linux/pidfd.h +++ b/include/uapi/linux/pidfd.h @@ -28,6 +28,7 @@ #define PIDFD_INFO_COREDUMP (1UL << 4) /* Only returned if requested. */ #define PIDFD_INFO_SIZE_VER0 64 /* sizeof first published struct */ +#define PIDFD_INFO_SIZE_VER1 72 /* sizeof second published struct */ /* * Values for @coredump_mask in pidfd_info. -- 2.51.0