From: Alex Elder Date: Sat, 2 Mar 2013 00:00:14 +0000 (-0600) Subject: libceph: no need for alignment for mds message X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=54ae0756e3847f4350ba24271a2a38be1263dd67;p=linux-beck.git libceph: no need for alignment for mds message Currently, incoming mds messages never use page data, which means there is no need to set the page_alignment field in the message. Signed-off-by: Alex Elder Reviewed-by: Greg Farnum --- diff --git a/fs/ceph/mds_client.c b/fs/ceph/mds_client.c index b87b24fed4b2..ecfb738bca30 100644 --- a/fs/ceph/mds_client.c +++ b/fs/ceph/mds_client.c @@ -3490,7 +3490,6 @@ static struct ceph_msg *mds_alloc_msg(struct ceph_connection *con, type, front_len); return NULL; } - msg->page_alignment = (unsigned int) le16_to_cpu(hdr->data_off); return msg; }