diff options
author | Hal Rosenstock <halr@voltaire.com> | 2005-07-27 14:45:35 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2005-07-27 19:26:12 -0400 |
commit | 497677ab940e637a41351dca6610bc4320abc8f1 (patch) | |
tree | 256357c9aba1e8ccefb8df62432aa8eab4389bcf /drivers | |
parent | 513789ed995fb2ba72ba2a5bee53ea11d1170580 (diff) |
[PATCH] IB: A couple of IB core bug fixes
Replace be32_to_cpup with be32_to_cpu and fix bug referencing pointer rather
than value in ib_create_ah_from_wc().
Signed-off-by: Tom Duffy <tduffy@sun.com>
Signed-off-by: Sean Hefty <sean.hefty@intel.com>
Signed-off-by: Hal Rosenstock <halr@voltaire.com>
Cc: Roland Dreier <rolandd@cisco.com>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/infiniband/core/agent.c | 8 | ||||
-rw-r--r-- | drivers/infiniband/core/verbs.c | 2 |
2 files changed, 5 insertions, 5 deletions
diff --git a/drivers/infiniband/core/agent.c b/drivers/infiniband/core/agent.c index dde25ee81b65..729f0b0d983a 100644 --- a/drivers/infiniband/core/agent.c +++ b/drivers/infiniband/core/agent.c | |||
@@ -156,10 +156,10 @@ static int agent_mad_send(struct ib_mad_agent *mad_agent, | |||
156 | /* Should sgid be looked up ? */ | 156 | /* Should sgid be looked up ? */ |
157 | ah_attr.grh.sgid_index = 0; | 157 | ah_attr.grh.sgid_index = 0; |
158 | ah_attr.grh.hop_limit = grh->hop_limit; | 158 | ah_attr.grh.hop_limit = grh->hop_limit; |
159 | ah_attr.grh.flow_label = be32_to_cpup( | 159 | ah_attr.grh.flow_label = be32_to_cpu( |
160 | &grh->version_tclass_flow) & 0xfffff; | 160 | grh->version_tclass_flow) & 0xfffff; |
161 | ah_attr.grh.traffic_class = (be32_to_cpup( | 161 | ah_attr.grh.traffic_class = (be32_to_cpu( |
162 | &grh->version_tclass_flow) >> 20) & 0xff; | 162 | grh->version_tclass_flow) >> 20) & 0xff; |
163 | memcpy(ah_attr.grh.dgid.raw, | 163 | memcpy(ah_attr.grh.dgid.raw, |
164 | grh->sgid.raw, | 164 | grh->sgid.raw, |
165 | sizeof(ah_attr.grh.dgid)); | 165 | sizeof(ah_attr.grh.dgid)); |
diff --git a/drivers/infiniband/core/verbs.c b/drivers/infiniband/core/verbs.c index 62951594eec6..506fdf1f2a26 100644 --- a/drivers/infiniband/core/verbs.c +++ b/drivers/infiniband/core/verbs.c | |||
@@ -113,7 +113,7 @@ struct ib_ah *ib_create_ah_from_wc(struct ib_pd *pd, struct ib_wc *wc, | |||
113 | return ERR_PTR(ret); | 113 | return ERR_PTR(ret); |
114 | 114 | ||
115 | ah_attr.grh.sgid_index = (u8) gid_index; | 115 | ah_attr.grh.sgid_index = (u8) gid_index; |
116 | flow_class = be32_to_cpu(&grh->version_tclass_flow); | 116 | flow_class = be32_to_cpu(grh->version_tclass_flow); |
117 | ah_attr.grh.flow_label = flow_class & 0xFFFFF; | 117 | ah_attr.grh.flow_label = flow_class & 0xFFFFF; |
118 | ah_attr.grh.traffic_class = (flow_class >> 20) & 0xFF; | 118 | ah_attr.grh.traffic_class = (flow_class >> 20) & 0xFF; |
119 | ah_attr.grh.hop_limit = grh->hop_limit; | 119 | ah_attr.grh.hop_limit = grh->hop_limit; |