RE: [openib-general] [RFC] [PATCH] mad: Add RMPP support for additionalmanagement classes

2006-03-17 Thread Hal Rosenstock
On Thu, 2006-03-16 at 23:09, Sean Hefty wrote: /** + * ib_get_rmpp_data_offset - returns the data offset for a given + * management class. + * @mgmt_class: management class + * + * This routine returns the data offset in the MAD for the management + * class requested. + */ +int

[openib-general] [RFC] [PATCHv2] mad: Add RMPP support for additional management classes which support it

2006-03-17 Thread Hal Rosenstock
mad: Add RMPP support for additional management classes which support it Signed-off-by: Hal Rosenstock [EMAIL PROTECTED] Index: include/rdma/ib_mad.h === --- include/rdma/ib_mad.h (revision 5874) +++ include/rdma/ib_mad.h

[openib-general] Re: PharamacICy news

2006-03-17 Thread Vitalija Dukeman
p C w i l a o I t i k s $ l 99 (1 dy 0 q p v i m l r l k s u ) i V f a m I a i c u a m $10 h 5 (30 YB h p n i q l t l t s p ) s V k i f a o g y r x a $ z 69 ( tv 10 k p m i b l s l p s m ) M Jy any other, Visi NQ t our si FA te and Sav Rb e ove fa r 5 96

[openib-general] Re: neigh destructor work-around

2006-03-17 Thread Michael S. Tsirkin
Quoting r. Roland Dreier [EMAIL PROTECTED]: Subject: Re: neigh destructor work-around OK, I applied this to svn. I changed +static spinlock_t ipoib_all_neigh_list_lock; and + spin_lock_init(ipoib_all_neigh_list_lock); to just static

Re: [openib-general] oops with ipath and mvapich (branch 1.0)

2006-03-17 Thread Bryan O'Sullivan
On Thu, 2006-03-16 at 17:51 -0800, Ira Weiny wrote: I have pulled branch 1.0 and we just got in some ipath hardware. Can you let us know what kernel you're using, and what (if any) patches you have applied? Also, what specific command caused the crash, and how did you configure mvapich? When

[openib-general] RE: [PATCH2] uDAPL/uDAT autotools - Package for udat, udaplcma, udaplscm

2006-03-17 Thread James Lentini
On Thu, 16 Mar 2006, Arlin Davis wrote: James and Bryan, Here is an updated patch with your recommended changes. Also added Changelog, COPYING, NEWS, AUTHORS. -arlin This looks excellent Arlin. I think it is essentailly ready to go. I have a few minor questions/commnets: I'll add an

Re: [openib-general] Re: [PATCH] uDAPL/uDAT autotools - Package for udat, udaplcma, udaplscm

2006-03-17 Thread James Lentini
On Thu, 16 Mar 2006, Arlin Davis wrote: Index: dapl/udapl/dapl_init.c === --- dapl/udapl/dapl_init.c(revision 5854) +++ dapl/udapl/dapl_init.c(working copy) @@ -66,8 +66,7 @@ * * Return

RE: [openib-general] [RFC] [PATCHv2] mad: Add RMPP support foradditional management classes which support it

