Gitweb:     
http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=c9f2ba5ed26a204a78bf23aa08a4f528f11a18f4
Commit:     c9f2ba5ed26a204a78bf23aa08a4f528f11a18f4
Parent:     8f076531cd20fbf83ed889024c8133d0c71a1fe4
Author:     Jack Morgenstein <[EMAIL PROTECTED]>
AuthorDate: Tue Jul 17 13:11:43 2007 +0300
Committer:  Roland Dreier <[EMAIL PROTECTED]>
CommitDate: Tue Jul 17 20:50:50 2007 -0700

    IB/mlx4: Increase max outstanding RDMA reads as target
    
    Change the maximum number of outstanding RDMA reads allowed as a
    target from 4 to 16 to per QP.  This allows RDMA read operations to
    pipeline better.
    
    Pointed out by Dotan Barak and Sagi Rotem.
    
    Signed-off-by: Jack Morgenstein <[EMAIL PROTECTED]>
    Signed-off-by: Roland Dreier <[EMAIL PROTECTED]>
---
 drivers/net/mlx4/main.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/drivers/net/mlx4/main.c b/drivers/net/mlx4/main.c
index e8f45e6..4dc9dc1 100644
--- a/drivers/net/mlx4/main.c
+++ b/drivers/net/mlx4/main.c
@@ -78,7 +78,7 @@ static const char mlx4_version[] __devinitdata =
 static struct mlx4_profile default_profile = {
        .num_qp         = 1 << 16,
        .num_srq        = 1 << 16,
-       .rdmarc_per_qp  = 4,
+       .rdmarc_per_qp  = 1 << 4,
        .num_cq         = 1 << 16,
        .num_mcg        = 1 << 13,
        .num_mpt        = 1 << 17,
-
To unsubscribe from this list: send the line "unsubscribe git-commits-head" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to