[OMPI devel] not merging in cpc3 branch tonight

2008-04-24 Thread Jeff Squyres
Pasha was still seeing some MTT intel test failures on the cpc3 branch, so we won't be merging it into the trunk tonight. -- Jeff Squyres Cisco Systems

Re: [OMPI devel] Merging in the CPC work

2008-04-24 Thread Jeff Squyres
I did this in https://svn.open-mpi.org/trac/ompi/changeset/18279; the message is now gone if IBCM is not installed on the host. If you care: I actually used open() instead of stat(), because that way I can also ensure that the current user is able to both read and write to the device (which

Re: [OMPI devel] Merging in the CPC work

2008-04-24 Thread Jeff Squyres (jsquyres)
...actually, thinking about this a bit more, it might be easy to try to stat /dev/infiniband/ucmX before calling ib_cm_open_device. I'll check into it this afternoon. -jms Sent from my PDA. No type good. -Original Message- From: Jeff Squyres (jsquyres) Sent: Thursday, April 24, 2

Re: [OMPI devel] Merging in the CPC work

2008-04-24 Thread Jeff Squyres (jsquyres)
Its unavoidable in the current rev of libibcm :( - sean hefty tells me that he'll remove that message in the next release. For the time being, mayhe the right solution in ompi is to not try to use ibcm unless its specifically requested. :( -jms Sent from my PDA. No type good. -Original

Re: [OMPI devel] Merging in the CPC work

2008-04-24 Thread Pavel Shamis (Pasha)
The trivial tests Pass and now I'm running full testing. In the NOT_XRC tests i got: libibcm: unable to open /dev/infiniband/ucm0 libibcm: couldn't read ABI version But the test PASS successfully. So as I understood it use OOB. Can we prevent the message somehow ? Jeff Squyres wrote: Thanks!

Re: [OMPI devel] Merging in the CPC work

2008-04-24 Thread Jeff Squyres
Thanks! That's a result of some [helpful] error messages and handling that I added yesterday when ibcm is not configured on the host. Fixed in r18273. On Apr 24, 2008, at 8:22 AM, Pavel Shamis (Pasha) wrote: The patch below resolves the segfault : -- btl_openib_connect_ibcm.c.orig 20

Re: [OMPI devel] Merging in the CPC work

2008-04-24 Thread Pavel Shamis (Pasha)
The patch below resolves the segfault : -- btl_openib_connect_ibcm.c.orig 2008-04-24 15:14:28.500676000 +0300 +++ btl_openib_connect_ibcm.c 2008-04-24 15:15:08.961168000 +0300 @@ -328,7 +328,7 @@ { int rc; modex_msg_t *msg; -ibcm_module_t *m; +ibcm_module_t *m = NULL; o

Re: [OMPI devel] Merging in the CPC work

2008-04-24 Thread Jeff Squyres
I had a linker error with the rdmacm library yesterday that I fixed later, sorry. Could you try it again? You'll need to svn up, re-autogen, etc. It should be obvious whether I fixed it -- even trivial apps will work or not work. Thanks. On Apr 24, 2008, at 6:24 AM, Gleb Natapov wrote

Re: [OMPI devel] Merging in the CPC work

2008-04-24 Thread Gleb Natapov
On Thu, Apr 24, 2008 at 11:50:10AM +0300, Pavel Shamis (Pasha) wrote: > Jeff, > All my tests fail. > XRC disabled tests failed with: > mtt/installs/Zq_9/install/lib/openmpi/mca_btl_openib.so: undefined > symbol: rdma_create_event_channel > XRC enabled failed with segfault , I will take a look late

Re: [OMPI devel] Merging in the CPC work

2008-04-24 Thread Pavel Shamis (Pasha)
Jeff, All my tests fail. XRC disabled tests failed with: mtt/installs/Zq_9/install/lib/openmpi/mca_btl_openib.so: undefined symbol: rdma_create_event_channel XRC enabled failed with segfault , I will take a look later today. Pasha Jeff Squyres wrote: As we discussed yesterday, I have started t