Commit 211b9c02 authored by Jens Axboe's avatar Jens Axboe Committed by Linus Torvalds

[PATCH] bio_unmap_user(): original bio passed in

With the recent bio mapping changes, the caller must pass in the
original bio for unmapping again (and they do). So kill this dead code,
it could cause problems in situations where someone has used bi_private
for something else.
Signed-off-by: default avatarJens Axboe <axboe@suse.de>
Signed-off-by: default avatarLinus Torvalds <torvalds@osdl.org>
parent 8ff96da6
...@@ -603,18 +603,6 @@ static void __bio_unmap_user(struct bio *bio) ...@@ -603,18 +603,6 @@ static void __bio_unmap_user(struct bio *bio)
struct bio_vec *bvec; struct bio_vec *bvec;
int i; int i;
/*
* find original bio if it was bounced
*/
if (bio->bi_private) {
/*
* someone stole our bio, must not happen
*/
BUG_ON(!bio_flagged(bio, BIO_BOUNCED));
bio = bio->bi_private;
}
/* /*
* make sure we dirty pages we wrote to * make sure we dirty pages we wrote to
*/ */
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment