diff options
author | Roland Dreier <roland@topspin.com> | 2005-04-16 18:26:15 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@ppc970.osdl.org> | 2005-04-16 18:26:15 -0400 |
commit | 17ead2f5cc81c4658e7b495014c2c6856a6f6b88 (patch) | |
tree | 00ee9237785dd5c552dfc7d20460d8d6e3bc940e /drivers/infiniband/hw | |
parent | 8cf2daf3feae982db9804df3d4b8ec20fa7d6d41 (diff) |
[PATCH] IB/mthca: fix calculation of RDB shift
Fix calculation of rdb_shift by using original number of QPs, not
their slot in profile[] (which will be rearranged when we sort it).
Signed-off-by: Roland Dreier <roland@topspin.com>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'drivers/infiniband/hw')
-rw-r--r-- | drivers/infiniband/hw/mthca/mthca_profile.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/drivers/infiniband/hw/mthca/mthca_profile.c b/drivers/infiniband/hw/mthca/mthca_profile.c index 7881a8a919ca..9ffe76e23a9e 100644 --- a/drivers/infiniband/hw/mthca/mthca_profile.c +++ b/drivers/infiniband/hw/mthca/mthca_profile.c | |||
@@ -208,8 +208,7 @@ u64 mthca_make_profile(struct mthca_dev *dev, | |||
208 | break; | 208 | break; |
209 | case MTHCA_RES_RDB: | 209 | case MTHCA_RES_RDB: |
210 | for (dev->qp_table.rdb_shift = 0; | 210 | for (dev->qp_table.rdb_shift = 0; |
211 | profile[MTHCA_RES_QP].num << dev->qp_table.rdb_shift < | 211 | request->num_qp << dev->qp_table.rdb_shift < profile[i].num; |
212 | profile[i].num; | ||
213 | ++dev->qp_table.rdb_shift) | 212 | ++dev->qp_table.rdb_shift) |
214 | ; /* nothing */ | 213 | ; /* nothing */ |
215 | dev->qp_table.rdb_base = (u32) profile[i].start; | 214 | dev->qp_table.rdb_base = (u32) profile[i].start; |