]> git.openfabrics.org - ~shefty/rdma-win.git/log
~shefty/rdma-win.git
14 years agolibrdmacm: fix race in ucma_init()
shefty [Wed, 26 Aug 2009 16:45:53 +0000 (16:45 +0000)]
librdmacm: fix race in ucma_init()

There's a potential race with ucma_init() and calls that check whether
the library is ready for use.  For example, in rdma_create_id, this
check is performed:

hr = cma_dev_cnt ? 0 : ucma_init();
if (hr) {
return hr;
}

Since the check for cma_dev_cnt is outside of any synchronization, if it
is non-zeroy, then the code will assume that initialization is complete.
However, ucma_init() can set cma_dev_cnt to non-zeroy before it has finished
executing.  The full impact of this race is unknown, but it can't be good.
In the worst case, the application may crash.

Fix this by ensuring that all initialization is complete before cma_dev_cnt
is incremented.  Note that ucma_init() provides synchronization to protect
against duplicate threads handling init.  The cma_dev_cnt check is used to
avoid synchronization on multiple calls into the library after initialization.

Signed-off-by: Sean Hefty <sean.hefty@intel.com>
git-svn-id: svn://openib.tc.cornell.edu/gen1@2383 ad392aa1-c5ef-ae45-8dd8-e69d62a5ef86

14 years agoofed libs: prevent double initialization of critical section
shefty [Wed, 26 Aug 2009 16:44:24 +0000 (16:44 +0000)]
ofed libs: prevent double initialization of critical section

DllMain is called multiple times for a given process.  Prevent double
initialization of critical sections by only initializing it during process
attach.  This avoids corrupting the critical section while it may be in use.

Signed-off-by: Sean Hefty <sean.hefty@intel.com>
git-svn-id: svn://openib.tc.cornell.edu/gen1@2382 ad392aa1-c5ef-ae45-8dd8-e69d62a5ef86

14 years ago[WinOF] RC4 staging.
stansmith [Mon, 24 Aug 2009 23:36:48 +0000 (23:36 +0000)]
[WinOF] RC4 staging.

git-svn-id: svn://openib.tc.cornell.edu/gen1@2381 ad392aa1-c5ef-ae45-8dd8-e69d62a5ef86

14 years ago[LIBRDMACM] Fix a potential race with ucma_init() and calls that check whether the...
stansmith [Mon, 24 Aug 2009 23:25:50 +0000 (23:25 +0000)]
[LIBRDMACM] Fix a potential race with ucma_init() and calls that check whether the library is ready for use.

git-svn-id: svn://openib.tc.cornell.edu/gen1@2380 ad392aa1-c5ef-ae45-8dd8-e69d62a5ef86

14 years ago[WinOF] OFA Digital-ID expired 8/20/09, added new OFA cert signature so the 'new...
stansmith [Fri, 21 Aug 2009 17:41:36 +0000 (17:41 +0000)]
[WinOF] OFA Digital-ID expired 8/20/09, added new OFA cert signature so the 'new' cert can be added to compute nodes cert store.

git-svn-id: svn://openib.tc.cornell.edu/gen1@2379 ad392aa1-c5ef-ae45-8dd8-e69d62a5ef86

14 years agowinverbs: update to trunk svn 2370
shefty [Thu, 20 Aug 2009 18:47:29 +0000 (18:47 +0000)]
winverbs: update to trunk svn 2370

git-svn-id: svn://openib.tc.cornell.edu/gen1@2378 ad392aa1-c5ef-ae45-8dd8-e69d62a5ef86

14 years agoib/core: report active width with port attributes.
shefty [Thu, 20 Aug 2009 18:43:13 +0000 (18:43 +0000)]
ib/core: report active width with port attributes.

git-svn-id: svn://openib.tc.cornell.edu/gen1@2377 ad392aa1-c5ef-ae45-8dd8-e69d62a5ef86

14 years agoetc/comp_channel: add support for 'select' type operations
shefty [Thu, 20 Aug 2009 18:42:14 +0000 (18:42 +0000)]
etc/comp_channel: add support for 'select' type operations

Support more generic fd 'select' type operations against completion channels.

Signed-off-by: Sean Hefty <sean.hefty@intel.com>
git-svn-id: svn://openib.tc.cornell.edu/gen1@2376 ad392aa1-c5ef-ae45-8dd8-e69d62a5ef86

14 years agoetc/inet: do not define inet_ntop and inet_pton on 2008 and beyond
shefty [Thu, 20 Aug 2009 18:40:03 +0000 (18:40 +0000)]
etc/inet: do not define inet_ntop and inet_pton on 2008 and beyond

Server 2008 and beyond provide implementations of inet_pton and inte_ntop.

Signed-off-by: Sean Hefty <sean.hefty@intel.com>
git-svn-id: svn://openib.tc.cornell.edu/gen1@2375 ad392aa1-c5ef-ae45-8dd8-e69d62a5ef86

14 years agoibat: allow opening file for shared access
shefty [Thu, 20 Aug 2009 18:38:20 +0000 (18:38 +0000)]
ibat: allow opening file for shared access

git-svn-id: svn://openib.tc.cornell.edu/gen1@2374 ad392aa1-c5ef-ae45-8dd8-e69d62a5ef86

14 years ago[WinOF] RC4
stansmith [Thu, 20 Aug 2009 17:00:39 +0000 (17:00 +0000)]
[WinOF] RC4

git-svn-id: svn://openib.tc.cornell.edu/gen1@2373 ad392aa1-c5ef-ae45-8dd8-e69d62a5ef86

14 years ago[DAPL2] completion channel refactoring fixes.
stansmith [Thu, 20 Aug 2009 00:15:58 +0000 (00:15 +0000)]
[DAPL2] completion channel refactoring fixes.

git-svn-id: svn://openib.tc.cornell.edu/gen1@2372 ad392aa1-c5ef-ae45-8dd8-e69d62a5ef86

14 years ago[DAPL2] yield the processor as the Windows thread scheduler will starve other threads...
stansmith [Thu, 20 Aug 2009 00:14:21 +0000 (00:14 +0000)]
[DAPL2] yield the processor as the Windows thread scheduler will starve other threads unlike the Linux scheduler.

git-svn-id: svn://openib.tc.cornell.edu/gen1@2371 ad392aa1-c5ef-ae45-8dd8-e69d62a5ef86

14 years ago[WIX] update usage instructions to reflect WinOF is now under Trunk\ and no longer...
stansmith [Wed, 19 Aug 2009 21:49:50 +0000 (21:49 +0000)]
[WIX] update usage instructions to reflect WinOF is now under Trunk\ and no longer under branches\ . Include win7\x64\wof.wxs as I missed it in the last commit.

git-svn-id: svn://openib.tc.cornell.edu/gen1@2370 ad392aa1-c5ef-ae45-8dd8-e69d62a5ef86

