diff options
author | Matthew Wilcox (Oracle) <willy@infradead.org> | 2021-03-20 08:40:39 +0300 |
---|---|---|
committer | David Howells <dhowells@redhat.com> | 2021-03-23 23:54:29 +0300 |
commit | e5dbd33218bd8d87ab69f730ab90aed5fab7eb26 (patch) | |
tree | 508d026763b082c639faf639ca71fdbf45e71900 /include | |
parent | 39f985c8f667c80a3d1eb19d31138032fa36b09e (diff) | |
download | linux-e5dbd33218bd8d87ab69f730ab90aed5fab7eb26.tar.xz |
mm/writeback: Add wait_on_page_writeback_killable
This is the killable version of wait_on_page_writeback.
Signed-off-by: Matthew Wilcox (Oracle) <willy@infradead.org>
Reviewed-by: Christoph Hellwig <hch@lst.de>
Signed-off-by: David Howells <dhowells@redhat.com>
Tested-by: kafs-testing@auristor.com
cc: linux-afs@lists.infradead.org
cc: linux-mm@kvack.org
Link: https://lore.kernel.org/r/20210320054104.1300774-3-willy@infradead.org
Diffstat (limited to 'include')
-rw-r--r-- | include/linux/pagemap.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/linux/pagemap.h b/include/linux/pagemap.h index 8f4daac6eb4b..8c9947fd62f3 100644 --- a/include/linux/pagemap.h +++ b/include/linux/pagemap.h @@ -682,6 +682,7 @@ static inline int wait_on_page_locked_killable(struct page *page) int put_and_wait_on_page_locked(struct page *page, int state); void wait_on_page_writeback(struct page *page); +int wait_on_page_writeback_killable(struct page *page); extern void end_page_writeback(struct page *page); void wait_for_stable_page(struct page *page); |