This is a note to let you know that I've just added the patch titled jbd2: fix kernel-doc for j_transaction_overhead_buffers to the 6.6-stable tree which can be found at: http://www.kernel.org/git/?p=linux/kernel/git/stable/stable-queue.git;a=summary The filename of the patch is: jbd2-fix-kernel-doc-for-j_transaction_overhead_buffe.patch and it can be found in the queue-6.6 subdirectory. If you, or anyone else, feels it should not be added to the stable tree, please let <stable@xxxxxxxxxxxxxxx> know about it. commit 8b035842fa58fdcd69f2c99a800a871b8328bf4c Author: Randy Dunlap <rdunlap@xxxxxxxxxxxxx> Date: Mon Jul 22 22:16:47 2024 -0700 jbd2: fix kernel-doc for j_transaction_overhead_buffers [ Upstream commit 7e8fb2eda9885ea2d13179a4c0bbf810f900ef25 ] Use the correct struct member name in the kernel-doc notation to prevent a kernel-doc build warning. include/linux/jbd2.h:1303: warning: Function parameter or struct member 'j_transaction_overhead_buffers' not described in 'journal_s' include/linux/jbd2.h:1303: warning: Excess struct member 'j_transaction_overhead' description in 'journal_s' Fixes: e3a00a23781c ("jbd2: precompute number of transaction descriptor blocks") Reported-by: Stephen Rothwell <sfr@xxxxxxxxxxxxxxxx> Closes: https://lore.kernel.org/linux-next/20240710182252.4c281445@xxxxxxxxxxxxxxxx/ Signed-off-by: Randy Dunlap <rdunlap@xxxxxxxxxxxxx> Reviewed-by: Jan Kara <jack@xxxxxxx> Link: https://patch.msgid.link/20240723051647.3053491-1-rdunlap@xxxxxxxxxxxxx Signed-off-by: Theodore Ts'o <tytso@xxxxxxx> Signed-off-by: Sasha Levin <sashal@xxxxxxxxxx> diff --git a/include/linux/jbd2.h b/include/linux/jbd2.h index 8553dc1d0e898..f0bc9aa5aed3f 100644 --- a/include/linux/jbd2.h +++ b/include/linux/jbd2.h @@ -1084,7 +1084,7 @@ struct journal_s int j_revoke_records_per_block; /** - * @j_transaction_overhead: + * @j_transaction_overhead_buffers: * * Number of blocks each transaction needs for its own bookkeeping */