lkml.org 
[lkml]   [2006]   [Jul]   [10]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
Patch in this message
/
Date
From
Subject[PATCH] IB/mthca: fix static rate returned by mthca_ah_query
Andrew,
this has been out for a couple of days - could you drop this into -mm /
push this along to Linus, please?

----- Forwarded message from "Michael S. Tsirkin" <mst@mellanox.co.il> -----

Please review:

git://www.mellanox.co.il/~git/infiniband mst-for-2.6.18

This has the following patch:

IB/mthca: fix static rate returned by mthca_ah_query

--

commit 8b9395d3b67af87ce4c218af06a259a8af246d75
Author: Jack Morgenstein <jackm@mellanox.co.il>
Date: Thu Jul 6 19:33:25 2006 +0300

mthca_ah_query returs the static rate of the address handle in internal mthc
format. fix it to use rate encoding from enum ib_rate, which is what users
expect.

Signed-off-by: Jack Morgenstein <jackm@mellanox.co.il>
Signed-off-by: Michael S. Tsirkin <mst@mellanox.co.il>

Index: latest/drivers/infiniband/hw/mthca/mthca_av.c
===================================================================
--- latest.orig/drivers/infiniband/hw/mthca/mthca_av.c 2006-07-02 18:00:34.000000000 +0300
+++ latest/drivers/infiniband/hw/mthca/mthca_av.c 2006-07-05 13:50:06.000000000 +0300
@@ -303,9 +303,10 @@ int mthca_ah_query(struct ib_ah *ibah, s
memset(attr, 0, sizeof *attr);
attr->dlid = be16_to_cpu(ah->av->dlid);
attr->sl = be32_to_cpu(ah->av->sl_tclass_flowlabel) >> 28;
- attr->static_rate = ah->av->msg_sr & 0x7;
- attr->src_path_bits = ah->av->g_slid & 0x7F;
attr->port_num = be32_to_cpu(ah->av->port_pd) >> 24;
+ attr->static_rate = mthca_rate_to_ib(dev, ah->av->msg_sr & 0x7,
+ attr->port_num);
+ attr->src_path_bits = ah->av->g_slid & 0x7F;
attr->ah_flags = mthca_ah_grh_present(ah) ? IB_AH_GRH : 0;

if (attr->ah_flags) {

--
MST
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/

\
 
 \ /
  Last update: 2006-07-10 13:09    [W:0.021 / U:0.668 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site