1 ext4: remove i_ioend_count
3 From: Jan Kara <jack@suse.cz>
5 Remove counter of pending io ends as it is unused.
7 Signed-off-by: Jan Kara <jack@suse.cz>
8 Signed-off-by: Theodore Ts'o <tytso@mit.edu>
10 fs/ext4/ext4.h | 7 +------
11 fs/ext4/inode.c | 3 ---
12 fs/ext4/page-io.c | 4 ----
14 4 files changed, 1 insertion(+), 14 deletions(-)
16 diff --git a/fs/ext4/ext4.h b/fs/ext4/ext4.h
17 index 29d51505a9d2..00fed23dedf5 100644
20 @@ -1024,13 +1024,8 @@ struct ext4_inode_info {
21 * transaction reserved
23 struct list_head i_rsv_conversion_list;
25 - * Completed IOs that need unwritten extents handling and don't have
26 - * transaction reserved
28 - atomic_t i_ioend_count; /* Number of outstanding io_end structs */
29 - atomic_t i_unwritten; /* Nr. of inflight conversions pending */
30 struct work_struct i_rsv_conversion_work;
31 + atomic_t i_unwritten; /* Nr. of inflight conversions pending */
33 spinlock_t i_block_reservation_lock;
35 diff --git a/fs/ext4/inode.c b/fs/ext4/inode.c
36 index ef411c4f11f8..c74c8e7c377b 100644
39 @@ -216,7 +216,6 @@ void ext4_evict_inode(struct inode *inode)
41 truncate_inode_pages_final(&inode->i_data);
43 - WARN_ON(atomic_read(&EXT4_I(inode)->i_ioend_count));
47 @@ -228,8 +227,6 @@ void ext4_evict_inode(struct inode *inode)
48 ext4_begin_ordered_truncate(inode, 0);
49 truncate_inode_pages_final(&inode->i_data);
51 - WARN_ON(atomic_read(&EXT4_I(inode)->i_ioend_count));
54 * Protect us against freezing - iput() caller didn't have to have any
55 * protection against it
56 diff --git a/fs/ext4/page-io.c b/fs/ext4/page-io.c
57 index 090b3498638e..349d7aa04fe7 100644
58 --- a/fs/ext4/page-io.c
59 +++ b/fs/ext4/page-io.c
60 @@ -128,9 +128,6 @@ static void ext4_release_io_end(ext4_io_end_t *io_end)
61 BUG_ON(io_end->flag & EXT4_IO_END_UNWRITTEN);
62 WARN_ON(io_end->handle);
64 - if (atomic_dec_and_test(&EXT4_I(io_end->inode)->i_ioend_count))
65 - wake_up_all(ext4_ioend_wq(io_end->inode));
67 for (bio = io_end->bio; bio; bio = next_bio) {
68 next_bio = bio->bi_private;
70 @@ -265,7 +262,6 @@ ext4_io_end_t *ext4_init_io_end(struct inode *inode, gfp_t flags)
72 ext4_io_end_t *io = kmem_cache_zalloc(io_end_cachep, flags);
74 - atomic_inc(&EXT4_I(inode)->i_ioend_count);
76 INIT_LIST_HEAD(&io->list);
77 atomic_set(&io->count, 1);
78 diff --git a/fs/ext4/super.c b/fs/ext4/super.c
79 index 6d8a01b4f535..e3872174875a 100644
82 @@ -944,7 +944,6 @@ static struct inode *ext4_alloc_inode(struct super_block *sb)
83 spin_lock_init(&ei->i_completed_io_lock);
85 ei->i_datasync_tid = 0;
86 - atomic_set(&ei->i_ioend_count, 0);
87 atomic_set(&ei->i_unwritten, 0);
88 INIT_WORK(&ei->i_rsv_conversion_work, ext4_end_io_rsv_work);
89 #ifdef CONFIG_EXT4_FS_ENCRYPTION