Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 110507
b: refs/heads/master
c: 4d8ab62
h: refs/heads/master
i:
  110505: 92d9922
  110503: d68c32b
v: v3
  • Loading branch information
FUJITA Tomonori authored and Jens Axboe committed Oct 9, 2008
1 parent 2127816 commit 98de0ff
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 51 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 10db10d144c0248f285242f79daf6b9de6b00a62
refs/heads/master: 4d8ab62e087d9300883b82c2662e73e6eef803a3
54 changes: 4 additions & 50 deletions trunk/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 98de0ff

Please sign in to comment.