diff options
author | Qing Huang <qing.huang@oracle.com> | 2016-04-14 17:43:26 (GMT) |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2016-04-16 23:01:05 (GMT) |
commit | a7c556546f610a331c22cb7edd9d1afe63f0cd52 (patch) | |
tree | 69eff50d2c52f5fcf0604ee4a3b4a098879baafd /net/rds | |
parent | 9241e2df4fbc648a92ea0752918e05c26255649e (diff) | |
download | linux-a7c556546f610a331c22cb7edd9d1afe63f0cd52.tar.xz |
RDS: fix endianness for dp_ack_seq
dp->dp_ack_seq is used in big endian format. We need to do the
big endianness conversion when we assign a value in host format
to it.
Signed-off-by: Qing Huang <qing.huang@oracle.com>
Signed-off-by: Santosh Shilimkar <santosh.shilimkar@oracle.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/rds')
-rw-r--r-- | net/rds/ib_cm.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/rds/ib_cm.c b/net/rds/ib_cm.c index 8764970..310cabc 100644 --- a/net/rds/ib_cm.c +++ b/net/rds/ib_cm.c @@ -194,7 +194,7 @@ static void rds_ib_cm_fill_conn_param(struct rds_connection *conn, dp->dp_protocol_major = RDS_PROTOCOL_MAJOR(protocol_version); dp->dp_protocol_minor = RDS_PROTOCOL_MINOR(protocol_version); dp->dp_protocol_minor_mask = cpu_to_be16(RDS_IB_SUPPORTED_PROTOCOLS); - dp->dp_ack_seq = rds_ib_piggyb_ack(ic); + dp->dp_ack_seq = cpu_to_be64(rds_ib_piggyb_ack(ic)); /* Advertise flow control */ if (ic->i_flowctl) { |