diff options
author | McMullan, Jason <jason.mcmullan@timesys.com> | 2005-05-17 08:53:40 +0400 |
---|---|---|
committer | Linus Torvalds <torvalds@ppc970.osdl.org> | 2005-05-17 18:59:18 +0400 |
commit | ba32311eb73f624a85a5fc2e043cda8e076f86ef (patch) | |
tree | 1baa53ef8f4b708ec1807ca3a267c713d00da266 /mm/swapfile.c | |
parent | 59afda786a58f2e8f74a48f2af90534d76d5338d (diff) | |
download | linux-ba32311eb73f624a85a5fc2e043cda8e076f86ef.tar.xz |
[PATCH] swapout oops fix
Fix OOPS when swapping on a device that doesn't have an unplug_io_fn defined
(eg, ATA Over Ethernet)
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'mm/swapfile.c')
-rw-r--r-- | mm/swapfile.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mm/swapfile.c b/mm/swapfile.c index a60e0075d55b..da48405cd9a3 100644 --- a/mm/swapfile.c +++ b/mm/swapfile.c @@ -79,7 +79,7 @@ void swap_unplug_io_fn(struct backing_dev_info *unused_bdi, struct page *page) WARN_ON(page_count(page) <= 1); bdi = bdev->bd_inode->i_mapping->backing_dev_info; - bdi->unplug_io_fn(bdi, page); + blk_run_backing_dev(bdi, page); } up_read(&swap_unplug_sem); } |