Skip to content

Commit

Permalink
bio: convert bio_copy_kern to use bio_copy_user
Browse files Browse the repository at this point in the history
bio_copy_kern and bio_copy_user are very similar. This converts
bio_copy_kern to use bio_copy_user.

Signed-off-by: FUJITA Tomonori <[email protected]>
Cc: Jens Axboe <[email protected]>
Signed-off-by: Jens Axboe <[email protected]>
  • Loading branch information
fujita authored and Jens Axboe committed Oct 9, 2008
1 parent 10db10d commit 4d8ab62
Showing 1 changed file with 4 additions and 50 deletions.
54 changes: 4 additions & 50 deletions fs/bio.c
Original file line number Diff line number Diff line change
Expand Up @@ -995,48 +995,13 @@ static void bio_copy_kern_endio(struct bio *bio, int err)
struct bio *bio_copy_kern(struct request_queue *q, void *data, unsigned int len,
gfp_t gfp_mask, int reading)
{
unsigned long kaddr = (unsigned long)data;
unsigned long end = (kaddr + len + PAGE_SIZE - 1) >> PAGE_SHIFT;
unsigned long start = kaddr >> PAGE_SHIFT;
const int nr_pages = end - start;
struct bio *bio;
struct bio_vec *bvec;
struct bio_map_data *bmd;
int i, ret;
struct sg_iovec iov;

iov.iov_base = data;
iov.iov_len = len;

bmd = bio_alloc_map_data(nr_pages, 1, gfp_mask);
if (!bmd)
return ERR_PTR(-ENOMEM);

ret = -ENOMEM;
bio = bio_alloc(gfp_mask, nr_pages);
if (!bio)
goto out_bmd;

while (len) {
struct page *page;
unsigned int bytes = PAGE_SIZE;

if (bytes > len)
bytes = len;

page = alloc_page(q->bounce_gfp | gfp_mask);
if (!page) {
ret = -ENOMEM;
goto cleanup;
}

if (bio_add_pc_page(q, bio, page, bytes, 0) < bytes) {
ret = -EINVAL;
goto cleanup;
}
int i;

len -= bytes;
}
bio = bio_copy_user(q, NULL, (unsigned long)data, len, 1, gfp_mask);
if (IS_ERR(bio))
return bio;

if (!reading) {
void *p = data;
Expand All @@ -1049,20 +1014,9 @@ struct bio *bio_copy_kern(struct request_queue *q, void *data, unsigned int len,
}
}

bio->bi_private = bmd;
bio->bi_end_io = bio_copy_kern_endio;

bio_set_map_data(bmd, bio, &iov, 1, 1);
return bio;
cleanup:
bio_for_each_segment(bvec, bio, i)
__free_page(bvec->bv_page);

bio_put(bio);
out_bmd:
bio_free_map_data(bmd);

return ERR_PTR(ret);
}

/*
Expand Down

0 comments on commit 4d8ab62

Please sign in to comment.