[ewg] *NO* teleconference today

2007-11-19 Thread Jeff Squyres

Note that there is *NO* EWG/OFED teleconference today.

This week's meeting is *TOMORROW* to accommodate those still traveling  
home / recovering from SC'07.  The teleconference is at the usual time  
tomorrow (noon US Eastern, 9am US Pacific, 7pm Israel).


I'll send out a reminder of the call details tomorrow morning.

--
Jeff Squyres
Cisco Systems

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


[ewg] [PATCH] ofed-1.3: Remove hvcall.h backport file for rhel-5.1

2007-11-19 Thread Stefan Roscher
This patch deletes the backport file hvcall.h for RHEL-5.1. 
The backport is no longer needed because RHEL-5.1 already contains the needed 
hvcalls.

regards Stefan

Signed-off-by: Stefan Roscher stefan.roscher at de.ibm.com
---

hvcall.h |   32 
1 file changed, 32 deletions(-)

diff -Nurp 
ofa_kernel-1.3_old/kernel_addons/backport/2.6.18-EL5.1/include/asm/hvcall.h 
ofa_kernel-1.3_new/kernel_addons/backport/2.6.18-EL5.1/include/asm/hvcall.h
--- ofa_kernel-1.3_old/kernel_addons/backport/2.6.18-EL5.1/include/asm/hvcall.h 
2007-11-01 08:11:21.0 -0400
+++ ofa_kernel-1.3_new/kernel_addons/backport/2.6.18-EL5.1/include/asm/hvcall.h 
1969-12-31 19:00:00.0 -0500
@@ -1,32 +0,0 @@
-#ifndef ASM_HVCALL_BACKPORT_2618_H
-#define ASM_HVCALL_BACKPORT_2618_H
-
-#include_next asm/hvcall.h
-
-#ifdef __KERNEL__
-
-#define PLPAR_HCALL9_BUFSIZE 9
-
-inline static long plpar_hcall9(unsigned long opcode,
-unsigned long *retbuf,
-unsigned long arg1, /* R4  */
-unsigned long arg2, /* R5  */
-unsigned long arg3, /* R6  */
-unsigned long arg4, /* R7  */
-unsigned long arg5, /* R8  */
-unsigned long arg6, /* R9  */
-unsigned long arg7, /* R10 */
-unsigned long arg8, /* R11 */
-unsigned long arg9  /* R12 */
-)
-{
-   return plpar_hcall_9arg_9ret(opcode,
-arg1, arg2, arg3, arg4, arg5,
-arg6, arg7, arg8, arg9,
-retbuf, retbuf[1], retbuf[2],
-retbuf[3], retbuf[4], retbuf[5],
-retbuf[6], retbuf[7], retbuf[8]);
-}
-
-#endif /* __KERNEL__ */
-#endif
___
ewg mailing list
ewg@lists.openfabrics.org
http://lists.openfabrics.org/cgi-bin/mailman/listinfo/ewg


[ewg] [PATCH ofed-1.3] ehca: change kmem_cache_alloc() call to atomic

2007-11-19 Thread Stefan Roscher
This patch fixes a migth_sleep kernel warning with using sdp + ehca device 
driver.
We have to change the kmem_cache_alloc() attribute from GFP_KERNEL to 
GFP_ATOMIC because sdp is running within a spinlock
during ah allocation.

regards Stefan

Signed-off-by: Stefan Roscher stefan.roscher at de.ibm.com
---

ehca_av.c |2 +-
1 file changed, 1 insertion(+), 1 deletion(-)


