diff options
author | Zhang Yi | 2023-06-06 21:59:24 +0800 |
---|---|---|
committer | Greg Kroah-Hartman | 2023-08-30 16:10:58 +0200 |
commit | 8168c96c24ecfe0265c295aa4d969b4b650f00d3 (patch) | |
tree | 83ec02ff4126362d84eef904cf136104284438b1 /include/linux | |
parent | 1fa68a78109840ccb3d1b69ea0ba3cd9b30ed17f (diff) |
jbd2: remove t_checkpoint_io_list
[ Upstream commit be22255360f80d3af789daad00025171a65424a5 ]
Since t_checkpoint_io_list was stop using in jbd2_log_do_checkpoint()
now, it's time to remove the whole t_checkpoint_io_list logic.
Signed-off-by: Zhang Yi <yi.zhang@huawei.com>
Reviewed-by: Jan Kara <jack@suse.cz>
Link: https://lore.kernel.org/r/20230606135928.434610-3-yi.zhang@huaweicloud.com
Signed-off-by: Theodore Ts'o <tytso@mit.edu>
Stable-dep-of: 46f881b5b175 ("jbd2: fix a race when checking checkpoint buffer busy")
Signed-off-by: Sasha Levin <sashal@kernel.org>
Diffstat (limited to 'include/linux')
-rw-r--r-- | include/linux/jbd2.h | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/include/linux/jbd2.h b/include/linux/jbd2.h index 0b7242370b56..67912fe08fbb 100644 --- a/include/linux/jbd2.h +++ b/include/linux/jbd2.h @@ -623,12 +623,6 @@ struct transaction_s struct journal_head *t_checkpoint_list; /* - * Doubly-linked circular list of all buffers submitted for IO while - * checkpointing. [j_list_lock] - */ - struct journal_head *t_checkpoint_io_list; - - /* * Doubly-linked circular list of metadata buffers being * shadowed by log IO. The IO buffers on the iobuf list and * the shadow buffers on this list match each other one for |