Skip to content

Commit

Permalink
IB/mthca: Fix initial SRQ logsize for mem-free HCAs
Browse files Browse the repository at this point in the history
When initializing an mthca SRQ, the log_srq_size field should be the
log of the number of SRQ WQEs, not the log of the number of bytes in
the SRQ.

This affects only mthca drivers for memfree HCAs which set the initial
srq wqe counter (in the SW2HW transition) to a non-zero value.

Signed-off-by: Jack Morgenstein <jackm@dev.mellanox.co.il>
Signed-off-by: Roland Dreier <rolandd@cisco.com>
  • Loading branch information
Jack Morgenstein authored and Roland Dreier committed Nov 29, 2006
1 parent 2771e9e commit 7013696
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drivers/infiniband/hw/mthca/mthca_srq.c
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ static void mthca_arbel_init_srq_context(struct mthca_dev *dev,

memset(context, 0, sizeof *context);

logsize = long_log2(srq->max) + srq->wqe_shift;
logsize = long_log2(srq->max);
context->state_logsize_srqn = cpu_to_be32(logsize << 24 | srq->srqn);
context->lkey = cpu_to_be32(srq->mr.ibmr.lkey);
context->db_index = cpu_to_be32(srq->db_index);
Expand Down

0 comments on commit 7013696

Please sign in to comment.