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 CB1AA3A59AC for ; Tue, 12 May 2026 14:02:50 +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=1778594570; cv=none; b=kLA9/Y/X/jDrxLsWLqd/3b4zdQ2BVLvif1/1GzdVrSFP9QragvrYwpNcG5lSG5O+uSR1UaUgNn8tD6s/ubaW/OTfsd731dq8UsI0chdvXUuw91H/pwYpsjYFXqhJYRSczMFcOHBr1d5yxnjrpfdGusPqHYPZId0PNbPyJ9muIIc= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1778594570; c=relaxed/simple; bh=IcTnwLH4E7redyuLj8EbXwbxlxZ9tkX7GcVouXypUcA=; h=Subject:To:Cc:From:Date:Message-ID:MIME-Version:Content-Type; b=LnJqgP++eR1WLZpsT8Rm4KjXjP2HZEqb/PYpG/2nVuP/KrmZzFrtP8ZIewlIja4M14epLyn9/4wS8dSnAUhUrVXtZl9vZZMl2CSMk3+VJRMqIdfvjheH4dKVjmrEul4J9stOwzeo33uhaL5fs5Rf1XaJLUMRvhkZryMX7gtxnLA= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=IuxOhjfM; 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="IuxOhjfM" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 61D9DC2BCF5; Tue, 12 May 2026 14:02:50 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1778594570; bh=IcTnwLH4E7redyuLj8EbXwbxlxZ9tkX7GcVouXypUcA=; h=Subject:To:Cc:From:Date:From; b=IuxOhjfMixburBDqTjhbq5LiVbAX1792W2faZHWicS4eYCczGkTkNswrsIHI+7tKu uqpv8NuY7NuI3gD3mNXRgp9kj7BcZaU5Cvz2Gz8drFrgO++uBAVxFOOwA1dkKRL5rG diwAhR4dpDqdPsdkrjrWbNfds7BDFlgwF66ilVXk= Subject: FAILED: patch "[PATCH] dm-verity-fec: fix the size of dm_verity_fec_io::erasures" failed to apply to 5.10-stable tree To: ebiggers@kernel.org,mpatocka@redhat.com Cc: From: Date: Tue, 12 May 2026 16:00:15 +0200 Message-ID: <2026051215-kiwi-drippy-03a2@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 5.10-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-5.10.y git checkout FETCH_HEAD git cherry-pick -x a7fca324d7d90f7b139d4d32747c83a629fdb446 # git commit -s git send-email --to '' --in-reply-to '2026051215-kiwi-drippy-03a2@gregkh' --subject-prefix 'PATCH 5.10.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 */