Lines Matching refs:qp_table

197 	return qp->qpn >= dev->qp_table.sqp_start &&  in is_sqp()
198 qp->qpn <= dev->qp_table.sqp_start + 3; in is_sqp()
203 return qp->qpn >= dev->qp_table.sqp_start && in is_qp0()
204 qp->qpn <= dev->qp_table.sqp_start + 1; in is_qp0()
243 spin_lock(&dev->qp_table.lock); in mthca_qp_event()
244 qp = mthca_array_get(&dev->qp_table.qp, qpn & (dev->limits.num_qps - 1)); in mthca_qp_event()
247 spin_unlock(&dev->qp_table.lock); in mthca_qp_event()
263 spin_lock(&dev->qp_table.lock); in mthca_qp_event()
266 spin_unlock(&dev->qp_table.lock); in mthca_qp_event()
752 cpu_to_be32(dev->qp_table.rdb_base + in __mthca_modify_qp()
754 dev->qp_table.rdb_shift)); in __mthca_modify_qp()
890 attr->max_dest_rd_atomic > 1 << dev->qp_table.rdb_shift) { in mthca_modify_qp()
892 attr->max_dest_rd_atomic, 1 << dev->qp_table.rdb_shift); in mthca_modify_qp()
1074 ret = mthca_table_get(dev, dev->qp_table.qp_table, qp->qpn); in mthca_map_memfree()
1078 ret = mthca_table_get(dev, dev->qp_table.eqp_table, qp->qpn); in mthca_map_memfree()
1082 ret = mthca_table_get(dev, dev->qp_table.rdb_table, in mthca_map_memfree()
1083 qp->qpn << dev->qp_table.rdb_shift); in mthca_map_memfree()
1092 mthca_table_put(dev, dev->qp_table.eqp_table, qp->qpn); in mthca_map_memfree()
1095 mthca_table_put(dev, dev->qp_table.qp_table, qp->qpn); in mthca_map_memfree()
1103 mthca_table_put(dev, dev->qp_table.rdb_table, in mthca_unmap_memfree()
1104 qp->qpn << dev->qp_table.rdb_shift); in mthca_unmap_memfree()
1105 mthca_table_put(dev, dev->qp_table.eqp_table, qp->qpn); in mthca_unmap_memfree()
1106 mthca_table_put(dev, dev->qp_table.qp_table, qp->qpn); in mthca_unmap_memfree()
1288 qp->qpn = mthca_alloc(&dev->qp_table.alloc); in mthca_alloc_qp()
1298 mthca_free(&dev->qp_table.alloc, qp->qpn); in mthca_alloc_qp()
1302 spin_lock_irq(&dev->qp_table.lock); in mthca_alloc_qp()
1303 mthca_array_set(&dev->qp_table.qp, in mthca_alloc_qp()
1305 spin_unlock_irq(&dev->qp_table.lock); in mthca_alloc_qp()
1350 u32 mqpn = qpn * 2 + dev->qp_table.sqp_start + port - 1; in mthca_alloc_sqp()
1364 spin_lock_irq(&dev->qp_table.lock); in mthca_alloc_sqp()
1365 if (mthca_array_get(&dev->qp_table.qp, mqpn)) in mthca_alloc_sqp()
1368 mthca_array_set(&dev->qp_table.qp, mqpn, sqp); in mthca_alloc_sqp()
1369 spin_unlock_irq(&dev->qp_table.lock); in mthca_alloc_sqp()
1394 spin_lock(&dev->qp_table.lock); in mthca_alloc_sqp()
1395 mthca_array_clear(&dev->qp_table.qp, mqpn); in mthca_alloc_sqp()
1396 spin_unlock(&dev->qp_table.lock); in mthca_alloc_sqp()
1411 spin_lock_irq(&dev->qp_table.lock); in get_qp_refcount()
1413 spin_unlock_irq(&dev->qp_table.lock); in get_qp_refcount()
1433 spin_lock(&dev->qp_table.lock); in mthca_free_qp()
1434 mthca_array_clear(&dev->qp_table.qp, in mthca_free_qp()
1437 spin_unlock(&dev->qp_table.lock); in mthca_free_qp()
1471 mthca_free(&dev->qp_table.alloc, qp->qpn); in mthca_free_qp()
2256 spin_lock_init(&dev->qp_table.lock); in mthca_init_qp_table()
2262 dev->qp_table.sqp_start = (dev->limits.reserved_qps + 1) & ~1UL; in mthca_init_qp_table()
2263 err = mthca_alloc_init(&dev->qp_table.alloc, in mthca_init_qp_table()
2266 dev->qp_table.sqp_start + in mthca_init_qp_table()
2271 err = mthca_array_init(&dev->qp_table.qp, in mthca_init_qp_table()
2274 mthca_alloc_cleanup(&dev->qp_table.alloc); in mthca_init_qp_table()
2280 dev->qp_table.sqp_start + i * 2); in mthca_init_qp_table()
2293 mthca_array_cleanup(&dev->qp_table.qp, dev->limits.num_qps); in mthca_init_qp_table()
2294 mthca_alloc_cleanup(&dev->qp_table.alloc); in mthca_init_qp_table()
2306 mthca_array_cleanup(&dev->qp_table.qp, dev->limits.num_qps); in mthca_cleanup_qp_table()
2307 mthca_alloc_cleanup(&dev->qp_table.alloc); in mthca_cleanup_qp_table()