Message ID | 20241118114508.1405494-5-yebin@huaweicloud.com (mailing list archive) |
---|---|
State | New |
Headers | show |
Series | fix hungtask due to repeated traversal of inodes list | expand |
diff --git a/fs/gfs2/ops_fstype.c b/fs/gfs2/ops_fstype.c index e83d293c3614..e9dd94f01b90 100644 --- a/fs/gfs2/ops_fstype.c +++ b/fs/gfs2/ops_fstype.c @@ -1742,7 +1742,7 @@ static void gfs2_evict_inodes(struct super_block *sb) set_bit(SDF_EVICTING, &sdp->sd_flags); spin_lock(&sb->s_inode_list_lock); - list_for_each_entry(inode, &sb->s_inodes, i_sb_list) { + sb_for_each_inodes(inode, &sb->s_inodes) { spin_lock(&inode->i_lock); if ((inode->i_state & (I_FREEING|I_WILL_FREE|I_NEW)) && !need_resched()) {