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 8E9243A719E for ; Tue, 12 May 2026 14:02:40 +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=1778594560; cv=none; b=FcaCdj1RSWopevEpgfJblcsnTV/rHzIe22ORo5U3RTj1LOKW8tbw0F6B7ner46VNCZk0EO/zRJPisJ4DFOz1pGs8eyCxFSwPc0q1Ow11Xc3KVgbDoAjWekFtt7R6uFqbCGCuUHSVgCetYdSauhP6h1dYmzyqh8lgN2nw9BwRIv8= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1778594560; c=relaxed/simple; bh=jDv4w3uYa6S7+aRRfxkplmWR19vmwGsw2IlhHYSnM5g=; h=Subject:To:Cc:From:Date:Message-ID:MIME-Version:Content-Type; b=oewy2IUhnjQQWruP/icY96njf4DTDbRfZAkDDfInVBxntsf+L3E0lj5zLDuH9dkY8CdqQMoQhWaUIatz7EZn+679oYnnbGZiIAaLGC8IfAIcgzFNGWGGj4h6mwNz3YTagN3aIGcZ8WL5E1NJiA/E3voE55cYSF7MoJfXCIiVvW0= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=hW4pmLoN; 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="hW4pmLoN" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 257E0C2BCB0; Tue, 12 May 2026 14:02:39 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1778594560; bh=jDv4w3uYa6S7+aRRfxkplmWR19vmwGsw2IlhHYSnM5g=; h=Subject:To:Cc:From:Date:From; b=hW4pmLoN/mQnscmivO8yixeEbu0mEWzOIKzfSepF2XPFA2Qq5wWGDyoQvjX27m46F wJ6YQXzzFFBGnjEC17OmgDaMwUztghUlYvHsqLykALn/K4NdIehJgJzADFglE7AQol O+s5kMgLBiIgCpppF9SxIzSg9fSTqz0IFzHoLgis= Subject: FAILED: patch "[PATCH] dm-verity-fec: fix the size of dm_verity_fec_io::erasures" failed to apply to 6.6-stable tree To: ebiggers@kernel.org,mpatocka@redhat.com Cc: From: Date: Tue, 12 May 2026 16:00:14 +0200 Message-ID: <2026051214-zestfully-bring-9bb9@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.6-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.6.y git checkout FETCH_HEAD git cherry-pick -x a7fca324d7d90f7b139d4d32747c83a629fdb446 # git commit -s git send-email --to '' --in-reply-to '2026051214-zestfully-bring-9bb9@gregkh' --subject-prefix 'PATCH 6.6.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 */