[ewg] Re: [ofa-general] mvapich2 over iwarp DOA - bug520
Steve Wise
swise at opengridcomputing.com
Wed Apr 4 20:13:24 PDT 2007
On Wed, 2007-04-04 at 10:57 -0500, Steve Wise wrote:
> I just built and installed today's daily ofed-1.2 build and mvapich2
> doesn't work at all over iwarp. The build is
> OFED-1.2-20070404-0600.tgz.
>
> I've opened bug 520 to track this.
>
This is a libcxgb3 bug, not mvapich2.
Vlad, Please pull from:
git://git.openfabrics.org/~swise/libcxgb3.git ofed_1_2
For the fix to 520.
Thanks,
Steve.
----
commit 828671e2e902de5f39ad3a10d342d6eb25db3134
Author: root <root at r1-iw.(none)>
Date: Wed Apr 4 20:02:00 2007 -0700
Set the correct flit length in SEND WR with INLINE data.
Signed-off-by: Steve Wise <swise at opengridcomputing.com>
diff --git a/src/qp.c b/src/qp.c
index 07ad37e..b77fb34 100644
--- a/src/qp.c
+++ b/src/qp.c
@@ -87,7 +87,7 @@ #endif
wr->sg_list[i].length);
datap += wr->sg_list[i].length;
}
- *flit_cnt = 4 + (wqe->write.plen >> 3) + 1;
+ *flit_cnt = 4 + (wqe->send.plen >> 3) + 1;
wqe->send.plen = htonl(wqe->send.plen);
} else {
wqe->send.plen = 0;
More information about the ewg
mailing list