Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 373301
b: refs/heads/master
c: 60cf599
h: refs/heads/master
i:
  373299: 790d455
v: v3
  • Loading branch information
Alex Elder authored and Sage Weil committed May 2, 2013
1 parent d4130e7 commit f889587
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 9 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: dbe0fc4188ee568d6e26fe938a653f01e18d6f4e
refs/heads/master: 60cf5992d96dd5b97baf74cd400d6e05f7f2c93e
12 changes: 4 additions & 8 deletions trunk/net/ceph/osd_client.c
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,6 @@ static int op_has_extent(int op)
* fill osd op in request message.
*/
static int calc_layout(struct ceph_file_layout *layout, u64 off, u64 *plen,
struct ceph_osd_request *req,
struct ceph_osd_req_op *op, u64 *bno)
{
u64 orig_len = *plen;
Expand Down Expand Up @@ -95,13 +94,10 @@ static int calc_layout(struct ceph_file_layout *layout, u64 off, u64 *plen,
op->extent.truncate_size = osize;
}
}
req->r_num_pages = calc_pages_for(off, *plen);
req->r_page_alignment = off & ~PAGE_MASK;
if (op->op == CEPH_OSD_OP_WRITE)
op->payload_len = *plen;

dout("calc_layout bno=%llx %llu~%llu (%d pages)\n",
*bno, objoff, objlen, req->r_num_pages);
dout("calc_layout bno=%llx %llu~%llu\n", *bno, objoff, objlen);

return 0;
}
Expand Down Expand Up @@ -464,7 +460,7 @@ struct ceph_osd_request *ceph_osdc_new_request(struct ceph_osd_client *osdc,
req->r_flags = flags;

/* calculate max write size */
r = calc_layout(layout, off, plen, req, ops, &bno);
r = calc_layout(layout, off, plen, ops, &bno);
if (r < 0) {
ceph_osdc_put_request(req);
return ERR_PTR(r);
Expand All @@ -475,8 +471,8 @@ struct ceph_osd_request *ceph_osdc_new_request(struct ceph_osd_client *osdc,
snprintf(req->r_oid, sizeof(req->r_oid), "%llx.%08llx", vino.ino, bno);
req->r_oid_len = strlen(req->r_oid);

/* in case it differs from natural (file) alignment that
calc_layout filled in for us */
/* The alignment may differ from the natural (file) alignment */

req->r_num_pages = calc_pages_for(page_align, *plen);
req->r_page_alignment = page_align;

Expand Down

0 comments on commit f889587

Please sign in to comment.