Re: [PATCH v2] ib/cm: fix layout of APR message

2012-01-03 Thread Roland Dreier
applied, thanks
--
To unsubscribe from this list: send the line unsubscribe linux-rdma in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html


[PATCH v2] ib/cm: fix layout of APR message

2011-12-19 Thread Eli Cohen
Add a missing 16 bit reserved field between ap_status and info fields.

Signed-off-by: Eli Cohen e...@mellanox.com
---
Use __be16 instead of u16 for the reserved field for consistency.

 drivers/infiniband/core/cm_msgs.h |1 +
 1 files changed, 1 insertions(+), 0 deletions(-)

diff --git a/drivers/infiniband/core/cm_msgs.h 
b/drivers/infiniband/core/cm_msgs.h
index 7e63c08..b320aad 100644
--- a/drivers/infiniband/core/cm_msgs.h
+++ b/drivers/infiniband/core/cm_msgs.h
@@ -771,6 +771,7 @@ struct cm_apr_msg {
 
u8 info_length;
u8 ap_status;
+   __be16 rsvd;
u8 info[IB_CM_APR_INFO_LENGTH];
 
u8 private_data[IB_CM_APR_PRIVATE_DATA_SIZE];
-- 
1.7.8

--
To unsubscribe from this list: send the line unsubscribe linux-rdma in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html


RE: [PATCH v2] ib/cm: fix layout of APR message

2011-12-19 Thread Hefty, Sean
 Add a missing 16 bit reserved field between ap_status and info fields.
 
 Signed-off-by: Eli Cohen e...@mellanox.com

Acked-by: Sean Hefty sean.he...@intel.com

 ---
 Use __be16 instead of u16 for the reserved field for consistency.
 
  drivers/infiniband/core/cm_msgs.h |1 +
  1 files changed, 1 insertions(+), 0 deletions(-)
 
 diff --git a/drivers/infiniband/core/cm_msgs.h
 b/drivers/infiniband/core/cm_msgs.h
 index 7e63c08..b320aad 100644
 --- a/drivers/infiniband/core/cm_msgs.h
 +++ b/drivers/infiniband/core/cm_msgs.h
 @@ -771,6 +771,7 @@ struct cm_apr_msg {
 
   u8 info_length;
   u8 ap_status;
 + __be16 rsvd;
   u8 info[IB_CM_APR_INFO_LENGTH];
 
   u8 private_data[IB_CM_APR_PRIVATE_DATA_SIZE];
 --
 1.7.8

--
To unsubscribe from this list: send the line unsubscribe linux-rdma in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html