14 years ago[WIX] added comment indicating installer was for Server 2008 R2 also.
stansmith [Wed, 19 Aug 2009 21:46:16 +0000 (21:46 +0000)]
[WIX] added comment indicating installer was for Server 2008 R2 also.

git-svn-id: svn://openib.tc.cornell.edu/gen1@2369 ad392aa1-c5ef-ae45-8dd8-e69d62a5ef86

14 years ago[DAPL2] %ERRORLEVEL% inside a for loop does not evaluate as expected; change to ...
stansmith [Wed, 19 Aug 2009 21:44:40 +0000 (21:44 +0000)]
[DAPL2] %ERRORLEVEL% inside a for loop does not evaluate as expected; change to !ERRORLEVEL!

git-svn-id: svn://openib.tc.cornell.edu/gen1@2368 ad392aa1-c5ef-ae45-8dd8-e69d62a5ef86

14 years ago[DOCS] Update DAPL provider text w.r.t. names in DAT.conf file.
stansmith [Wed, 19 Aug 2009 21:41:48 +0000 (21:41 +0000)]
[DOCS] Update DAPL provider text w.r.t. names in DAT.conf file.

git-svn-id: svn://openib.tc.cornell.edu/gen1@2367 ad392aa1-c5ef-ae45-8dd8-e69d62a5ef86

14 years agoib/port_attr: report active width as part of port attributes
shefty [Tue, 18 Aug 2009 19:22:47 +0000 (19:22 +0000)]
ib/port_attr: report active width as part of port attributes

Return the active width in the port attributes reported by the HCA.
Because the kernel and user space share the same source
files, to avoid breaking the ABI, rename link_width_supported
field to active_width and use that field to return the value.
link_width_supported is currently uninitialized and in the
svn tree unused, so repurposing the field should have minimal
impact.  However, this change will break the API.
Applications that reference the link_width_supported field
from struct _ib_port_attr will require a minor update if recompiled.

Update winverbs to report this value and fill in other
missing fields from the port attribute structure.  This fix
allows reporting the correct values through the libibverbs
port and ibv_devinfo example utility.

Signed-off-by: Sean Hefty <sean.hefty@intel.com>
git-svn-id: svn://openib.tc.cornell.edu/gen1@2366 ad392aa1-c5ef-ae45-8dd8-e69d62a5ef86

14 years ago[ipoib 6] Updated driver to the latest changes.
tzachid [Tue, 18 Aug 2009 14:47:56 +0000 (14:47 +0000)]
[ipoib 6] Updated driver to the latest changes.

git-svn-id: svn://openib.tc.cornell.edu/gen1@2365 ad392aa1-c5ef-ae45-8dd8-e69d62a5ef86

14 years ago[IPoIB] IPoIB PXE boot support: Clear remainder of chaddr
stansmith [Mon, 17 Aug 2009 23:17:41 +0000 (23:17 +0000)]
[IPoIB] IPoIB PXE boot support: Clear remainder of chaddr

    The IPoIB PXE boot firmware (gPXE) now sends the 8-byte port GUID in
    the DHCP chaddr field.  WinOF replaces the first 6 bytes of chaddr
    with the Ethernet-style MAC address, but leaves the remainder
    untouched.  This results in trailing garbage after the Ethernet-style
    MAC in the modified chaddr.

    Fix by explicitly zeroing the remainder of chaddr.

Signed-off-by: Michael Brown <mcb30@etherboot.org>
git-svn-id: svn://openib.tc.cornell.edu/gen1@2364 ad392aa1-c5ef-ae45-8dd8-e69d62a5ef86

14 years ago[IBAT] allow simultaneous IBAT device access from user mode by adding RW sharing...
stansmith [Mon, 17 Aug 2009 23:11:00 +0000 (23:11 +0000)]
[IBAT] allow simultaneous IBAT device access from user mode by adding RW sharing attributes to CreateFileW() call. signed off by stan.smith@intel.com

git-svn-id: svn://openib.tc.cornell.edu/gen1@2363 ad392aa1-c5ef-ae45-8dd8-e69d62a5ef86

14 years ago[LIBRDMACM] retry IBAT call on E_PENDING return. Signed off by Sean.Hefty@intel.com...
stansmith [Mon, 17 Aug 2009 23:06:55 +0000 (23:06 +0000)]
[LIBRDMACM] retry IBAT call on E_PENDING return. Signed off by Sean.Hefty@intel.com & stan.smith@intel.com

git-svn-id: svn://openib.tc.cornell.edu/gen1@2362 ad392aa1-c5ef-ae45-8dd8-e69d62a5ef86

14 years ago[MLX4] on catastrophic error, dump error buffer before reset. [winof: 2358]
leonidk [Sun, 16 Aug 2009 14:26:00 +0000 (14:26 +0000)]
[MLX4] on catastrophic error, dump error buffer before reset. [winof: 2358]

git-svn-id: svn://openib.tc.cornell.edu/gen1@2361 ad392aa1-c5ef-ae45-8dd8-e69d62a5ef86

14 years ago[MLX4] bug fix in error flow: doesn't return error on allocation failure. [winof...
leonidk [Sun, 16 Aug 2009 14:25:36 +0000 (14:25 +0000)]
[MLX4] bug fix in error flow: doesn't return error on allocation failure. [winof: 2356]

git-svn-id: svn://openib.tc.cornell.edu/gen1@2360 ad392aa1-c5ef-ae45-8dd8-e69d62a5ef86