diff -Nurp ofa_kernel-1.3_old/drivers/infiniband/hw/ehca/ehca_av.c 
ofa_kernel-1.3_new/drivers/infiniband/hw/ehca/ehca_av.c
--- ofa_kernel-1.3_old/drivers/infiniband/hw/ehca/ehca_av.c 2007-11-19 
14:32:35.0 +0100
+++ ofa_kernel-1.3_new/drivers/infiniband/hw/ehca/ehca_av.c 2007-11-19 
14:40:16.0 +0100
@@ -57,7 +57,7 @@ struct ib_ah *ehca_create_ah(struct ib_p
struct ehca_shca *shca = container_of(pd-device, struct ehca_shca,
  ib_device);
 
-   av = kmem_cache_alloc(av_cache, GFP_KERNEL);
+   av = kmem_cache_alloc(av_cache, GFP_ATOMIC);
if (!av) {
ehca_err(pd-device, Out of memory pd=%p ah_attr=%p,
 pd, ah_attr);

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


[ewg] Re: [Fwd: [ofa-general] ofa_1_3_kernel 20071118-0200 daily build status]

2007-11-19 Thread Erez Zilber

Vladimir Sokolovsky wrote:

Hi Erez,
Are you going to prepare backport patches for ISER?

Regards,
Vladimir
  

Vlad,

Please pull from git.openfabrics.org/~erezz/linux-2.6.git (I'm currently 
pushing it)


It should fix the compilation problems in open-iscsi  iSER.

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


[ewg] Re: [ANNOUNCE] management tarballs release

2007-11-19 Thread Sasha Khapyorsky
Hi,

There is a new release of the management (OpenSM and infiniband
diagnostics) tarballs available in:

http://www.openfabrics.org/downloads/management/

md5sum:

25b9491f90c7e851f5bafd556bcac5f6  libibcommon-1.0.6.tar.gz
cec79c655914b83d13457d9a4096ef2b  libibumad-1.1.5.tar.gz
169ddc65af6d1cfe8a92988ce7a60627  libibmad-1.1.4.tar.gz
f8abde643dab46ce9b1dfec2fa644ab5  infiniband-diags-1.3.4.tar.gz
30f2260c4fe2ad0737d644e737b0d3bf  opensm-3.1.7.tar.gz

(libibcommon was not changed since last release).

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


[ewg] Re: [GIT PULL] ~sashak/management.git

2007-11-19 Thread Sasha Khapyorsky
Hi Vlad,

Please pull recent ofed_1_3 branch of ~sashak/management.git.

The changes are:

Hal Rosenstock (1):
  libibmad/dump.c: Support link speed and width vendor extensions

Ira Weiny (7):
  Break out a CONF_DIR variable in configure to base other config files 
on.
  Add option to change the default opensm dir under sysconfdir as the 
config dir
  Add the default in the with-node-name-map help string
  opensm/configure.in: remove unecessary comment
  Add --with-qos-policy-conf to configure
  Add --with-partitions-conf to configure
  opensm/config/osmvsel.m4: Convert help strings to AC_HELP_STRING

Rolf Manderscheid (2):
  opensm: support multiple routers in a subnet
  PATCH diags: add saquery option to get path records by GIDs

Sasha Khapyorsky (30):
  opensm: fix PortInfo update issues.
  opensm: eliminate some unneeded PortInfo Set requests
  opensm/osm_link_mgr: use return status when PortInfo is updated
  opensm: update default config names in man pages and doc
  opensm/scripts/opensm.conf: fix log file name in comment
  opensm: merge redhat-opensm.conf and opensm.conf
  opensm/main.c: trivial cosmetic improvements
  opensm/man: break long lines, remove utf-8 characters
  opensm/doc: remove utf-8 characters from text files
  infiniband-diags: remove utf-8 characters from sources and man pages
  opensm/man/opensm.8: remove utf-8 characters
  libibumad: fix NULL pointer referencing
  opensm/libvendor: remove not used umad_ca field
  opensm/libvendor: fix umad_port leak
  opensm/vendor: handle guid = 0 with osm_vendor_bind()
  opensm/libvendor: make statics
  libvendor: osm_vendor_get_all_port_attr() rework
  opensm/main: merge gen2 code in get_port_guid()
  opensm/osmtest: adopt to osm_vendor_get_all_port_attr() changes
  opensm: no interactive games in daemon mode
  infiniband-diags/ibtracert: print lids in decimal form
  opensm/osmtest: update port chooser
  opensm/libvendor: remove __osmv_get_lid_and_sm_lid_by_port_guid()
  opensm/vendor: be sure that node has IB type
  opensm/configure: add OPENSM_CONFIG_DIR variable
  opensm: use OPENSM_CONFIG_DIR for prefix-routes file definition
  libibumad: version 1.1.5
  libbmad: version 1.1.4
  opensm: version 3.1.7
  infiniband-diags: version 1.3.4

Yevgeny Kliteynik (10):
  osm: fixing memory leak in QoS policy
  osm: fixing memory leak in node description
  osm: remove unused 'is_ipoib' parameter when adding mcast group
  osm: use OSM_DEFAULT_PARTITION_CONFIG_FILE instead of hard-coded string
  osm: moving call to QoS policy file parser to osm_qos_setup()
  osm: cosmetics - removing obsolete comment
  osm: improving error reporting function of the QoS parser
  osm: broken logic when scanning subnet for PIR request
  osm: Using new format of QoS parser error function
  osm: QoS - adding simplified syntax for policy definition


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


[ewg] I'm not here this week

2007-11-19 Thread Sasha Khapyorsky
Hi,

I'm traveling this week (starting from today), and likely will be
off-line most of the time. Hope nothing urgent will happen in those
days.

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


[ewg] [GIT PULL] ofed-1.3 - cxgb3 rh5.1 backport

2007-11-19 Thread Steve Wise

Vlad,

I've added a RH5.1 backport for cxgb3.  Please pull from:

git://git.openfabrics.org/~swise/ofed-1.3 stevo

Thanks,

Steve.




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


[ewg] MVAPICH2 1.0.1 SRPM Available

2007-11-19 Thread Jonathan Perkins

Vlad:
Hi, I recently uploaded a new SRPM for MVAPICH2 to the openfabrics
server.  This is located in ~perkinjo/ofed_1_3/ and is identified by the
latest.txt file.

--
Jonathan Perkins
http://www.cse.ohio-state.edu/~perkinjo

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