提交 aca8bf32 编写于 作者: M Minchan Kim 提交者: Linus Torvalds

mm: remove file argument from swap_readpage()

The file argument resulted from address_space's readpage long time ago.

We don't use it any more.  Let's remove unnecessary argement.
Signed-off-by: NMinchan Kim <minchan.kim@gmail.com>
Acked-by: NHugh Dickins <hugh.dickins@tiscali.co.uk>
Reviewed-by: NRik van Riel <riel@redhat.com>
Signed-off-by: NAndrew Morton <akpm@linux-foundation.org>
Signed-off-by: NLinus Torvalds <torvalds@linux-foundation.org>
上级 8192da6a
...@@ -256,7 +256,7 @@ extern void swap_unplug_io_fn(struct backing_dev_info *, struct page *); ...@@ -256,7 +256,7 @@ extern void swap_unplug_io_fn(struct backing_dev_info *, struct page *);
#ifdef CONFIG_SWAP #ifdef CONFIG_SWAP
/* linux/mm/page_io.c */ /* linux/mm/page_io.c */
extern int swap_readpage(struct file *, struct page *); extern int swap_readpage(struct page *);
extern int swap_writepage(struct page *page, struct writeback_control *wbc); extern int swap_writepage(struct page *page, struct writeback_control *wbc);
extern void end_swap_bio_read(struct bio *bio, int err); extern void end_swap_bio_read(struct bio *bio, int err);
......
...@@ -120,7 +120,7 @@ int swap_writepage(struct page *page, struct writeback_control *wbc) ...@@ -120,7 +120,7 @@ int swap_writepage(struct page *page, struct writeback_control *wbc)
return ret; return ret;
} }
int swap_readpage(struct file *file, struct page *page) int swap_readpage(struct page *page)
{ {
struct bio *bio; struct bio *bio;
int ret = 0; int ret = 0;
......
...@@ -313,7 +313,7 @@ struct page *read_swap_cache_async(swp_entry_t entry, gfp_t gfp_mask, ...@@ -313,7 +313,7 @@ struct page *read_swap_cache_async(swp_entry_t entry, gfp_t gfp_mask,
* Initiate read into locked page and return. * Initiate read into locked page and return.
*/ */
lru_cache_add_anon(new_page); lru_cache_add_anon(new_page);
swap_readpage(NULL, new_page); swap_readpage(new_page);
return new_page; return new_page;
} }
ClearPageSwapBacked(new_page); ClearPageSwapBacked(new_page);
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册