14 years ago[IBAL] fix to 2226. cause an asynchronic event to be handled immediately (and not...
leonidk [Sun, 16 Aug 2009 14:23:48 +0000 (14:23 +0000)]
[IBAL] fix to 2226. cause an asynchronic event to be handled immediately (and not after SMI_POLL_INTERVAL, which is 20 secs) [mlnx: 4651]

git-svn-id: svn://openib.tc.cornell.edu/gen1@2359 ad392aa1-c5ef-ae45-8dd8-e69d62a5ef86

14 years ago[MLX4] on catastrophic error, dump error buffer before reset. [mlnx: 4636]
leonidk [Sun, 16 Aug 2009 14:17:29 +0000 (14:17 +0000)]
[MLX4] on catastrophic error, dump error buffer before reset. [mlnx: 4636]

git-svn-id: svn://openib.tc.cornell.edu/gen1@2358 ad392aa1-c5ef-ae45-8dd8-e69d62a5ef86

14 years ago[MLX4] added debug prints in case of errors. [mlnx: 4664]
leonidk [Sun, 16 Aug 2009 14:12:31 +0000 (14:12 +0000)]
[MLX4] added debug prints in case of errors. [mlnx: 4664]

git-svn-id: svn://openib.tc.cornell.edu/gen1@2357 ad392aa1-c5ef-ae45-8dd8-e69d62a5ef86

14 years ago[MLX4] bug fix in error flow: doesn't return error on allocation failure. [mlnx:...
leonidk [Sun, 16 Aug 2009 14:12:09 +0000 (14:12 +0000)]
[MLX4] bug fix in error flow: doesn't return error on allocation failure. [mlnx: 4663]

git-svn-id: svn://openib.tc.cornell.edu/gen1@2356 ad392aa1-c5ef-ae45-8dd8-e69d62a5ef86

14 years ago[IBAL] fix to 2226. cause an asynchronic event to be handled immediately (and not...
leonidk [Sun, 16 Aug 2009 14:06:23 +0000 (14:06 +0000)]
[IBAL] fix to 2226. cause an asynchronic event to be handled immediately (and not after SMI_POLL_INTERVAL, which is 20 secs) [mlnx: 4651]

git-svn-id: svn://openib.tc.cornell.edu/gen1@2355 ad392aa1-c5ef-ae45-8dd8-e69d62a5ef86

14 years ago[MLX4] added support for NOP operation. [mlnx: 4579]
leonidk [Sun, 16 Aug 2009 13:58:05 +0000 (13:58 +0000)]
[MLX4] added support for NOP operation. [mlnx: 4579]

One can now post WQE with WR_NOP operation just to get interrupt on completion.

git-svn-id: svn://openib.tc.cornell.edu/gen1@2354 ad392aa1-c5ef-ae45-8dd8-e69d62a5ef86

14 years ago[ND provider] This patch is a fix to 2333. It removes a facility to define MaxDataInl...
leonidk [Sun, 16 Aug 2009 12:44:11 +0000 (12:44 +0000)]
[ND provider] This patch is a fix to 2333. It removes a facility to define MaxDataInlineSize from application, because it breaks MS API

[ND porvider] Improved latency of ND provider by using INLINE send. [winof: 2333, 2352]

This patch adds usage of INLINE DATA facility of Mellanox HCAs for improving latency of ND provider.

Here are the ideas of the patch:
    - by default, ND provider will create QP with inline data of 160 bytes;
    (this can enlarge user's QP size)
    - one can change this default by defining environment variable IBNDPROV_MAX_INLINE_SIZE;

git-svn-id: svn://openib.tc.cornell.edu/gen1@2353 ad392aa1-c5ef-ae45-8dd8-e69d62a5ef86

14 years ago[ND provider] This patch is a fix to 2333. It removes a facility to define MaxDataInl...
leonidk [Sun, 16 Aug 2009 12:40:46 +0000 (12:40 +0000)]
[ND provider] This patch is a fix to 2333. It removes a facility to define MaxDataInlineSize from application, because it breaks MS API

Improved latency of ND provider by using INLINE send

This patch adds usage of INLINE DATA facility of Mellanox HCAs for improving latency of ND provider.

Here are the ideas of the patch:
    - by default, ND provider will create QP with inline data of 160 bytes;
    (this can enlarge user's QP size)
    - one can change this default by defining environment variable IBNDPROV_MAX_INLINE_SIZE;

git-svn-id: svn://openib.tc.cornell.edu/gen1@2352 ad392aa1-c5ef-ae45-8dd8-e69d62a5ef86

14 years ago[IPOIB] Prevent a BSOD which happens when restarting the opensm more than once (if...
stansmith [Thu, 13 Aug 2009 17:34:29 +0000 (17:34 +0000)]
[IPOIB] Prevent a BSOD which happens when restarting the opensm more than once (if the local endpoint was not in the lid_endpts list). signed off by stan.smith@intel.com & Tzachi Dar [tzachid@mellanox.co.il]

git-svn-id: svn://openib.tc.cornell.edu/gen1@2351 ad392aa1-c5ef-ae45-8dd8-e69d62a5ef86

14 years agowinverbs/driver: fix check for IP version
shefty [Mon, 10 Aug 2009 18:55:38 +0000 (18:55 +0000)]
winverbs/driver: fix check for IP version

merge commit 2339/2340

The IP version is in the upper 4 bits of an 8 bit field.  It is set
correctly, but not ready out correctly.  The result is that an IPv4
address reported to user space is listed as an IPv6 address instead.

Signed-off-by: Sean Hefty <sean.hefty@intel.com>
git-svn-id: svn://openib.tc.cornell.edu/gen1@2350 ad392aa1-c5ef-ae45-8dd8-e69d62a5ef86

14 years agoreapply overwritten commit 2340
shefty [Mon, 10 Aug 2009 18:52:32 +0000 (18:52 +0000)]
reapply overwritten commit 2340

not sure what happened, but commit 2340 was lost

The IP version number is in the upper 4 bits.  It is set correctly, but not read out correctly.

git-svn-id: svn://openib.tc.cornell.edu/gen1@2349 ad392aa1-c5ef-ae45-8dd8-e69d62a5ef86

14 years agowinverbs/driver: fix check for IP version (reapply overwritten commit)
shefty [Mon, 10 Aug 2009 18:49:25 +0000 (18:49 +0000)]
winverbs/driver: fix check for IP version (reapply overwritten commit)

The IP version is in the upper 4 bits of an 8 bit field.  It is set
correctly, but not ready out correctly.  The result is that an IPv4
address reported to user space is listed as an IPv6 address instead.

Signed-off-by: Sean Hefty <sean.hefty@intel.com>
git-svn-id: svn://openib.tc.cornell.edu/gen1@2348 ad392aa1-c5ef-ae45-8dd8-e69d62a5ef86

14 years agowinverbs/driver: change status for rejected connections
shefty [Mon, 10 Aug 2009 18:44:36 +0000 (18:44 +0000)]
winverbs/driver: change status for rejected connections

merge commit 2339

Complete connection requests with STATUS_CONNECTION_REFUSED rather
than STATUS_REQUEST_NOT_ACCEPTED for rejected connections.  This aligns
the status value with ND.

Signed-off-by: Sean Hefty <sean.hefty@intel.com>
git-svn-id: svn://openib.tc.cornell.edu/gen1@2347 ad392aa1-c5ef-ae45-8dd8-e69d62a5ef86

14 years agoibal/cm: allow RDMA writes for QP attributes by default
shefty [Mon, 10 Aug 2009 18:43:51 +0000 (18:43 +0000)]
ibal/cm: allow RDMA writes for QP attributes by default

merge commit 2334

Enable remote RDMA writes as the default QP attributes for INIT
transitions.  Previously, RDMA writes were only enabled if the CM
messages carried a responder resources > 0.  However, responder
resources indicates whether RDMA reads/atomics should be enabled,
not RDMA writes.

Without this patch, users of winverbs that connect in-band that
want to perform RDMA writes without performing RDMA reads will
see QP errors when performing writes.

Signed-off-by: Sean Hefty <sean.hefty@intel.com>
git-svn-id: svn://openib.tc.cornell.edu/gen1@2346 ad392aa1-c5ef-ae45-8dd8-e69d62a5ef86

14 years agowinverbs/status: add status definition for IO timeout
shefty [Mon, 10 Aug 2009 18:42:48 +0000 (18:42 +0000)]
winverbs/status: add status definition for IO timeout

merge commit 2329

Signed-off-by: Sean Hefty <sean.hefty@intel.com>
git-svn-id: svn://openib.tc.cornell.edu/gen1@2345 ad392aa1-c5ef-ae45-8dd8-e69d62a5ef86

14 years agolibibverbs: add reference counts to track CQ events
shefty [Mon, 10 Aug 2009 18:41:43 +0000 (18:41 +0000)]
libibverbs: add reference counts to track CQ events

merge commit 2323

We need to track CQ events to block destroying CQ objects until all outstanding events have been acknowledged.  Otherwise, the caller could reference freed memory after calling ibv_get_cq_event.

Signed-off-by: Sean Hefty <sean.hefty@intel.com>
git-svn-id: svn://openib.tc.cornell.edu/gen1@2344 ad392aa1-c5ef-ae45-8dd8-e69d62a5ef86

14 years agowinverbs: fix cleanup in error handling cases
shefty [Mon, 10 Aug 2009 18:40:06 +0000 (18:40 +0000)]
winverbs: fix cleanup in error handling cases

merge svn 2320 from trunk

Running the ndmw test results in a crash in the winverbs driver.  The
crash is caused by improper cleanup in the winverbs driver as a result
of a failure trying to allocate a memory window.

In studying the crash, the same situation could arise if other objects
also fail to be created (QPs, CQs, PDs, etc.)  To fix the crash and
simplify the code, explicit calls to used to increment the reference
count on referenced objects, rather than simply holding onto the
reference that was acquired when the object was validated.  (The latter
is slightly more efficient, but results in less maintainable code
once any fix is applied.)

Signed-off-by: Sean Hefty <sean.hefty@intel.com>
git-svn-id: svn://openib.tc.cornell.edu/gen1@2343 ad392aa1-c5ef-ae45-8dd8-e69d62a5ef86

14 years agowinverbs branch: update to svn 2341
shefty [Mon, 10 Aug 2009 17:26:56 +0000 (17:26 +0000)]
winverbs branch: update to svn 2341

git-svn-id: svn://openib.tc.cornell.edu/gen1@2342 ad392aa1-c5ef-ae45-8dd8-e69d62a5ef86

14 years agowinverbs/driver: change status for rejected connections
shefty [Mon, 10 Aug 2009 17:22:32 +0000 (17:22 +0000)]
winverbs/driver: change status for rejected connections

Complete connection requests with STATUS_CONNECTION_REFUSED rather
than STATUS_REQUEST_NOT_ACCEPTED for rejected connections.  This aligns
the status value with ND.

Signed-off-by: Sean Hefty <sean.hefty@intel.com>
git-svn-id: svn://openib.tc.cornell.edu/gen1@2341 ad392aa1-c5ef-ae45-8dd8-e69d62a5ef86

14 years agowinverbs/driver: fix check for IP version
shefty [Sat, 8 Aug 2009 00:21:54 +0000 (00:21 +0000)]
winverbs/driver: fix check for IP version

The IP version is in the upper 4 bits of an 8 bit field.  It is set
correctly, but not ready out correctly.  The result is that an IPv4
address reported to user space is listed as an IPv6 address instead.

Signed-off-by: Sean Hefty <sean.hefty@intel.com>
git-svn-id: svn://openib.tc.cornell.edu/gen1@2340 ad392aa1-c5ef-ae45-8dd8-e69d62a5ef86

14 years agowinverbs/driver: change status for rejected connections
shefty [Sat, 8 Aug 2009 00:20:44 +0000 (00:20 +0000)]
winverbs/driver: change status for rejected connections

Complete connection requests with STATUS_CONNECTION_REFUSED rather
than STATUS_REQUEST_NOT_ACCEPTED for rejected connections.  This aligns
the status value with ND.

Signed-off-by: Sean Hefty <sean.hefty@intel.com>
git-svn-id: svn://openib.tc.cornell.edu/gen1@2339 ad392aa1-c5ef-ae45-8dd8-e69d62a5ef86

14 years ago[ETC] Remove stale code from previous DAPL CNO wait experiments.
stansmith [Fri, 7 Aug 2009 20:42:19 +0000 (20:42 +0000)]
[ETC] Remove stale code from previous DAPL CNO wait experiments.

git-svn-id: svn://openib.tc.cornell.edu/gen1@2338 ad392aa1-c5ef-ae45-8dd8-e69d62a5ef86

14 years ago[DAPL2] Sync with OFED DAPL 2.0.21 src release
stansmith [Fri, 7 Aug 2009 20:16:36 +0000 (20:16 +0000)]
[DAPL2] Sync with OFED DAPL 2.0.21 src release

git-svn-id: svn://openib.tc.cornell.edu/gen1@2337 ad392aa1-c5ef-ae45-8dd8-e69d62a5ef86

14 years ago[ETC] The completion manager abstraction can hang during cleanup. The hang
stansmith [Fri, 7 Aug 2009 19:47:44 +0000 (19:47 +0000)]
[ETC] The completion manager abstraction can hang during cleanup.  The hang
occurs when the user calls CompManagerCancel before calling CompManagerClose,
and the user is not waiting for events.  In this case, the completion manager
thread will pull the cancel request from the IO completion port and queue it
with the manager.  When CompManagerClose is called, it calls CompManagerCancel
to signal the thread to check the running state.  However, the completion
manager's event structure is still marked busy from the user's CompManagerCancel
call.

The result is that the completion manager thread does not receive the
signal to check the running flag and remains asleep.  Fix this by using a
different completion entry to signal the thread during destruction than that
used to cancel a CompManagerPoll event.

This fixes occasional hangs running dapltest with both the rdma_cm and socket
cm providers.

Signed-off-by: Sean Hefty <sean.hefty@intel.com>
git-svn-id: svn://openib.tc.cornell.edu/gen1@2336 ad392aa1-c5ef-ae45-8dd8-e69d62a5ef86

14 years agoibal/cm: allow RDMA writes for QP attributes by default
shefty [Fri, 7 Aug 2009 18:49:07 +0000 (18:49 +0000)]
ibal/cm: allow RDMA writes for QP attributes by default

Enable remote RDMA writes as the default QP attributes for INIT
transitions.  Previously, RDMA writes were only enabled if the CM
messages carried a responder resources > 0.  However, responder
resources indicates whether RDMA reads/atomics should be enabled,
not RDMA writes.

Without this patch, users of winverbs that connect in-band that
want to perform RDMA writes without performing RDMA reads will
see QP errors when performing writes.

Signed-off-by: Sean Hefty <sean.hefty@intel.com>
git-svn-id: svn://openib.tc.cornell.edu/gen1@2335 ad392aa1-c5ef-ae45-8dd8-e69d62a5ef86

14 years agoibal/cm: allow RDMA writes for QP attributes by default
shefty [Fri, 7 Aug 2009 18:48:52 +0000 (18:48 +0000)]
ibal/cm: allow RDMA writes for QP attributes by default

Enable remote RDMA writes as the default QP attributes for INIT
transitions.  Previously, RDMA writes were only enabled if the CM
messages carried a responder resources > 0.  However, responder
resources indicates whether RDMA reads/atomics should be enabled,
not RDMA writes.

Without this patch, users of winverbs that connect in-band that
want to perform RDMA writes without performing RDMA reads will
see QP errors when performing writes.

Signed-off-by: Sean Hefty <sean.hefty@intel.com>
git-svn-id: svn://openib.tc.cornell.edu/gen1@2334 ad392aa1-c5ef-ae45-8dd8-e69d62a5ef86

14 years ago[ND provider] improved latency of ND provider by using INLINE send
leonidk [Thu, 6 Aug 2009 17:13:25 +0000 (17:13 +0000)]
[ND provider] improved latency of ND provider by using INLINE send

This patch adds usage of INLINE DATA facility of Mellanox HCAs for improving latency of ND provider.

Here are the ideas of the patch:
    - by default, ND provider will create QP with inline data of 160 bytes;
    (this can enlarge user's QP size)
    - one can change this default by defining environment variable IBNDPROV_MAX_INLINE_SIZE;
    - an ND application, while creating QP, can define the necessary INLINE DATA size; this value takes precedence over the default one.

git-svn-id: svn://openib.tc.cornell.edu/gen1@2333 ad392aa1-c5ef-ae45-8dd8-e69d62a5ef86

14 years agowinverbs/status: add status definition for IO timeout
shefty [Wed, 5 Aug 2009 23:44:28 +0000 (23:44 +0000)]
winverbs/status: add status definition for IO timeout

Signed-off-by: Sean Hefty <sean.hefty@intel.com>
git-svn-id: svn://openib.tc.cornell.edu/gen1@2332 ad392aa1-c5ef-ae45-8dd8-e69d62a5ef86

14 years agowinverbs/status: add status definition for IO timeout
shefty [Wed, 5 Aug 2009 23:44:16 +0000 (23:44 +0000)]
winverbs/status: add status definition for IO timeout

Signed-off-by: Sean Hefty <sean.hefty@intel.com>
git-svn-id: svn://openib.tc.cornell.edu/gen1@2331 ad392aa1-c5ef-ae45-8dd8-e69d62a5ef86

14 years agolibibverbs/comp_mgr: fix hang during destruction
shefty [Wed, 5 Aug 2009 23:43:36 +0000 (23:43 +0000)]
libibverbs/comp_mgr: fix hang during destruction

The completion manager abstraction can hang during cleanup.  The hang
occurs when the user calls CompManagerCancel before calling CompManagerClose,
and the user is not waiting for events.  In this case, the completion manager
thread will pull the cancel request from the IO completion port and queue it
with the manager.  When CompManagerClose is called, it calls CompManagerCancel
to signal the thread to check the running state.  However, the completion
manager's event structure is still marked busy from the user's CompManagerCancel
call.

The result is that the completion manager thread does not receive the
signal to check the running flag and remains asleep.  Fix this by using a
different completion entry to signal the thread during destruction than that
used to cancel a CompManagerPoll event.

This fixes occasional hangs running dapltest with both the rdma_cm and socket
cm providers.

Signed-off-by: Sean Hefty <sean.hefty@intel.com>
git-svn-id: svn://openib.tc.cornell.edu/gen1@2330 ad392aa1-c5ef-ae45-8dd8-e69d62a5ef86

14 years agolibibverbs/comp_mgr: fix hang during destruction
shefty [Wed, 5 Aug 2009 23:43:10 +0000 (23:43 +0000)]
libibverbs/comp_mgr: fix hang during destruction

The completion manager abstraction can hang during cleanup.  The hang
occurs when the user calls CompManagerCancel before calling CompManagerClose,
and the user is not waiting for events.  In this case, the completion manager
thread will pull the cancel request from the IO completion port and queue it
with the manager.  When CompManagerClose is called, it calls CompManagerCancel
to signal the thread to check the running state.  However, the completion
manager's event structure is still marked busy from the user's CompManagerCancel
call.

The result is that the completion manager thread does not receive the
signal to check the running flag and remains asleep.  Fix this by using a
different completion entry to signal the thread during destruction than that
used to cancel a CompManagerPoll event.

This fixes occasional hangs running dapltest with both the rdma_cm and socket
cm providers.

Signed-off-by: Sean Hefty <sean.hefty@intel.com>
git-svn-id: svn://openib.tc.cornell.edu/gen1@2329 ad392aa1-c5ef-ae45-8dd8-e69d62a5ef86

14 years ago[WINOF\HPC] update example scripts - run from C:\WOF
stansmith [Tue, 4 Aug 2009 17:23:22 +0000 (17:23 +0000)]
[WINOF\HPC] update example scripts - run from C:\WOF

git-svn-id: svn://openib.tc.cornell.edu/gen1@2328 ad392aa1-c5ef-ae45-8dd8-e69d62a5ef86

14 years ago[WinOF] RC3
stansmith [Tue, 4 Aug 2009 17:20:02 +0000 (17:20 +0000)]
[WinOF] RC3

git-svn-id: svn://openib.tc.cornell.edu/gen1@2327 ad392aa1-c5ef-ae45-8dd8-e69d62a5ef86

14 years ago[DAPL2] Fix socket CM completion handling and CNQ handling; Windows variants. Add...
stansmith [Tue, 4 Aug 2009 17:13:27 +0000 (17:13 +0000)]
[DAPL2] Fix socket CM completion handling and CNQ handling; Windows variants. Add #include <winsock2.h>
#include <ws2tcpip.h> for IPv4 & IPv6 user application support (VC env vs. WDK).

git-svn-id: svn://openib.tc.cornell.edu/gen1@2326 ad392aa1-c5ef-ae45-8dd8-e69d62a5ef86

14 years ago[ETC] Fix completion notification handling for DAPL2
stansmith [Tue, 4 Aug 2009 17:10:38 +0000 (17:10 +0000)]
[ETC] Fix completion notification handling for DAPL2

git-svn-id: svn://openib.tc.cornell.edu/gen1@2325 ad392aa1-c5ef-ae45-8dd8-e69d62a5ef86

14 years agonetdirect/winverbs: fixes to run nd sample tests
shefty [Sat, 1 Aug 2009 01:02:29 +0000 (01:02 +0000)]
netdirect/winverbs: fixes to run nd sample tests

Now that the WV ND provider can be installed, the ND sample tests can be run.  This provides various fixes to get at least a couple of the sample tests running.

Signed-off-by: Sean Hefty <sean.hefty@intel.com>
git-svn-id: svn://openib.tc.cornell.edu/gen1@2324 ad392aa1-c5ef-ae45-8dd8-e69d62a5ef86

14 years agolibibverbs: add reference counts to track CQ events
shefty [Sat, 1 Aug 2009 01:01:57 +0000 (01:01 +0000)]
libibverbs: add reference counts to track CQ events

We need to track CQ events to block destroying CQ objects until all outstanding events have been acknowledged.  Otherwise, the caller could reference freed memory after calling ibv_get_cq_event.

Signed-off-by: Sean Hefty <sean.hefty@intel.com>
git-svn-id: svn://openib.tc.cornell.edu/gen1@2323 ad392aa1-c5ef-ae45-8dd8-e69d62a5ef86

14 years agolibibverbs: add reference counts to track CQ events
shefty [Sat, 1 Aug 2009 00:51:05 +0000 (00:51 +0000)]
libibverbs: add reference counts to track CQ events

We need to track CQ events to block destroying CQ objects until all outstanding events have been acknowledged.  Otherwise, the caller could reference freed memory after calling ibv_get_cq_event.

Signed-off-by: Sean Hefty <sean.hefty@intel.com>
git-svn-id: svn://openib.tc.cornell.edu/gen1@2322 ad392aa1-c5ef-ae45-8dd8-e69d62a5ef86

14 years agonetdirect/winverbs: fixes to run nd sample tests
shefty [Sat, 1 Aug 2009 00:45:47 +0000 (00:45 +0000)]
netdirect/winverbs: fixes to run nd sample tests

Now that the WV ND provider can be installed, the ND sample tests can be run.  This provides various fixes to get at least a couple of the sample tests running.

Signed-off-by: Sean Hefty <sean.hefty@intel.com>
git-svn-id: svn://openib.tc.cornell.edu/gen1@2321 ad392aa1-c5ef-ae45-8dd8-e69d62a5ef86

14 years agowinverbs: fix cleanup in error handling cases
shefty [Fri, 31 Jul 2009 16:50:21 +0000 (16:50 +0000)]
winverbs: fix cleanup in error handling cases

Running the ndmw test results in a crash in the winverbs driver.  The
crash is caused by improper cleanup in the winverbs driver as a result
of a failure trying to allocate a memory window.

In studying the crash, the same situation could arise if other objects
also fail to be created (QPs, CQs, PDs, etc.)  To fix the crash and
simplify the code, explicit calls to used to increment the reference
count on referenced objects, rather than simply holding onto the
reference that was acquired when the object was validated.  (The latter
is slightly more efficient, but results in less maintainable code
once any fix is applied.)

Signed-off-by: Sean Hefty <sean.hefty@intel.com>
git-svn-id: svn://openib.tc.cornell.edu/gen1@2320 ad392aa1-c5ef-ae45-8dd8-e69d62a5ef86

14 years agowinverbs: fix cleanup in error handling cases
shefty [Fri, 31 Jul 2009 16:49:56 +0000 (16:49 +0000)]
winverbs: fix cleanup in error handling cases

Running the ndmw test results in a crash in the winverbs driver.  The
crash is caused by improper cleanup in the winverbs driver as a result
of a failure trying to allocate a memory window.

In studying the crash, the same situation could arise if other objects
also fail to be created (QPs, CQs, PDs, etc.)  To fix the crash and
simplify the code, explicit calls to used to increment the reference
count on referenced objects, rather than simply holding onto the
reference that was acquired when the object was validated.  (The latter
is slightly more efficient, but results in less maintainable code
once any fix is applied.)

Signed-off-by: Sean Hefty <sean.hefty@intel.com>
git-svn-id: svn://openib.tc.cornell.edu/gen1@2319 ad392aa1-c5ef-ae45-8dd8-e69d62a5ef86

14 years ago[ND] remove old, unused fake build folders and fake.c from the days before we could...
stansmith [Tue, 28 Jul 2009 23:33:49 +0000 (23:33 +0000)]
[ND] remove old, unused fake build folders and fake.c from the days before we could build ND from src. makefile.inc modified to reflect folder changes.

git-svn-id: svn://openib.tc.cornell.edu/gen1@2318 ad392aa1-c5ef-ae45-8dd8-e69d62a5ef86

14 years ago[ND] missed the root of the fake.
stansmith [Tue, 28 Jul 2009 23:31:30 +0000 (23:31 +0000)]
[ND] missed the root of the fake.

git-svn-id: svn://openib.tc.cornell.edu/gen1@2317 ad392aa1-c5ef-ae45-8dd8-e69d62a5ef86

14 years ago[ND] remove old, unused fake build folders from the days before we could build ND...
stansmith [Tue, 28 Jul 2009 23:29:51 +0000 (23:29 +0000)]
[ND] remove old, unused fake build folders from the days before we could build ND from src. makefile.inc modified to reflect folder changes.

git-svn-id: svn://openib.tc.cornell.edu/gen1@2316 ad392aa1-c5ef-ae45-8dd8-e69d62a5ef86

14 years ago[WINOF] add new HPC example scripts; added new WIX include file to create %ProgramFil...
stansmith [Tue, 28 Jul 2009 19:06:35 +0000 (19:06 +0000)]
[WINOF] add new HPC example scripts; added new WIX include file to create %ProgramFiles(x86)%\WinOF\HPC install folder and HPC examples scripts; change wof.wxs to include ..\..\HPC\HPC.inc .

git-svn-id: svn://openib.tc.cornell.edu/gen1@2315 ad392aa1-c5ef-ae45-8dd8-e69d62a5ef86

14 years ago[WINOF] move HPC script examples into HPC specific folder.
stansmith [Tue, 28 Jul 2009 18:50:15 +0000 (18:50 +0000)]
[WINOF] move HPC script examples into HPC specific folder.

git-svn-id: svn://openib.tc.cornell.edu/gen1@2314 ad392aa1-c5ef-ae45-8dd8-e69d62a5ef86

14 years ago[WINOF] Collect HPC related install script examples into one place
stansmith [Tue, 28 Jul 2009 18:45:48 +0000 (18:45 +0000)]
[WINOF] Collect HPC related install script examples into one place

git-svn-id: svn://openib.tc.cornell.edu/gen1@2313 ad392aa1-c5ef-ae45-8dd8-e69d62a5ef86

14 years agowinverbs branch: updated to trunk 2311
shefty [Mon, 27 Jul 2009 17:02:30 +0000 (17:02 +0000)]
winverbs branch: updated to trunk 2311

git-svn-id: svn://openib.tc.cornell.edu/gen1@2312 ad392aa1-c5ef-ae45-8dd8-e69d62a5ef86

14 years agond/winverbs: fix source file to reference correct export file
shefty [Mon, 27 Jul 2009 16:56:16 +0000 (16:56 +0000)]
nd/winverbs: fix source file to reference correct export file

Signed-off-by: Sean Hefty <sean.hefty@intel.com>
git-svn-id: svn://openib.tc.cornell.edu/gen1@2311 ad392aa1-c5ef-ae45-8dd8-e69d62a5ef86

14 years agodapl/cq: integrate cq waiting with the provider
shefty [Fri, 24 Jul 2009 17:14:32 +0000 (17:14 +0000)]
dapl/cq: integrate cq waiting with the provider

DAPL introduced the concept of directly waiting on the CQ for
events by adding a compile time flag and special handling in the
common code.  Rather than using the compile time flag and modifying the
common code, let the provider implement the best way to wait for
CQ events.

This simplifies the code and allows the common openib providers to
optimize for Linux and Windows platforms independently, rather than
assuming a specific implementation for signaling events.

Signed-off-by: Sean Hefty <sean.hefty@intel.com>
git-svn-id: svn://openib.tc.cornell.edu/gen1@2310 ad392aa1-c5ef-ae45-8dd8-e69d62a5ef86

15 years ago[WINOF} publish 2.1 RC2
stansmith [Tue, 21 Jul 2009 18:11:34 +0000 (18:11 +0000)]
[WINOF} publish 2.1 RC2

git-svn-id: svn://openib.tc.cornell.edu/gen1@2309 ad392aa1-c5ef-ae45-8dd8-e69d62a5ef86

15 years ago[DOCS] Document ndinstall cmd IF again supports a default provider IBAL 'ndinstall...
stansmith [Tue, 21 Jul 2009 18:10:34 +0000 (18:10 +0000)]
[DOCS] Document ndinstall cmd IF again supports a default provider IBAL 'ndinstall -i' defaults to IBAL provider.

git-svn-id: svn://openib.tc.cornell.edu/gen1@2308 ad392aa1-c5ef-ae45-8dd8-e69d62a5ef86

15 years ago[WINOF] step up to RC2
stansmith [Thu, 16 Jul 2009 23:00:05 +0000 (23:00 +0000)]
[WINOF] step up to RC2

git-svn-id: svn://openib.tc.cornell.edu/gen1@2307 ad392aa1-c5ef-ae45-8dd8-e69d62a5ef86

15 years ago[WINOF] Revert back to original ndinstall.exe invocation as a 'default' ND provider...
stansmith [Thu, 16 Jul 2009 22:58:22 +0000 (22:58 +0000)]
[WINOF] Revert back to original ndinstall.exe invocation as a 'default' ND provider is now provided.

git-svn-id: svn://openib.tc.cornell.edu/gen1@2306 ad392aa1-c5ef-ae45-8dd8-e69d62a5ef86

15 years ago[DAPL2] Implement a malloc() threshold for the completion reaping byte vector allocat...
stansmith [Thu, 16 Jul 2009 22:56:45 +0000 (22:56 +0000)]
[DAPL2] Implement a malloc() threshold for the completion reaping byte vector allocation in functions:
  DT_handle_send_op, DT_handle_rdma_op & DT_handle_recv_op.
When allocation size is under the threshold, use a stack local allocation instead of malloc/free.
Move redundant bzero() to be called only in the case of using local stack allocation as DT_Mdep_malloc() already does a bzero().
Consolidate error handling return and free()check to a single point by using goto.

Signed-off-by: Stan Smith <stan.smith@intel.com>
git-svn-id: svn://openib.tc.cornell.edu/gen1@2305 ad392aa1-c5ef-ae45-8dd8-e69d62a5ef86

15 years ago[ND] reinstate '-i' to install 'default' ND service provider IBAL; reinstate '-r...
stansmith [Thu, 16 Jul 2009 22:53:40 +0000 (22:53 +0000)]
[ND] reinstate '-i' to install 'default' ND service provider IBAL; reinstate '-r' to uninstall 'default' ND service provider; backwards compat.

git-svn-id: svn://openib.tc.cornell.edu/gen1@2304 ad392aa1-c5ef-ae45-8dd8-e69d62a5ef86

15 years ago[ETC] process nonexistent optional switch arg @ EOL. signed off by stan.smith@intel.com
stansmith [Thu, 16 Jul 2009 22:51:26 +0000 (22:51 +0000)]
[ETC] process nonexistent optional switch arg @ EOL. signed off by stan.smith@intel.com

git-svn-id: svn://openib.tc.cornell.edu/gen1@2303 ad392aa1-c5ef-ae45-8dd8-e69d62a5ef86

15 years ago[WOF2-1] librdmacm: free event structure on failure
stansmith [Wed, 15 Jul 2009 23:26:38 +0000 (23:26 +0000)]
[WOF2-1] librdmacm: free event structure on failure

git-svn-id: svn://openib.tc.cornell.edu/gen1@2302 ad392aa1-c5ef-ae45-8dd8-e69d62a5ef86

15 years agolibrdmacm: free event structure on failure
shefty [Wed, 15 Jul 2009 21:53:54 +0000 (21:53 +0000)]
librdmacm: free event structure on failure

Signed-off-by: Sean Hefty <sean.hefty@intel.com>
git-svn-id: svn://openib.tc.cornell.edu/gen1@2301 ad392aa1-c5ef-ae45-8dd8-e69d62a5ef86

15 years agolibrdmacm: free event structure on failure
shefty [Wed, 15 Jul 2009 21:53:36 +0000 (21:53 +0000)]
librdmacm: free event structure on failure

Signed-off-by: Sean Hefty <sean.hefty@intel.com>
git-svn-id: svn://openib.tc.cornell.edu/gen1@2300 ad392aa1-c5ef-ae45-8dd8-e69d62a5ef86

15 years ago[WIX] Account for changes in ndinstall.exe cmd line interface.
stansmith [Wed, 15 Jul 2009 19:56:37 +0000 (19:56 +0000)]
[WIX] Account for changes in ndinstall.exe cmd line interface.

git-svn-id: svn://openib.tc.cornell.edu/gen1@2299 ad392aa1-c5ef-ae45-8dd8-e69d62a5ef86

15 years ago[TOOLS] repair ndinstall (installsp.c) return a proper exit code; removed unused...
stansmith [Wed, 15 Jul 2009 19:54:00 +0000 (19:54 +0000)]
[TOOLS] repair ndinstall (installsp.c) return a proper exit code; removed unused variables; remove ifdef PERFMON_ENABLED code blocks per Fab's suggestion; reinstate '-l' options for compatibility with older versions (same as no args);ensure ndinstall -l or no-args return success;

git-svn-id: svn://openib.tc.cornell.edu/gen1@2298 ad392aa1-c5ef-ae45-8dd8-e69d62a5ef86

15 years ago[DOCS] Update manual.htm to reflect recent command line interface changes in ndinstal...
stansmith [Wed, 15 Jul 2009 19:45:11 +0000 (19:45 +0000)]
[DOCS] Update manual.htm to reflect recent command line interface changes in ndinstall.exe

git-svn-id: svn://openib.tc.cornell.edu/gen1@2297 ad392aa1-c5ef-ae45-8dd8-e69d62a5ef86

15 years ago[WinOF] 2.1 RC-1 @ svn.2295
stansmith [Mon, 13 Jul 2009 23:27:09 +0000 (23:27 +0000)]
[WinOF] 2.1 RC-1 @ svn.2295

git-svn-id: svn://openib.tc.cornell.edu/gen1@2296 ad392aa1-c5ef-ae45-8dd8-e69d62a5ef86

15 years ago[HW] Merge in Leo's latest mlx changes (sync @ 2294)
stansmith [Mon, 13 Jul 2009 23:21:57 +0000 (23:21 +0000)]
[HW] Merge in Leo's latest mlx changes (sync @ 2294)

git-svn-id: svn://openib.tc.cornell.edu/gen1@2295 ad392aa1-c5ef-ae45-8dd8-e69d62a5ef86

15 years ago[WinOF] WinOF 2.1 RC-1
stansmith [Mon, 13 Jul 2009 23:07:29 +0000 (23:07 +0000)]
[WinOF] WinOF 2.1 RC-1

git-svn-id: svn://openib.tc.cornell.edu/gen1@2294 ad392aa1-c5ef-ae45-8dd8-e69d62a5ef86

15 years ago[MLX4] changed severity level for informational messages about Soft Reset from ERROR...
leonidk [Mon, 13 Jul 2009 18:29:54 +0000 (18:29 +0000)]
[MLX4] changed severity level for informational messages about Soft Reset from ERROR to INFO. [mlnx: 4568]

git-svn-id: svn://openib.tc.cornell.edu/gen1@2293 ad392aa1-c5ef-ae45-8dd8-e69d62a5ef86

15 years ago[MLX4] added new Registry parameter for number of FC_EXCHs and added a sanity check...
leonidk [Mon, 13 Jul 2009 18:28:40 +0000 (18:28 +0000)]
[MLX4] added new Registry parameter for number of FC_EXCHs and added a sanity check, that the number of reserved QPs is less then all requested QPs. [mlnx: 4562]

It came to fix a bug: if the number of reserved QPs is greater then the number of QPs requested, the bug causes eventual allocation of reserved QPs, which is forbidden.
The bug happened due two reasons:
  - absense of sanity check, comparing reserved and total number of QPs;
  - a large built-in number of FC_EXCH QPs, which are not in use at all today.
The patch replaces the built-in value to Registry taken one and set it to O.
It also changes the number of MACs from 1 to 0 for there is no need in reservation for MACs.

git-svn-id: svn://openib.tc.cornell.edu/gen1@2292 ad392aa1-c5ef-ae45-8dd8-e69d62a5ef86

15 years ago[MLX4] 1) added support for sending large multi-parameter messages to System Event...
leonidk [Mon, 13 Jul 2009 18:24:01 +0000 (18:24 +0000)]
[MLX4] 1) added support for sending large multi-parameter messages to System Event Log.  [mlnx: 4561]
2) improved the wording of several most popular messages.

To print to Event Log, one has to use the new function WriteEventLogEntryData().

git-svn-id: svn://openib.tc.cornell.edu/gen1@2291 ad392aa1-c5ef-ae45-8dd8-e69d62a5ef86

15 years ago[MLX4] added support to new device. [mlnx: 4473]
leonidk [Mon, 13 Jul 2009 18:19:03 +0000 (18:19 +0000)]
[MLX4] added support to new device. [mlnx: 4473]

git-svn-id: svn://openib.tc.cornell.edu/gen1@2290 ad392aa1-c5ef-ae45-8dd8-e69d62a5ef86

15 years agogit-svn-id: svn://openib.tc.cornell.edu/gen1@2289 ad392aa1-c5ef-ae45-8dd8-e69d62a5ef86
stansmith [Mon, 13 Jul 2009 16:44:09 +0000 (16:44 +0000)]
git-svn-id: svn://openib.tc.cornell.edu/gen1@2289 ad392aa1-c5ef-ae45-8dd8-e69d62a5ef86

15 years ago[WinOF] Remove disucssions for Server 2003 & XP w.r.t. selecting HCA device driver...
stansmith [Mon, 13 Jul 2009 16:42:36 +0000 (16:42 +0000)]
[WinOF] Remove disucssions for Server 2003 & XP w.r.t. selecting HCA device driver to hardware - DIFxApp/PNP simplifies and unifies HCA selection; user selects HCA vendor; Mellanox is the default.

git-svn-id: svn://openib.tc.cornell.edu/gen1@2288 ad392aa1-c5ef-ae45-8dd8-e69d62a5ef86

15 years ago[DOCS] Simplify starting Service Manager discussion in starting OpenSM.
stansmith [Mon, 13 Jul 2009 16:35:01 +0000 (16:35 +0000)]
[DOCS] Simplify starting Service Manager discussion in starting OpenSM.

git-svn-id: svn://openib.tc.cornell.edu/gen1@2287 ad392aa1-c5ef-ae45-8dd8-e69d62a5ef86

15 years ago[WinOF] White-space formatting.
stansmith [Mon, 13 Jul 2009 16:32:36 +0000 (16:32 +0000)]
[WinOF] White-space formatting.

git-svn-id: svn://openib.tc.cornell.edu/gen1@2286 ad392aa1-c5ef-ae45-8dd8-e69d62a5ef86

15 years agowinverbs branch: update to trunk 2284
shefty [Fri, 10 Jul 2009 18:07:16 +0000 (18:07 +0000)]
winverbs branch: update to trunk 2284

Signed-off-by: Sean Hefty <sean.hefty@intel.com>
git-svn-id: svn://openib.tc.cornell.edu/gen1@2285 ad392aa1-c5ef-ae45-8dd8-e69d62a5ef86

15 years agondinstall: update installer to support both IBAL and WV ND providers
shefty [Fri, 10 Jul 2009 17:57:19 +0000 (17:57 +0000)]
ndinstall: update installer to support both IBAL and WV ND providers

Signed-off-by: Sean Hefty <sean.hefty@intel.com>
git-svn-id: svn://openib.tc.cornell.edu/gen1@2284 ad392aa1-c5ef-ae45-8dd8-e69d62a5ef86