From: Ilya Dryomov Date: Thu, 9 Jan 2014 18:08:21 +0000 (+0200) Subject: libceph: rename front to front_len in get_reply() X-Git-Tag: submit/tizen_common/20140905.094502~267 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=ed0d7f08ff8b76555525a9ee61d8eed2796594c2;p=sdk%2Femulator%2Femulator-kernel.git libceph: rename front to front_len in get_reply() commit 3f0a4ac55fe036902e3666be740da63528ad8639 upstream. Rename front local variable to front_len in get_reply() to make its purpose more clear. Signed-off-by: Ilya Dryomov Reviewed-by: Sage Weil Signed-off-by: Jiri Slaby --- diff --git a/net/ceph/osd_client.c b/net/ceph/osd_client.c index a238d9e255d3..2efae981acd5 100644 --- a/net/ceph/osd_client.c +++ b/net/ceph/osd_client.c @@ -2495,7 +2495,7 @@ static struct ceph_msg *get_reply(struct ceph_connection *con, struct ceph_osd_client *osdc = osd->o_osdc; struct ceph_msg *m; struct ceph_osd_request *req; - int front = le32_to_cpu(hdr->front_len); + int front_len = le32_to_cpu(hdr->front_len); int data_len = le32_to_cpu(hdr->data_len); u64 tid; @@ -2515,12 +2515,13 @@ static struct ceph_msg *get_reply(struct ceph_connection *con, req->r_reply, req->r_reply->con); ceph_msg_revoke_incoming(req->r_reply); - if (front > req->r_reply->front.iov_len) { + if (front_len > req->r_reply->front.iov_len) { pr_warning("get_reply front %d > preallocated %d (%u#%llu)\n", - front, (int)req->r_reply->front.iov_len, + front_len, (int)req->r_reply->front.iov_len, (unsigned int)con->peer_name.type, le64_to_cpu(con->peer_name.num)); - m = ceph_msg_new(CEPH_MSG_OSD_OPREPLY, front, GFP_NOFS, false); + m = ceph_msg_new(CEPH_MSG_OSD_OPREPLY, front_len, GFP_NOFS, + false); if (!m) goto out; ceph_msg_put(req->r_reply);