[ewg] change in diags in OFED 1.3? (2 ports; only 1 supported currently)

2007-12-05 Thread Scott Weitzenkamp (sweitzen)
This seems new in OFED 1.3: [EMAIL PROTECTED] ~]# ibcheckerrors perfquery: iberror: failed: smp query nodeinfo: 2 ports; only 1 supported currently Error check on lid 8 (svbu-qa-pcie-2 HCA-1) port all: FAILED perfquery: iberror: failed: perfquery Error check on lid 8 (svbu-qa-pcie-2 HCA-1) port

[ewg] Application layer support for RMPP using OFED stack.

2007-12-05 Thread Anton Bodner
Hello - I'm from QLogic Corp, and I'm trying to port some older applications to OFED, using the OFED stack and the OFED umad api (specifically - opening the /dev/infiniband/umadX, and using read / write). I am using OFED 1.2.5. My old application interrogates the SA, and also implements

[ewg] RE: OFED-1.3-beta sdp issue

2007-12-05 Thread Jim Mott
Hi, This looks very much like bug 793 (https://bugs.openfabrics.org/show_bug.cgi?id=793). There was a change in the sk_buff definition in 2.6.22+ kernels. Could you verify that the fix posted in the bug is in your sdp_bcopy.c (or just send me your drivers/infiniband/ulp/sdp/sdp_bcopy.c)

RE: [ewg] change in diags in OFED 1.3? (2 ports; only1supportedcurrently)

2007-12-05 Thread Scott Weitzenkamp (sweitzen)
Did not see this problem with OFED 1.2 or 1.2.5. Are you 100% sure ? Same HCAs and firmware ? 100% sure. ___ ewg mailing list ewg@lists.openfabrics.org http://lists.openfabrics.org/cgi-bin/mailman/listinfo/ewg

RE: [ewg] change in diags in OFED 1.3? (2 ports; only 1 supportedcurrently)

2007-12-05 Thread Hal Rosenstock
On Wed, 2007-12-05 at 08:18 -0800, Scott Weitzenkamp (sweitzen) wrote: I'll open a bug. All two port HCAs ? Are all of them the same 2 port PCIe model or are there others ? All type of 2 port PCIe HCAs (LionCub, LionMini, and Eagle). Can you provide: smpquery nodedesc smpquery

RE: [ewg] change in diags in OFED 1.3? (2 ports; only 1 supportedcurrently)

2007-12-05 Thread Scott Weitzenkamp (sweitzen)
I'll open a bug. All two port HCAs ? Are all of them the same 2 port PCIe model or are there others ? All type of 2 port PCIe HCAs (LionCub, LionMini, and Eagle). Can you provide: smpquery nodedesc smpquery nodeinfo and most importantly perfquery -de for a failed node/port ?

RE: [ewg] Re: [ofa-general] OFED 1.3 Beta release is available

2007-12-05 Thread Tang, Changqing
There are some other input structure changes such as ibv_qp_init_attr, if the qp_type is not IBV_QPT_XRC, the field xrc_domain is not touched, right ? Similar thing for struct ibv_send_wr xrc_remote_srq_num field. --CQ Tang -Original Message- From: Jack Morgenstein [mailto:[EMAIL

[ewg] [GIT PULL ofed-1.3] - RDMA/cxgb3 - fixes and 5.0 firmware support

2007-12-05 Thread Steve Wise
Vlad, please pull cxgb3 fixes for ofed-1.3 from: git://git.openfabrics.org/~swise/ofed-1.3 ofed_kernel These are cxgb3 bug fixes and PPC64 additions that we need for ofed-1.3. The patches are all accepted upstream and were posted here: http://www.spinics.net/lists/netdev/msg47492.html and

RE: [ewg] change in diags in OFED 1.3? (2 ports; only 1supportedcurrently)

2007-12-05 Thread Scott Weitzenkamp (sweitzen)
That's what I was afraid of and asked about on the list a while ago (about whether there was such a use case and there is) :-( Not sure exactly why this wasn't a problem prior to this change. When was the last time you tried this on a subnet which included one or more of these HCAs ? Did

Re: [ewg] Re: [ofa-general] OFED 1.3 Beta release is available

2007-12-05 Thread Jack Morgenstein
On Wednesday 05 December 2007 07:24, Roland Dreier wrote: I think the only alternative we have to preserve backwards compatibility is to leave struct ibv_context_ops alone and change the structure to: struct ibv_context { struct ibv_device *device; struct

Re: [ewg] Re: [ofa-general] OFED 1.3 Beta release is available

2007-12-05 Thread Roland Dreier
struct ibv_context { struct ibv_device *device; struct ibv_context_ops ops; int cmd_fd; int async_fd; int num_comp_vectors; pthread_mutex_t mutex;

[ewg] Re: [ofa-general] OFED 1.3 Beta release is available

2007-12-05 Thread Roland Dreier
I think in future we will have more such changes, why don't we take the pain now to make ops as a pointer and mark it as verbs 1.2 ? The problem is that undoubtedly the changes that require changing the ABI will require something more than just additional ops, so we'll end up

Re: [ewg] change in diags in OFED 1.3? (2 ports; only 1 supported currently)

2007-12-05 Thread Hal Rosenstock
On Wed, 2007-12-05 at 00:25 -0800, Scott Weitzenkamp (sweitzen) wrote: This seems new in OFED 1.3: [EMAIL PROTECTED] ~]# ibcheckerrors perfquery: iberror: failed: smp query nodeinfo: 2 ports; only 1 supported currently There was a thread on this starting on Oct 12 titled

[ewg] Please pull latest libehca

2007-12-05 Thread Stefan Roscher
Please pull for OFED 1.3 the following branch for libehca. git://git.openfabrics.org/~/scm/libehca.git branch: ofed_1_3 Thanks Stefan, ___ ewg mailing list ewg@lists.openfabrics.org http://lists.openfabrics.org/cgi-bin/mailman/listinfo/ewg

Re: [ewg] Re: [ofa-general] OFED 1.3 Beta release is available

2007-12-05 Thread Jack Morgenstein
On Wednesday 05 December 2007 02:40, Roland Dreier wrote: BTW, sifting through the OFED 1.3 libibverbs tree, I do see that the commit to add max_xrc_domains to struct ibv_device_attr did break things by adding the member in the middle of the structure (so that an app compiled against the old

[ewg] RE: [ofa-general] OFED 1.3 Beta release is available

2007-12-05 Thread Tang, Changqing
Roland: I think in future we will have more such changes, why don't we take the pain now to make ops as a pointer and mark it as verbs 1.2 ? --CQ -Original Message- From: Roland Dreier [mailto:[EMAIL PROTECTED] Sent: Tuesday, December 04, 2007 11:25 PM To: Tang, Changqing

[ewg] OFED-1.3-beta sdp issue

2007-12-05 Thread Stefan Roscher
Hi Jim, during the OFED-1.3-beta2 test on ppc64 systems with SLES10-SP1 I saw the following issue. I booted linux kernel 2.6.22 and 2.6.23 on SLES10-SP1 and netpipe sdp fails. with the following oops: REGS: c8ccf930 TRAP: 0700 Not tainted (2.6.23-ppc64) MSR: 80029032

Re: [ewg] Re: [ofa-general] OFED 1.3 Beta release is available

2007-12-05 Thread Jack Morgenstein
On Wednesday 05 December 2007 21:59, Tang, Changqing wrote: There are some other input structure changes such as ibv_qp_init_attr, if the qp_type is not IBV_QPT_XRC, the field xrc_domain is not touched, right ? Right. Similar thing for struct ibv_send_wr xrc_remote_srq_num field. Same