]> git.baikalelectronics.ru Git - kernel.git/commit
dax: Fix sleep in atomic contex in grab_mapping_entry()
authorJan Kara <jack@suse.cz>
Tue, 13 Dec 2016 02:34:12 +0000 (21:34 -0500)
committerTheodore Ts'o <tytso@mit.edu>
Tue, 13 Dec 2016 02:34:12 +0000 (21:34 -0500)
commit53b24ae66424259dfc312f1a5246981020dbcb19
treee16efd7948740c035aef5fad3af596089e6e03da
parent3c309333357619148bb48d337e8a9b5cb7729003
dax: Fix sleep in atomic contex in grab_mapping_entry()

Commit 7508294cdb0d: "dax: add struct iomap based DAX PMD support" has
introduced unmapping of page tables if huge page needs to be split in
grab_mapping_entry(). However the unmapping happens after
radix_tree_preload() call which disables preemption and thus
unmap_mapping_range() tries to acquire i_mmap_lock in atomic context
which is a bug. Fix the problem by moving unmapping before
radix_tree_preload() call.

Fixes: 7508294cdb0d9c93255ef3f12d31dfac2df1502d
Signed-off-by: Jan Kara <jack@suse.cz>
Signed-off-by: Theodore Ts'o <tytso@mit.edu>
fs/dax.c