diff options
author | David Howells <dhowells@redhat.com> | 2024-03-18 17:18:49 +0100 |
---|---|---|
committer | David Howells <dhowells@redhat.com> | 2024-05-01 19:07:35 +0200 |
commit | 5a550a0c60706849d70aec7f211a7e51725adb1b (patch) | |
tree | 81dfa65bd17c9d427f9e3abccdd870545846c9d0 | |
parent | netfs: Use mempools for allocating requests and subrequests (diff) | |
download | linux-5a550a0c60706849d70aec7f211a7e51725adb1b.tar.xz linux-5a550a0c60706849d70aec7f211a7e51725adb1b.zip |
mm: Export writeback_iter()
Export writeback_iter() so that it can be used by netfslib as a module.
Signed-off-by: David Howells <dhowells@redhat.com>
Reviewed-by: Jeff Layton <jlayton@kernel.org>
cc: Matthew Wilcox (Oracle) <willy@infradead.org>
cc: Christoph Hellwig <hch@lst.de>
cc: linux-mm@kvack.org
-rw-r--r-- | mm/page-writeback.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/mm/page-writeback.c b/mm/page-writeback.c index 3e19b87049db..06fc89d981e8 100644 --- a/mm/page-writeback.c +++ b/mm/page-writeback.c @@ -2546,6 +2546,7 @@ done: folio_batch_release(&wbc->fbatch); return NULL; } +EXPORT_SYMBOL_GPL(writeback_iter); /** * write_cache_pages - walk the list of dirty pages of the given address space and write all of them. |