On Sat, Aug 05, 2017 at 11:04:36AM +0800, Wang Shilong wrote: > diff --git a/fs/ext4/ialloc.c b/fs/ext4/ialloc.c > index 507bfb3..19323ea 100644 > --- a/fs/ext4/ialloc.c > +++ b/fs/ext4/ialloc.c > @@ -957,8 +957,13 @@ struct inode *__ext4_new_inode(handle_t *handle, struct inode *dir, > if (!ret2) > goto got; /* we grabbed the inode! */ > next_inode: > - if (ino < EXT4_INODES_PER_GROUP(sb)) > + if (ino < EXT4_INODES_PER_GROUP(sb)) { > + /* Lock contention, relax a bit */ > + if (ext4_fs_is_busy(sbi)) > + schedule_timeout_uninterruptible( > + msecs_to_jiffies(1)); > goto repeat_in_this_group; > + } > next_group: > if (++group == ngroups) > group = 0; We should probably ne not even doing the lock contention in the case where the reason why we've jumped to next_inode is because we failed the recently_deleted() test. But that can be fixed by changing the "goto next_inode" in the recently_deleted() codepath with: if (ino < EXT4_INODES_PER_GROUP(sb)) goto repeat_in_this_group; Also while I agree that it's better to use ext4_fs_is_busy(), the exact details of when we will sleep for a second are different. So it would be good for you to rerun your benchmarks; since the numbers in your v1 and v2 patch were the same, it's not clear to me that you did rerun them. Can you confirm one way or another? And rerun them for the v3 version of the patch? Many thanks, - Ted