diff options
Diffstat (limited to 'fs/block_dev.c')
-rw-r--r-- | fs/block_dev.c | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/fs/block_dev.c b/fs/block_dev.c index 349a26c10001..1dd07e66e98a 100644 --- a/fs/block_dev.c +++ b/fs/block_dev.c | |||
@@ -1220,6 +1220,20 @@ static long block_ioctl(struct file *file, unsigned cmd, unsigned long arg) | |||
1220 | return blkdev_ioctl(bdev, mode, cmd, arg); | 1220 | return blkdev_ioctl(bdev, mode, cmd, arg); |
1221 | } | 1221 | } |
1222 | 1222 | ||
1223 | /* | ||
1224 | * Try to release a page associated with block device when the system | ||
1225 | * is under memory pressure. | ||
1226 | */ | ||
1227 | static int blkdev_releasepage(struct page *page, gfp_t wait) | ||
1228 | { | ||
1229 | struct super_block *super = BDEV_I(page->mapping->host)->bdev.bd_super; | ||
1230 | |||
1231 | if (super && super->s_op->bdev_try_to_free_page) | ||
1232 | return super->s_op->bdev_try_to_free_page(super, page, wait); | ||
1233 | |||
1234 | return try_to_free_buffers(page); | ||
1235 | } | ||
1236 | |||
1223 | static const struct address_space_operations def_blk_aops = { | 1237 | static const struct address_space_operations def_blk_aops = { |
1224 | .readpage = blkdev_readpage, | 1238 | .readpage = blkdev_readpage, |
1225 | .writepage = blkdev_writepage, | 1239 | .writepage = blkdev_writepage, |
@@ -1227,6 +1241,7 @@ static const struct address_space_operations def_blk_aops = { | |||
1227 | .write_begin = blkdev_write_begin, | 1241 | .write_begin = blkdev_write_begin, |
1228 | .write_end = blkdev_write_end, | 1242 | .write_end = blkdev_write_end, |
1229 | .writepages = generic_writepages, | 1243 | .writepages = generic_writepages, |
1244 | .releasepage = blkdev_releasepage, | ||
1230 | .direct_IO = blkdev_direct_IO, | 1245 | .direct_IO = blkdev_direct_IO, |
1231 | }; | 1246 | }; |
1232 | 1247 | ||