[ewg] to ewg

2008-07-23 Thread guthrey edward
Get the great discounts on popular software today !
All software is instantly available to download - No Need Wait!
ALL OUR SOFTWARES ON ALL EUROPEAN LANGUAGES - USA, English, France, Italy, 
Spanish, German and more!!!

Windows XP Pro With SP2 - $59.95
Adobe Acrobat Pro 8 - $69.95
Office 2003 Pro - $59.95
Adobe Photoshop CS2 - $79.95
AutoCAD 2007 - $149.95


Also we have so much soft for MACINTOSH!!!
Microsoft Office 2004 for MAC  $79.95
Adobe Acrobat 7 Professional for MAC  $59.95
Adobe Creative Suite 2 Premium for MAC  $229.95
Macromedia Dreamweaver 8 for MAC  $69.95

 - Visit our site:   www.avalwosoft[DOT]com
(copy this link and then replace [DOT] to .)

___
ewg mailing list
ewg@lists.openfabrics.org
http://lists.openfabrics.org/cgi-bin/mailman/listinfo/ewg


[ewg] delaying OFED 1.4 alpha release

2008-07-23 Thread Tziporet Koren

Hi,

We see problems with OFED 1.4 on RHEL4 up4
Therefore I delay the alpha release for tomorrow

Tziporet
___
ewg mailing list
ewg@lists.openfabrics.org
http://lists.openfabrics.org/cgi-bin/mailman/listinfo/ewg


Re: [ewg] perfquery error

2008-07-23 Thread Sasha Khapyorsky
Hi Hal,

On 12:37 Mon 21 Jul , Hal Rosenstock wrote:
  or directory)
  [EMAIL PROTECTED] ~]# perfquery
  ibpanic: [3926] madrpc_init: can't open UMAD port ((null):0): (No such file
  or directory)
  [EMAIL PROTECTED] ~]#
 
 This sounds like an additional aspect of the libibumad API issue
 introduced when some functionality related to this was eliminated. The
 previous fix related to OpenSM appears to not be the complete solution
 to these mixed configurations.

I think you are referring changes which were done in OpenSM ibumad vendor
layer, specifically commits 5cf395cb107ef76091d554cd4b42456dc53b38a2 and
36cfd8e6967d8a7aea74b9a180fac0275ef549dd and had nothing to do with
libibumad API.

Regarding to an issue itself. Steve, does something like this:


diff --git a/libibumad/src/umad.c b/libibumad/src/umad.c
index dcc7275..9010307 100644
--- a/libibumad/src/umad.c
+++ b/libibumad/src/umad.c
@@ -499,6 +499,19 @@ umad_done(void)
return 0;
 }
 
+static unsigned is_ib_type(char *ca_name)
+{
+   char dir_name[256];
+   unsigned type;
+
+   snprintf(dir_name, sizeof(dir_name), %s/%s, SYS_INFINIBAND, ca_name);
+
+   if (sys_read_uint(dir_name, SYS_NODE_TYPE, type)  0)
+   return 0;
+
+   return type = 1  type = 3 ? 1 : 0;
+}
+
 int
 umad_get_cas_names(char cas[][UMAD_CA_NAME_LEN], int max)
 {
@@ -512,7 +525,7 @@ umad_get_cas_names(char cas[][UMAD_CA_NAME_LEN], int max)
for (i = 0; i  n; i++) {
if (strcmp(namelist[i]-d_name, .) 
strcmp(namelist[i]-d_name, ..)) {
-   if (j  max)
+   if (j  max  is_ib_type(namelist[i]-d_name))
strncpy(cas[j++], namelist[i]-d_name,
UMAD_CA_NAME_LEN);
}


helps?

Sasha
___
ewg mailing list
ewg@lists.openfabrics.org
http://lists.openfabrics.org/cgi-bin/mailman/listinfo/ewg


Re: [ewg] Re: [ofa-general] [ANNOUNCE] management tarballs release

2008-07-23 Thread Sasha Khapyorsky
Hi Hal,

On 05:42 Thu 10 Jul , Hal Rosenstock wrote:
 
 Also, what about backward compatibility with apps built with the
 previous version of these libraries ?

What sort of compatibility problem can we expect?

Sasha
___
ewg mailing list
ewg@lists.openfabrics.org
http://lists.openfabrics.org/cgi-bin/mailman/listinfo/ewg


[ewg] Give freedom to your dreams

2008-07-23 Thread Jaime Chacon



Opening door to a world full of sensual delights!


Time to be healthier.

Here!




fachgebiet exploitage exhibitive
equanimity esimilarly fakombinat
fLturnacct epichordal expedients
euphausiid fBgetdents exchange's
___
ewg mailing list
ewg@lists.openfabrics.org
http://lists.openfabrics.org/cgi-bin/mailman/listinfo/ewg

Re: [ewg] perfquery error

2008-07-23 Thread Hal Rosenstock
Sasha,

On Wed, Jul 23, 2008 at 5:22 PM, Sasha Khapyorsky [EMAIL PROTECTED] wrote:
 Hi Hal,

 On 12:37 Mon 21 Jul , Hal Rosenstock wrote:
  or directory)
  [EMAIL PROTECTED] ~]# perfquery
  ibpanic: [3926] madrpc_init: can't open UMAD port ((null):0): (No such file
  or directory)
  [EMAIL PROTECTED] ~]#

 This sounds like an additional aspect of the libibumad API issue
 introduced when some functionality related to this was eliminated. The
 previous fix related to OpenSM appears to not be the complete solution
 to these mixed configurations.

 I think you are referring changes which were done in OpenSM ibumad vendor
 layer, specifically commits 5cf395cb107ef76091d554cd4b42456dc53b38a2 and
 36cfd8e6967d8a7aea74b9a180fac0275ef549dd and had nothing to do with
 libibumad API.