2006-03-17 Thread Sean Hefty
-static int data_offset(u8 mgmt_class) +int ib_get_rmpp_data_offset(u8 mgmt_class) { if (mgmt_class == IB_MGMT_CLASS_SUBN_ADM) return IB_MGMT_SA_HDR; + else if ((mgmt_class == IB_MGMT_CLASS_DEVICE_MGMT) || + (mgmt_class == IB_MGMT_CLASS_DEVICE_ADM) || +

RE: [openib-general] [RFC] [PATCHv2] mad: Add RMPP support foradditional management classes which support it

2006-03-17 Thread Hal Rosenstock
On Fri, 2006-03-17 at 13:00, Sean Hefty wrote: -static int data_offset(u8 mgmt_class) +int ib_get_rmpp_data_offset(u8 mgmt_class) { if (mgmt_class == IB_MGMT_CLASS_SUBN_ADM) return IB_MGMT_SA_HDR; +else if ((mgmt_class == IB_MGMT_CLASS_DEVICE_MGMT) || +

Re: [openib-general] oops with ipath and mvapich (branch 1.0)

2006-03-17 Thread Matthew Koop
On Fri, 17 Mar 2006, Bryan O'Sullivan wrote: In our own testing, we were unable to use the SRQ support via the ipath driver. Perhaps someone from Pathscale could comment on the stability of SRQ support? Our SRQ code should be stable; we've no customer-reported bugs open against it. If

Re: [openib-general] oops with ipath and mvapich (branch 1.0)

2006-03-17 Thread ralphc
On Fri, 17 Mar 2006, Bryan O'Sullivan wrote: In our own testing, we were unable to use the SRQ support via the ipath driver. Perhaps someone from Pathscale could comment on the stability of SRQ support? Our SRQ code should be stable; we've no customer-reported bugs open against it.

Re: [openib-general] Announcing the release of MVAPICH 0.9.7 with support for Gen2, SRQ with Flow Control, Fault Tolerance and aRO

2006-03-17 Thread Dhabaleswar Panda
Roland, Dhabaleswar Starting with this 0.9.7 release, MVAPICH team is Dhabaleswar also pleased to announce the availability of the code Dhabaleswar base through anonymous SVN access. ... Dhabaleswar A stripped down version of this release is also Dhabaleswar available

Re: [openib-general] RE: [PATCH2] uDAPL/uDAT autotools - Package for udat, udaplcma, udaplscm

2006-03-17 Thread Arlin Davis
James Lentini wrote: On Thu, 16 Mar 2006, Arlin Davis wrote: This looks excellent Arlin. I think it is essentailly ready to go. I have a few minor questions/commnets: I'll add an empty directory called config to the root of the dapl tree. perfect. Index: AUTHORS

[openib-general] testing amso1100

2006-03-17 Thread Pete Wyckoff
I'm trying to get your iwarp branch working with our Ammasso NICs. Starting from a stock linux-2.6.16-rc6-git9 and with svn rev 5878, I replaced two kernel dirs with links into svn: linux/include/rdma - svn/gen2/branches/iwarp/src/linux-kernel/infiniband/include/rdma

[openib-general] [PATCH] CQ rearm race in IPoIB

2006-03-17 Thread ralphc
There is a race in IPoIB where it rearms the CQ by calling ib_req_notify_cq() followed by ib_poll_cq(). The loop can call ib_poll_cq() multiple times if new packets arrive but then fail to rearm the CQ properly. Signed-off-by: Ralph Campbell [EMAIL PROTECTED] Index:

Re: [openib-general] RE: [PATCH2] uDAPL/uDAT autotools - Package for udat, udaplcma, udaplscm

2006-03-17 Thread James Lentini
On Fri, 17 Mar 2006, Arlin Davis wrote: +dnl Checks for libraries +if test $disable_libcheck != yes +then +AC_CHECK_LIB(ibverbs, ibv_get_device_list, [], +AC_MSG_ERROR([ibv_get_device_list() not found. libdapl requires libibverbs.])) +fi Should we throw in

[openib-general] Re: [PATCH3] uDAPL/uDAT autotools - Package for udat, udaplcma, udaplscm

2006-03-17 Thread James Lentini
On Fri, 17 Mar 2006, Davis, Arlin R wrote: Here is a patch with all the latest changes, including an updated dat.conf. Committed in the trunk and 1.0 branch in revision 5880. ___ openib-general mailing list openib-general@openib.org

[openib-general] uDAPL autotools and RPM .spec file

2006-03-17 Thread James Lentini
Bryan, uDAPL now has autotools support and an RPM .spec file in the 1.0 branch. Do you need anything else to start packaging it for 1.0? james -- Forwarded message -- Date: Fri, 17 Mar 2006 16:58:38 -0500 (EST) From: James Lentini [EMAIL PROTECTED] To: Davis, Arlin R [EMAIL

Re: [openib-general] [PATCH] CQ rearm race in IPoIB

2006-03-17 Thread Roland Dreier
ralphc There is a race in IPoIB where it rearms the CQ by calling ralphc ib_req_notify_cq() followed by ib_poll_cq(). The loop can ralphc call ib_poll_cq() multiple times if new packets arrive but ralphc then fail to rearm the CQ properly. I don't understand the race you're

Re: [openib-general] [PATCH] CQ rearm race in IPoIB

2006-03-17 Thread ralphc
I'm trying to fix a problem I'm seeing with IPoIB somehow delaying processing of packets and sometimes timing out for fragment reassembly. I was looking at this bit of code and remembering that the IB spec. says the rearm isn't reliable unless you call poll afterwards and verify that no new

Re: [openib-general] [PATCH] CQ rearm race in IPoIB

2006-03-17 Thread Roland Dreier
ralphc I'm trying to fix a problem I'm seeing with IPoIB somehow ralphc delaying processing of packets and sometimes timing out ralphc for fragment reassembly. I was looking at this bit of ralphc code and remembering that the IB spec. says the rearm ralphc isn't reliable

Re: [openib-general] oops with ipath and mvapich (branch 1.0)

2006-03-17 Thread Sayantan Sur
Hello Ralph, Thanks for sharing the info. Then I built svn/gen2/trunk/src/userspace/mpi/mvapich-gen2. I was able to get osu_latency osu_bw to run using: mpirun_rsh -np 2 -debug -hostfile ./mf ~/mvapich1/bin/osu_latency but when I run it without -debug, I get a Connection refused error

Re: [openib-general] oops with ipath and mvapich (branch 1.0)

2006-03-17 Thread Bryan O'Sullivan
On Fri, 2006-03-17 at 14:32 -0500, Matthew Koop wrote: Thanks. We will be sending a report later with the issues we are seeing. OK, thanks. We're currently testing on the 1.0 Branch from the SVN, is this the version we should test or the one from the Pathscale website? Either one should be

Re: [openib-general] oops with ipath and mvapich (branch 1.0)

2006-03-17 Thread ralphc
Hello Ralph, Thanks for sharing the info. Then I built svn/gen2/trunk/src/userspace/mpi/mvapich-gen2. I was able to get osu_latency osu_bw to run using: mpirun_rsh -np 2 -debug -hostfile ./mf ~/mvapich1/bin/osu_latency but when I run it without -debug, I get a Connection refused error