All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] libceph: be explicit in masking bottom 16 bits
@ 2013-03-29 21:05 Alex Elder
  2013-04-03 18:38 ` Josh Durgin
  0 siblings, 1 reply; 2+ messages in thread
From: Alex Elder @ 2013-03-29 21:05 UTC (permalink / raw)
  To: ceph-devel

In ceph_osdc_build_request() there is a call to cpu_to_le16() which
provides a 64-bit value as its argument.  Because of the implied
byte swapping going on it looked pretty suspect to me.

At the moment it turns out the behavior is well defined, but masking
off those bottom bits explicitly eliminates this distraction, and is
in fact more directly related to the purpose of the message header's
data_off field.

This resolves:
    http://tracker.ceph.com/issues/4125

Signed-off-by: Alex Elder <elder@inktank.com>
---
 net/ceph/osd_client.c |   14 ++++++++++++--
 1 file changed, 12 insertions(+), 2 deletions(-)

diff --git a/net/ceph/osd_client.c b/net/ceph/osd_client.c
index 3b6657f..015bf9f 100644
--- a/net/ceph/osd_client.c
+++ b/net/ceph/osd_client.c
@@ -419,8 +419,18 @@ void ceph_osdc_build_request(struct
ceph_osd_request *req,
 	p += 4;

 	/* data */
-	if (flags & CEPH_OSD_FLAG_WRITE)
-		req->r_request->hdr.data_off = cpu_to_le16(off);
+	if (flags & CEPH_OSD_FLAG_WRITE) {
+		u16 data_off;
+
+		/*
+		 * The header "data_off" is a hint to the receiver
+		 * allowing it to align received data into its
+		 * buffers such that there's no need to re-copy
+		 * it before writing it to disk (direct I/O).
+		 */
+		data_off = (u16) (off & 0xffff);
+		req->r_request->hdr.data_off = cpu_to_le16(data_off);
+	}
 	req->r_request->hdr.data_len = cpu_to_le32(data_len);

 	BUG_ON(p > msg->front.iov_base + msg->front.iov_len);
-- 
1.7.9.5


^ permalink raw reply related	[flat|nested] 2+ messages in thread

* Re: [PATCH] libceph: be explicit in masking bottom 16 bits
  2013-03-29 21:05 [PATCH] libceph: be explicit in masking bottom 16 bits Alex Elder
@ 2013-04-03 18:38 ` Josh Durgin
  0 siblings, 0 replies; 2+ messages in thread
From: Josh Durgin @ 2013-04-03 18:38 UTC (permalink / raw)
  To: Alex Elder; +Cc: ceph-devel

Reviewed-by: Josh Durgin <josh.durgin@inktank.com>

On 03/29/2013 02:05 PM, Alex Elder wrote:
> In ceph_osdc_build_request() there is a call to cpu_to_le16() which
> provides a 64-bit value as its argument.  Because of the implied
> byte swapping going on it looked pretty suspect to me.
>
> At the moment it turns out the behavior is well defined, but masking
> off those bottom bits explicitly eliminates this distraction, and is
> in fact more directly related to the purpose of the message header's
> data_off field.
>
> This resolves:
>      http://tracker.ceph.com/issues/4125
>
> Signed-off-by: Alex Elder <elder@inktank.com>
> ---
>   net/ceph/osd_client.c |   14 ++++++++++++--
>   1 file changed, 12 insertions(+), 2 deletions(-)
>
> diff --git a/net/ceph/osd_client.c b/net/ceph/osd_client.c
> index 3b6657f..015bf9f 100644
> --- a/net/ceph/osd_client.c
> +++ b/net/ceph/osd_client.c
> @@ -419,8 +419,18 @@ void ceph_osdc_build_request(struct
> ceph_osd_request *req,
>   	p += 4;
>
>   	/* data */
> -	if (flags & CEPH_OSD_FLAG_WRITE)
> -		req->r_request->hdr.data_off = cpu_to_le16(off);
> +	if (flags & CEPH_OSD_FLAG_WRITE) {
> +		u16 data_off;
> +
> +		/*
> +		 * The header "data_off" is a hint to the receiver
> +		 * allowing it to align received data into its
> +		 * buffers such that there's no need to re-copy
> +		 * it before writing it to disk (direct I/O).
> +		 */
> +		data_off = (u16) (off & 0xffff);
> +		req->r_request->hdr.data_off = cpu_to_le16(data_off);
> +	}
>   	req->r_request->hdr.data_len = cpu_to_le32(data_len);
>
>   	BUG_ON(p > msg->front.iov_base + msg->front.iov_len);
>


^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2013-04-03 18:38 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2013-03-29 21:05 [PATCH] libceph: be explicit in masking bottom 16 bits Alex Elder
2013-04-03 18:38 ` Josh Durgin

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.