diff options
author | Miklos Szeredi <[email protected]> | 2020-05-19 14:50:37 +0200 |
---|---|---|
committer | Miklos Szeredi <[email protected]> | 2020-05-19 14:50:37 +0200 |
commit | 00589386172ac577e64e3d67a3c5d4968174dcad (patch) | |
tree | 0fdef4027cd713c54f2c29557eb1939fcb5e1987 | |
parent | 7fd3abfa8dd7c08ecacd25b2f9f9e1d3fb642440 (diff) |
fuse: use dump_page
Instead of custom page dumping, use the standard helper.
Reported-by: Matthew Wilcox <[email protected]>
Signed-off-by: Miklos Szeredi <[email protected]>
-rw-r--r-- | fs/fuse/dev.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/fs/fuse/dev.c b/fs/fuse/dev.c index 6bda7d498f1a..1cfc68f8fea9 100644 --- a/fs/fuse/dev.c +++ b/fs/fuse/dev.c @@ -772,8 +772,7 @@ static int fuse_check_page(struct page *page) 1 << PG_lru | 1 << PG_active | 1 << PG_reclaim))) { - pr_warn("trying to steal weird page\n"); - pr_warn(" page=%p index=%li flags=%08lx, count=%i, mapcount=%i, mapping=%p\n", page, page->index, page->flags, page_count(page), page_mapcount(page), page->mapping); + dump_page(page, "fuse: trying to steal weird page"); return 1; } return 0; |