]> git.baikalelectronics.ru Git - kernel.git/commit
fs: don't call ->writepage from __mpage_writepage
authorChristoph Hellwig <hch@lst.de>
Mon, 13 Jun 2022 05:37:14 +0000 (07:37 +0200)
committerMatthew Wilcox (Oracle) <willy@infradead.org>
Tue, 2 Aug 2022 16:34:04 +0000 (12:34 -0400)
commit79a8f2563dbeb935d6e32497d592ff774d42a523
tree4fb7c4a6c42aaf9814c95f61404c81ac89dbe98e
parent6c09028d13738398614b81fa27570bec1f016ecd
fs: don't call ->writepage from __mpage_writepage

All callers of mpage_writepage use block_write_full_page as their
->writepage implementation when called from mpage_writepages
(although for ntfs3 this is obsfucated a bit).

Just call block_write_full_page directly instead of going through
the ->writepage indirection.

Signed-off-by: Christoph Hellwig <hch@lst.de>
Reviewed-by: Jan Kara <jack@suse.cz>
Signed-off-by: Matthew Wilcox (Oracle) <willy@infradead.org>
fs/mpage.c