I was referring to the changes which eliminated index 0 being the
default interface. Was the elimination of the default interface not an
API change to libibumad ?

-- Hal

 Regarding to an issue itself. Steve, does something like this:


 diff --git a/libibumad/src/umad.c b/libibumad/src/umad.c
 index dcc7275..9010307 100644
 --- a/libibumad/src/umad.c
 +++ b/libibumad/src/umad.c
 @@ -499,6 +499,19 @@ umad_done(void)
return 0;
  }

 +static unsigned is_ib_type(char *ca_name)
 +{
 +   char dir_name[256];
 +   unsigned type;
 +
 +   snprintf(dir_name, sizeof(dir_name), %s/%s, SYS_INFINIBAND, 
 ca_name);
 +
 +   if (sys_read_uint(dir_name, SYS_NODE_TYPE, type)  0)
 +   return 0;
 +
 +   return type = 1  type = 3 ? 1 : 0;
 +}
 +
  int
  umad_get_cas_names(char cas[][UMAD_CA_NAME_LEN], int max)
  {
 @@ -512,7 +525,7 @@ umad_get_cas_names(char cas[][UMAD_CA_NAME_LEN], int max)
for (i = 0; i  n; i++) {
if (strcmp(namelist[i]-d_name, .) 
strcmp(namelist[i]-d_name, ..)) {
 -   if (j  max)
 +   if (j  max  
 is_ib_type(namelist[i]-d_name))
strncpy(cas[j++], namelist[i]-d_name,
UMAD_CA_NAME_LEN);
}


 helps?

 Sasha

___
ewg mailing list
ewg@lists.openfabrics.org
http://lists.openfabrics.org/cgi-bin/mailman/listinfo/ewg


Re: [ewg] Re: [ofa-general] [ANNOUNCE] management tarballs release

2008-07-23 Thread Hal Rosenstock
Sasha,

On Wed, Jul 23, 2008 at 7:55 PM, Sasha Khapyorsky [EMAIL PROTECTED] wrote:
 Hi Hal,

 On 05:42 Thu 10 Jul , Hal Rosenstock wrote:

 Also, what about backward compatibility with apps built with the
 previous version of these libraries ?

 What sort of compatibility problem can we expect?

I'm not entirely sure but the rules have been broken here for libibmad
as some APIs changed but the version wasn't updated. Are you saying
it's going to work with those changes if the APIs are used ?

-- Hal

 Sasha
 ___
 ewg mailing list
 ewg@lists.openfabrics.org
 http://lists.openfabrics.org/cgi-bin/mailman/listinfo/ewg

___
ewg mailing list
ewg@lists.openfabrics.org
http://lists.openfabrics.org/cgi-bin/mailman/listinfo/ewg