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 2451D3A59B7 for ; Tue, 12 May 2026 14:02:43 +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=1778594563; cv=none; b=DCFdMlzmfLnY6gi5qMgt/s6YSIbnvgJ2FjgRNNIDNIOGbEz9h/nFkDWpmzFhkZiV5RH/Ho62JlR8GnDMKl2YkEwPn01V5AN26dWYPw0rIzJjYEvoRsgvJUt1jMPiKrFRNngvzCPkd4m4Cz/zIqQf8ZjohuLhigGtpjfORyi4p3U= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1778594563; c=relaxed/simple; bh=oF4s+upb0e0fhmNZePjsUV3Sz42XpkBp7YxQytU/oUM=; h=Subject:To:Cc:From:Date:Message-ID:MIME-Version:Content-Type; b=j7v4JLu95dgjPqT0gR3pCh7Bfk9jflUtimmA1glmYBrtb/aTYB/ZywKeHdAEin7KSVq6lV8tDT7PM2aYx/6oLv3HPSUPtFn3DFsQankEkmr2debYgj6x8bBfw3GhNBOTg5+RN62sOFjrqci67GXwfeo/0qjMafHafH3x+W6YnY8= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=qzmLp1Us; 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="qzmLp1Us" Received: by smtp.kernel.org (Postfix) with ESMTPSA id AE796C2BCF5; Tue, 12 May 2026 14:02:42 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1778594563; bh=oF4s+upb0e0fhmNZePjsUV3Sz42XpkBp7YxQytU/oUM=; h=Subject:To:Cc:From:Date:From; b=qzmLp1UsR0YcU/PEGMwq+FOxgd8LCGdj6sq62KlHuQfXiC3SrZhoHif2/QmJeVMW0 DEHPTHemqjRPV6w7UWGAriKl5MvdLd9OcXRYtKzvm/bc1t1+/1zoaB7V7x76TIe+Rt QFdtPp3ZI1d+WX7NzOVK/3gfl49v4SlBrHywr/Uo= Subject: FAILED: patch "[PATCH] dm-verity-fec: fix the size of dm_verity_fec_io::erasures" failed to apply to 6.1-stable tree To: ebiggers@kernel.org,mpatocka@redhat.com Cc: From: Date: Tue, 12 May 2026 16:00:14 +0200 Message-ID: <2026051214-replace-detoxify-dc61@gregkh> Precedence: bulk X-Mailing-List: stable@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Type: text/plain; charset=ANSI_X3.4-1968 Content-Transfer-Encoding: 8bit The patch below does not apply to the 6.1-stable tree. If someone wants it applied there, or to any other stable or longterm tree, then please email the backport, including the original git commit id to . To reproduce the conflict and resubmit, you may use the following commands: git fetch https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/ linux-6.1.y git checkout FETCH_HEAD git cherry-pick -x a7fca324d7d90f7b139d4d32747c83a629fdb446 # git commit -s git send-email --to '' --in-reply-to '2026051214-replace-detoxify-dc61@gregkh' --subject-prefix 'PATCH 6.1.y' HEAD^.. Possible dependencies: thanks, greg k-h ------------------ original commit in Linus's tree ------------------ >From a7fca324d7d90f7b139d4d32747c83a629fdb446 Mon Sep 17 00:00:00 2001 From: Eric Biggers Date: Thu, 5 Feb 2026 20:59:23 -0800 Subject: [PATCH] dm-verity-fec: fix the size of dm_verity_fec_io::erasures At most 25 entries in dm_verity_fec_io::erasures are used: the maximum number of FEC roots plus one. Therefore, set the array size accordingly. This reduces the size of dm_verity_fec_io by 912 bytes. Note: a later commit introduces a constant DM_VERITY_FEC_MAX_ROOTS, which allows the size to be more clearly expressed as DM_VERITY_FEC_MAX_ROOTS + 1. This commit just fixes the size first. Fixes: a739ff3f543a ("dm verity: add support for forward error correction") Cc: stable@vger.kernel.org Signed-off-by: Eric Biggers Signed-off-by: Mikulas Patocka diff --git a/drivers/md/dm-verity-fec.h b/drivers/md/dm-verity-fec.h index 35d28d9f8a9b..32ca2bfee1db 100644 --- a/drivers/md/dm-verity-fec.h +++ b/drivers/md/dm-verity-fec.h @@ -47,7 +47,8 @@ struct dm_verity_fec { /* per-bio data */ struct dm_verity_fec_io { struct rs_control *rs; /* Reed-Solomon state */ - int erasures[DM_VERITY_FEC_MAX_RSN]; /* erasures for decode_rs8 */ + /* erasures for decode_rs8 */ + int erasures[DM_VERITY_FEC_RSM - DM_VERITY_FEC_MIN_RSN + 1]; u8 *output; /* buffer for corrected output */ unsigned int level; /* recursion level */ unsigned int nbufs; /* number of buffers allocated */