mirror of
https://github.com/joel16/android_kernel_sony_msm8994_rework.git
synced 2024-11-28 14:20:52 +00:00
fs: remove unneeded plug in mpage_readpages()
The block plug in mpage_readpages() duplicates the one in read_pages(). Signed-off-by: Namjae Jeon <linkinjeon@gmail.com> Signed-off-by: Amit Sahrawat <amit.sahrawat83@gmail.com> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Jens Axboe <axboe@kernel.dk>
This commit is contained in:
parent
ef00f59c95
commit
0b4156eb27
@ -371,9 +371,6 @@ mpage_readpages(struct address_space *mapping, struct list_head *pages,
|
|||||||
sector_t last_block_in_bio = 0;
|
sector_t last_block_in_bio = 0;
|
||||||
struct buffer_head map_bh;
|
struct buffer_head map_bh;
|
||||||
unsigned long first_logical_block = 0;
|
unsigned long first_logical_block = 0;
|
||||||
struct blk_plug plug;
|
|
||||||
|
|
||||||
blk_start_plug(&plug);
|
|
||||||
|
|
||||||
map_bh.b_state = 0;
|
map_bh.b_state = 0;
|
||||||
map_bh.b_size = 0;
|
map_bh.b_size = 0;
|
||||||
@ -395,7 +392,6 @@ mpage_readpages(struct address_space *mapping, struct list_head *pages,
|
|||||||
BUG_ON(!list_empty(pages));
|
BUG_ON(!list_empty(pages));
|
||||||
if (bio)
|
if (bio)
|
||||||
mpage_bio_submit(READ, bio);
|
mpage_bio_submit(READ, bio);
|
||||||
blk_finish_plug(&plug);
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
EXPORT_SYMBOL(mpage_readpages);
|
EXPORT_SYMBOL(mpage_readpages);
|
||||||
|
Loading…
Reference in New Issue
Block a user