Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 373405
b: refs/heads/master
c: fdce58c
h: refs/heads/master
i:
  373403: 6204401
v: v3
  • Loading branch information
Alex Elder authored and Sage Weil committed May 2, 2013
1 parent 0d41682 commit 59357a0
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 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: ace6d3a96f00c271b3f337adcde8e8cbe39c3820
refs/heads/master: fdce58ccb5df621695b079378c619046acabc778
1 change: 1 addition & 0 deletions trunk/drivers/block/rbd.c
Original file line number Diff line number Diff line change
Expand Up @@ -1352,6 +1352,7 @@ static struct ceph_osd_request *rbd_osd_req_create(
rbd_assert(obj_request->bio_list != NULL);
osd_data->type = CEPH_OSD_DATA_TYPE_BIO;
osd_data->bio = obj_request->bio_list;
osd_data->bio_length = obj_request->length;
break;
case OBJ_REQUEST_PAGES:
osd_data->type = CEPH_OSD_DATA_TYPE_PAGES;
Expand Down
5 changes: 4 additions & 1 deletion trunk/include/linux/ceph/osd_client.h
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,10 @@ struct ceph_osd_data {
};
struct ceph_pagelist *pagelist;
#ifdef CONFIG_BLOCK
struct bio *bio;
struct {
struct bio *bio; /* list of bios */
size_t bio_length; /* total in list */
};
#endif /* CONFIG_BLOCK */
};
};
Expand Down

0 comments on commit 59357a0

Please sign in to comment.