Re: OpenSM plugin patch request

2011-10-17 Thread Hal Rosenstock
Hi Karl, On 10/17/2011 5:43 PM, Karl Schulz wrote: > Thanks for explaining the enum convention - quite logical indeed. Also, > thanks for some > of the off-list discussion where we tried to see if any of the current event > callbacks > could be used to achieve the desired support. As it stan

Re: OpenSM plugin patch request

2011-10-17 Thread Karl Schulz
Thanks for explaining the enum convention - quite logical indeed. Also, thanks for some of the off-list discussion where we tried to see if any of the current event callbacks could be used to achieve the desired support. As it stands, it still sounds like including light sweep events is the si

Re: [PATCH -next] infiniband: fix printk format in hw/nes_cm.c

2011-10-17 Thread Roland Dreier
Thanks, rolled this into the offending commit. -- To unsubscribe from this list: send the line "unsubscribe linux-rdma" in the body of a message to majord...@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html

Re: rdma: 3.1.0-rc9 breaks UD

2011-10-17 Thread Or Gerlitz
On Fri, Oct 14, 2011 at 4:02 PM, Christoph Lameter wrote: > Running ibv_ud_pingpong and ibc_uc_pingpong between two hosts. One with > OFED 1.5.3.1 (Ubuntu LTS 10.04) and another on linux 3.1.0-rc9 (Same > ubuntu version uderlying) with the upstream libraries. > ibv_ud_pingpong > OFED: > # ibv_ud_p

RE: [PATCH] rdma/core: Really export ib_open_qp() to user space

2011-10-17 Thread Hefty, Sean
> again, and just to make sure I got it - for basic XRC testing which doesn't go > to MPI nor to > the OFED compatability APIs, what env/test would you recommend - is that the > xrc branch on the three libraries and rdma_x{client, server}? Yes - please make sure you have pulled those branches rece

Re: [PATCH] rdma/core: Really export ib_open_qp() to user space

2011-10-17 Thread Or Gerlitz
Hefty, Sean wrote: > The rdma_xclient / rdma_xserver tests are a place for those.  They support RC >and > XRC, so they're in the master branch for the RC support.  I have extensions > for them in > a private branch which aren't quite ready yet. again, and just to make sure I got it - for basic

RE: [patch] RDMA/nes: silence compiler warning

2011-10-17 Thread Latif, Faisal
> -Original Message- > From: rol...@purestorage.com [mailto:rol...@purestorage.com] On Behalf > Of Roland Dreier > Sent: Monday, October 17, 2011 1:15 PM > To: Dan Carpenter > Cc: Latif, Faisal; Hefty, Sean; Hal Rosenstock; linux- > r...@vger.kernel.org; kernel-janit...@vger.kernel.org >

Re: [patch] RDMA/nes: silence compiler warning

2011-10-17 Thread Roland Dreier
On Mon, Oct 17, 2011 at 12:28 AM, Dan Carpenter wrote: >        nes_debug(NES_DBG_CM, "QP%u, Destination IP = 0x%08X:0x%04X, local = " >                  "0x%08X:0x%04X, rcv_nxt=0x%08X, snd_nxt=0x%08X, mpa + " > -                 "private data length=%zu.\n", nesqp->hwqp.qp_id, > +                

Re: [patch] RDMA/nes: silence compiler warning

2011-10-17 Thread Roland Dreier
Thanks, I rolled this into the patch (which was still pending) that introduced this into my tree. -- To unsubscribe from this list: send the line "unsubscribe linux-rdma" in the body of a message to majord...@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html

[PATCH][TRIVIAL] opensm/osm_sa_mcmember_record.c: Commentary changes relating to SA assigned MGIDs

2011-10-17 Thread Hal Rosenstock
Update one comment to be more accurate and remove comment which appears to no longer apply Signed-off-by: Hal Rosenstock --- opensm/osm_sa_mcmember_record.c |3 +-- 1 files changed, 1 insertions(+), 2 deletions(-) diff --git a/opensm/osm_sa_mcmember_record.c b/opensm/osm_sa_mcmember_record

[PATCH] opensm/main.c: Change size parameter in setvbuf call from 0 to BUFSIZ

2011-10-17 Thread Hal Rosenstock
to eliminate Win8 assert as this is shared code Signed-off-by: Hal Rosenstock --- opensm/main.c |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/opensm/main.c b/opensm/main.c index 51c8291..f7a6d83 100644 --- a/opensm/main.c +++ b/opensm/main.c @@ -645,7 +645,7 @@ int m

RE: [PATCH] rdma/core: Really export ib_open_qp() to user space

2011-10-17 Thread Hefty, Sean
> So what else would you suggest for further testing, is that pulling > the xrc branch of your ofa hosted librdmacm/libibverbs/libmlx4 trees > and run librdmacm's rdma_{xclient,xserver} example? I was a bit confused > since I see this example both in the master and the xrc brach. I wanted to keep

Re: Building 3.1-rc9 in kernel infiniband support with OFED libraries

2011-10-17 Thread Wendy Cheng
On Fri, Oct 14, 2011 at 2:22 PM, Doug Ledford wrote: > - Original Message - >> On Wed, Oct 12, 2011 at 9:32 AM, Wendy Cheng >> wrote: >> > The OFED package itself does include XRC support. The issue here >> > (my >> > guess) is that its build script needs to understand the running >> > sy

RE: [patch] RDMA/nes: silence compiler warning

2011-10-17 Thread Latif, Faisal
Dan Carpenter Wrote: > Signed-off-by: Dan Carpenter > > diff --git a/drivers/infiniband/hw/nes/nes_cm.c > b/drivers/infiniband/hw/nes/nes_cm.c > index 16667c7..b96ec43 100644 > --- a/drivers/infiniband/hw/nes/nes_cm.c > +++ b/drivers/infiniband/hw/nes/nes_cm.c > @@ -3189,7 +3189,7 @@ int nes_acc

[patch] RDMA/nes: silence compiler warning

2011-10-17 Thread Dan Carpenter
drivers/infiniband/hw/nes/nes_cm.c:3190:2: warning: format ‘%zu’ expects argument of type ‘size_t’, but argument 11 has type ‘int’ [-Wformat] The warning says the type is "int" but actually it's unsigned short. Signed-off-by: Dan Carpenter diff --git a/drivers/infiniband/hw/nes/