]> git.baikalelectronics.ru Git - kernel.git/commit
init: Initialize noop_backing_dev_info early
authorJan Kara <jack@suse.cz>
Wed, 15 Jun 2022 13:22:29 +0000 (15:22 +0200)
committerJan Kara <jack@suse.cz>
Thu, 16 Jun 2022 08:55:57 +0000 (10:55 +0200)
commitb8b5de74161b465a607ecf262c587f4815e04b7e
tree87cbecab60fbd8d7ebfc8281ff0e818de159bff4
parentcd8ee0427751d339a64496e2eda35b15fa5605fd
init: Initialize noop_backing_dev_info early

noop_backing_dev_info is used by superblocks of various
pseudofilesystems such as kdevtmpfs. After commit 2eacea2ab2b2
("writeback: Fix inode->i_io_list not be protected by inode->i_lock
error") this broke because __mark_inode_dirty() started to access more
fields from noop_backing_dev_info and this led to crashes inside
locked_inode_to_wb_and_lock_list() called from __mark_inode_dirty().
Fix the problem by initializing noop_backing_dev_info before the
filesystems get mounted.

Fixes: 2eacea2ab2b2 ("writeback: Fix inode->i_io_list not be protected by inode->i_lock error")
Reported-and-tested-by: Suzuki K Poulose <suzuki.poulose@arm.com>
Reported-and-tested-by: Alexandru Elisei <alexandru.elisei@arm.com>
Reported-and-tested-by: Guenter Roeck <linux@roeck-us.net>
Reviewed-by: Christoph Hellwig <hch@lst.de>
Signed-off-by: Jan Kara <jack@suse.cz>
drivers/base/init.c
include/linux/backing-dev.h
mm/backing-dev.c