aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/infiniband/core/sa_query.c
diff options
context:
space:
mode:
authorRoland Dreier <rolandd@cisco.com>2007-02-16 15:31:24 -0800
committerRoland Dreier <rolandd@cisco.com>2007-02-16 15:31:24 -0800
commit7084f8429c940bac856123ce6d3946638fe20364 (patch)
treef927019df1b464ea3ffb91091c40d2db913c1849 /drivers/infiniband/core/sa_query.c
parentIB/ipath: Make ipath_map_sg() static (diff)
downloadlinux-dev-7084f8429c940bac856123ce6d3946638fe20364.tar.xz
linux-dev-7084f8429c940bac856123ce6d3946638fe20364.zip
IB/core: Set static rate in ib_init_ah_from_path()
The static rate from the path record should be put into the address vector -- a long time ago the rate in the address attributes needed to be a relative rate, which required more munging, but now that the conversion from absolute to relative is done in the low-level driver, it's easy for ib_init_ah_from_path() to put the absolute rate in. Cc: Jason Gunthorpe <jgunthorpe@obsidianresearch.com> Cc: Sean Hefty <sean.hefty@intel.com> Signed-off-by: Roland Dreier <rolandd@cisco.com>
Diffstat (limited to 'drivers/infiniband/core/sa_query.c')
-rw-r--r--drivers/infiniband/core/sa_query.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/infiniband/core/sa_query.c b/drivers/infiniband/core/sa_query.c
index d7d4a5309ba9..68db633711c5 100644
--- a/drivers/infiniband/core/sa_query.c
+++ b/drivers/infiniband/core/sa_query.c
@@ -471,6 +471,7 @@ int ib_init_ah_from_path(struct ib_device *device, u8 port_num,
ah_attr->sl = rec->sl;
ah_attr->src_path_bits = be16_to_cpu(rec->slid) & 0x7f;
ah_attr->port_num = port_num;
+ ah_attr->static_rate = rec->rate;
if (rec->hop_limit > 1) {
ah_attr->ah_flags = IB_AH_GRH;