Re: [PATCH v7 5/6] writeback, cgroup: support switching multiple inodes at once
From: Jan Kara <jack@suse.cz>
Date: 2021-06-07 09:00:53
Also in:
cgroups, linux-fsdevel, lkml
On Thu 03-06-21 18:31:58, Roman Gushchin wrote:
Currently only a single inode can be switched to another writeback structure at once. That means to switch an inode a separate inode_switch_wbs_context structure must be allocated, and a separate rcu callback and work must be scheduled. It's fine for the existing ad-hoc switching, which is not happening that often, but sub-optimal for massive switching required in order to release a writeback structure. To prepare for it, let's add a support for switching multiple inodes at once. Instead of containing a single inode pointer, inode_switch_wbs_context will contain a NULL-terminated array of inode pointers. inode_do_switch_wbs() will be called for each inode. To optimize the locking bdi->wb_switch_rwsem, old_wb's and new_wb's list_locks will be acquired and released only once altogether for all inodes. wb_wakeup() will be also be called only once. Instead of calling wb_put(old_wb) after each successful switch, wb_put_many() is introduced and used. Signed-off-by: Roman Gushchin <redacted>
Looks good except for one small issue:
+ for (inodep = isw->inodes; *inodep; inodep++) {
+ WARN_ON_ONCE((*inodep)->i_wb != old_wb);
+ if (inode_do_switch_wbs(*inodep, old_wb, new_wb))
+ nr_switched++;
+ iput(*inodep);
+ }You have to be careful here as iput() can be dropping last inode reference and in that case it can sleep and do a lot of heavylifting (which cannot happen under the locks you hold). So you need another loop after dropping all the locks to do iput() on all inodes. After fixing this feel free to add: Reviewed-by: Jan Kara <jack@suse.cz> Honza -- Jan Kara [off-list ref] SUSE Labs, CR