]> git.baikalelectronics.ru Git - kernel.git/commit
mm: Fully initialize invalidate_lock, amend lock class later
authorSebastian Andrzej Siewior <bigeasy@linutronix.de>
Wed, 1 Sep 2021 08:44:03 +0000 (10:44 +0200)
committerJan Kara <jack@suse.cz>
Fri, 17 Sep 2021 11:39:23 +0000 (13:39 +0200)
commit6b75ed2de5dcf409f754a4f2eea94213372b6613
treedcea78fbf821cd13819022f5732d38c48df25071
parent9a3ae1064c0d08fe62c0324b0bc595c106a6d31c
mm: Fully initialize invalidate_lock, amend lock class later

The function __init_rwsem() is not part of the official API, it just a helper
function used by init_rwsem().
Changing the lock's class and name should be done by using
lockdep_set_class_and_name() after the has been fully initialized. The overhead
of the additional class struct and setting it twice is negligible and it works
across all locks.

Fully initialize the lock with init_rwsem() and then set the custom class and
name for the lock.

Fixes: 57f0fb86ef1df ("mm: Protect operations adding pages to page cache with invalidate_lock")
Link: https://lore.kernel.org/r/20210901084403.g4fezi23cixemlhh@linutronix.de
Signed-off-by: Sebastian Andrzej Siewior <bigeasy@linutronix.de>
Signed-off-by: Jan Kara <jack@suse.cz>
fs/inode.c