mirror of
https://github.com/torvalds/linux.git
synced 2024-11-23 04:31:50 +00:00
mm/memory-failure.c: remove unnecessary PageTransTail check
When we reach here, we're guaranteed to have non-compound page as thp is already splited. Remove this unnecessary PageTransTail check. Link: https://lkml.kernel.org/r/20220218090118.1105-9-linmiaohe@huawei.com Signed-off-by: Miaohe Lin <linmiaohe@huawei.com> Acked-by: Naoya Horiguchi <naoya.horiguchi@nec.com> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
This commit is contained in:
parent
2ab916790f
commit
b04d3eebeb
@ -1844,7 +1844,7 @@ try_again:
|
||||
* page_lock. We need wait writeback completion for this page or it
|
||||
* may trigger vfs BUG while evict inode.
|
||||
*/
|
||||
if (!PageTransTail(p) && !PageLRU(p) && !PageWriteback(p))
|
||||
if (!PageLRU(p) && !PageWriteback(p))
|
||||
goto identify_page_state;
|
||||
|
||||
/*
|
||||
|
Loading…
Reference in New Issue
Block a user