]> git.openfabrics.org - ~shefty/rdma-win.git/log
~shefty/rdma-win.git
15 years ago[WinVerbs] cleanout old history.
stansmith [Sat, 11 Apr 2009 00:31:42 +0000 (00:31 +0000)]
[WinVerbs] cleanout old history.

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

15 years ago[WinOF]
stansmith [Fri, 10 Apr 2009 23:24:54 +0000 (23:24 +0000)]
[WinOF]
buildrelease.bat - for compf & allf - verify input path exists; protect against bad typists/self.
README.txt - update how2 doc with current paths.
Release_notes.htm - added MS HPC driver install link to HPC install discussion.
signDrivers.bat - be explicit as to which cert-store the cert comes from (self-doc).

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

15 years agoFix build break on IA64 - use DDK_BLOCK_ON_IA64 build macro to skip building for...
ftillier [Wed, 8 Apr 2009 01:14:59 +0000 (01:14 +0000)]
Fix build break on IA64 - use DDK_BLOCK_ON_IA64 build macro to skip building for IA64.

Signed-off-by: Fab Tillier <ftillier@microsoft.com>
git-svn-id: svn://openib.tc.cornell.edu/gen1@2088 ad392aa1-c5ef-ae45-8dd8-e69d62a5ef86

15 years agoND Provider source.
ftillier [Tue, 7 Apr 2009 23:21:37 +0000 (23:21 +0000)]
ND Provider source.

Signed-off-by: Fab Tillier <ftillier@microsoft.com>
git-svn-id: svn://openib.tc.cornell.edu/gen1@2087 ad392aa1-c5ef-ae45-8dd8-e69d62a5ef86

15 years agodapl: fixes to providers
shefty [Tue, 7 Apr 2009 20:58:21 +0000 (20:58 +0000)]
dapl: fixes to providers

Fix for lock initialization and deadlock issues.

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

15 years agolibrdmacm/cmatose: suspend thread when polling for completions
shefty [Tue, 7 Apr 2009 20:55:45 +0000 (20:55 +0000)]
librdmacm/cmatose: suspend thread when polling for completions

Prevent starvation of other threads.

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

15 years agoib/cm: reference private data in MAD
shefty [Tue, 7 Apr 2009 20:54:20 +0000 (20:54 +0000)]
ib/cm: reference private data in MAD

When reporting CM events, reference the private data in the MAD, not that stored with the CEP.

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

15 years agowinverbs: fix queuing requests and starting connections
shefty [Tue, 7 Apr 2009 20:53:10 +0000 (20:53 +0000)]
winverbs: fix queuing requests and starting connections

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

15 years ago[AL] fix XP build errors
stansmith [Tue, 7 Apr 2009 16:41:48 +0000 (16:41 +0000)]
[AL] fix XP build errors

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

15 years ago[WIX]
stansmith [Tue, 7 Apr 2009 00:07:24 +0000 (00:07 +0000)]
[WIX]
  Allow Svr2008 installer to install on Svr2008 R2.
  Win7 only installs on Win7 -or- Svr2008 R2.
  signDrivers.bat - update error message: signtool.exe path

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

15 years ago[DAPL2] cleanup/simpleify
stansmith [Tue, 7 Apr 2009 00:04:27 +0000 (00:04 +0000)]
[DAPL2] cleanup/simpleify
dt-cli.bat standardize time output, skip 'finished test xxx' messages where start is still on the screen.
dt-svr.bat - exit with correct error code.

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

15 years ago[IBAL] Fix ND connection establishment races.
leonidk [Sun, 5 Apr 2009 15:24:20 +0000 (15:24 +0000)]
[IBAL] Fix ND connection establishment races.

This patch fixes issues with connection establishment for NetworkDirect.  The root cause of the issue is 'too many cooks' - CIDs exposed to user-mode should not be destroyed in the kernel code without explicit request from the user.  Otherwise, the CID can get recycled in the kernel for the same process and improperly freed when the stale CID is released by the application (multiple connection objects in the app have the same CID.)

Unfortunately, the fix is not simple.  The QP references the CEP, so QP destruction frees the CEP, even if there's a reference to that CEP left in the application.  Removing the CEP reference form the QP solves this problem, but deadlocks the app if it destroys the QP before the CEP, since the QP is used to queue connection-related IRPs, and the CEP uses the QP as its context and so holds a reference on it.

This patch does the following:
- Remove CEP reference for ND related QP.
- Remove ND connection related IRP queue from QP.
- Remove ND IRP handling from CEP manager.
- Add a function to CEP manager to reference the context associated with a CEP if the context is non-NULL.
- Move ND connection related IRP management into al_ndi_cm.c, in nd_csq_t structure.

As part of testing, I needed to add NotifyDisconnect functionality, so this is also included in the patch.

Note that the patch depends on Sean's previous patch to change kal_cep_destroy to allow silently dropping a REQ.  I did not remove Sean's previous changes from this patch, so they are duplicated here.  This allows the patch to be applied and build.

-Fab

Signed-off-by: Fab Tillier <ftillier@microsoft.com>
git-svn-id: svn://openib.tc.cornell.edu/gen1@2079 ad392aa1-c5ef-ae45-8dd8-e69d62a5ef86

15 years ago[MLX4] fix in error flow.
leonidk [Sun, 5 Apr 2009 13:19:55 +0000 (13:19 +0000)]
[MLX4] fix in error flow.

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

15 years ago[IBBUS] a little fix to 2019 patch (remove HCA registration with IBAL.). [mlnx: 4105]
leonidk [Sun, 5 Apr 2009 13:13:39 +0000 (13:13 +0000)]
[IBBUS] a little fix to 2019 patch (remove HCA registration with IBAL.). [mlnx: 4105]

Make HCA de-registration before removing port managers

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

15 years ago[WinOF] Windows 7 support
stansmith [Thu, 2 Apr 2009 17:34:48 +0000 (17:34 +0000)]
[WinOF] Windows 7 support
buildrelease.bat - use 7068 WDK
build-oFA-dist.bat - Win7 support; collect OS variants prior to zip, facilitates win7 or not support.
signDriver.bat - delayed env var expansion bug: replace %CD%\arch with !CD! as pushd does update %CD%.

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

15 years ago[WinOF] identify pre-2.1 installers
stansmith [Thu, 2 Apr 2009 17:27:44 +0000 (17:27 +0000)]
[WinOF] identify pre-2.1 installers

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

15 years ago[INC/WINOF] indicate we are marching towards WinOF 2.1
stansmith [Thu, 2 Apr 2009 17:26:01 +0000 (17:26 +0000)]
[INC/WINOF] indicate we are marching towards WinOF 2.1

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

15 years ago[WINMAD] set standard WinOF DriverVer tag.
stansmith [Thu, 2 Apr 2009 17:23:33 +0000 (17:23 +0000)]
[WINMAD] set standard WinOF DriverVer tag.

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

15 years agowinverbs branch: update to SVN 2071
shefty [Tue, 31 Mar 2009 19:01:01 +0000 (19:01 +0000)]
winverbs branch: update to SVN 2071

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

15 years ago[WinOF]
stansmith [Tue, 31 Mar 2009 18:32:43 +0000 (18:32 +0000)]
[WinOF]
  Add SRP & QLGCVNIC to the common includes.
  Remove orphaned files on uninstall.

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

15 years agowinverbs branch: changes to support uDAPL openib_scm and openib_cma providers.
shefty [Tue, 31 Mar 2009 18:32:00 +0000 (18:32 +0000)]
winverbs branch: changes to support uDAPL openib_scm and openib_cma providers.

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

15 years ago[mlx4] Support different parameters for different mlx4 cards.
tzachid [Tue, 31 Mar 2009 08:45:29 +0000 (08:45 +0000)]
[mlx4] Support different parameters for different mlx4 cards.

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

15 years ago[MTHCA] fixed a build break.
leonidk [Tue, 31 Mar 2009 07:59:41 +0000 (07:59 +0000)]
[MTHCA] fixed a build break.

Signed off by: Stan Smith

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

15 years ago[WinOF] Using the WIX preprocessor OS*\arch*\wof.wxs files (all 10 of them) have...
stansmith [Mon, 30 Mar 2009 22:49:25 +0000 (22:49 +0000)]
[WinOF] Using the WIX preprocessor OS*\arch*\wof.wxs files (all 10 of them) have been distilled down to be manageable. WIX common install sections are now included from WinOF\WIX\common\.

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

15 years ago[MLX4_BUS] Bad order of operations in mlx4_ib teardown process. [mlnx: 4208]
leonidk [Sun, 29 Mar 2009 16:06:32 +0000 (16:06 +0000)]
[MLX4_BUS] Bad order of operations in mlx4_ib teardown process. [mlnx: 4208]

The bug is that the driver performs "CLOSE_PORT" command prior to closing all resources (such as QPs).
In some cases it causes loss of completions.
According to PRM:
18.2 ConnectX Driver Teardown and Re-initialization

The HCA can be shut down (and re-initialized/restarted later on) by software. This operation is performed while the system shuts down gracefully or when PCI bus re-enumeration and memory re-allocation is required. In this case, software should perform the following steps:

•Stop HCA operations (tear-down all QPs and flush WQEs if required).

•Take down the network links by executing the CLOSE_PORT command.

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

15 years ago[CORE,HW] remove PDO from the upper HCA interface. [mlnx: 4197]
leonidk [Sun, 29 Mar 2009 15:40:56 +0000 (15:40 +0000)]
[CORE,HW] remove PDO from the upper HCA interface. [mlnx: 4197]

This patch removes p_hca_dev field of the upper CA interface (ci_interface_t), which contains PDO of HCA device.
IBBUS, now sitting over HCA, gets this PDO in add_device function and stores it (in this patch) in new p_hca_dev field in IBAL CA object.
All the usages of ci_interface_t.p_hca_dev  field is replaced by usage of p_hca_dev in IBAL CA object.

p_hca_obj field, added in 2019 patch in RDMA_INTERFACE_VERBS, removed and placed instead of p_hca_dev in ci_interface_t.

Removing of PDO filed from the interface required changing of ib_register_ca prototype (for technical reasons).
It is - an interface function, so the interface version number was increased (IB_CI_INTERFACE_VERSION=5).

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

15 years ago[HW] fixed bugs in low resources flow.
leonidk [Sun, 29 Mar 2009 15:35:10 +0000 (15:35 +0000)]
[HW] fixed bugs in low resources flow.

The bugs found with the help of Verifier  with error injection.

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

15 years ago[MLX4] MLX4_HCA is returned to its original WDF form. [mlnx: 4103]
leonidk [Sun, 29 Mar 2009 15:31:57 +0000 (15:31 +0000)]
[MLX4] MLX4_HCA is returned to its original WDF form. [mlnx: 4103]

The old WDM version is kept for now under a preprocessor flag.

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

15 years ago[IBAL] make IBBUS start up synchronous. event-based implementation.
leonidk [Sun, 29 Mar 2009 15:27:25 +0000 (15:27 +0000)]
[IBAL] make IBBUS start up synchronous. event-based implementation.

IBBUS start up was two-phased by design, because HCA, sitting in another stack, could have come later them IBAL.
Now it can't happen. So i added a wait on event at the end of the first phase, which is posted at the end of the second phase - PnP notification on arrival of HCA.

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

15 years ago[WinOF] cleanup svn database - readd win7 without errors.
stansmith [Wed, 25 Mar 2009 22:56:19 +0000 (22:56 +0000)]
[WinOF] cleanup svn database - readd win7 without errors.

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

15 years ago[WinOF] include tool qlgcvnic_config.exe
stansmith [Wed, 25 Mar 2009 22:33:43 +0000 (22:33 +0000)]
[WinOF] include tool qlgcvnic_config.exe

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

15 years agowinverbs: update copyright information
shefty [Wed, 25 Mar 2009 22:19:52 +0000 (22:19 +0000)]
winverbs: update copyright information

Last patch series included modifications based on patches from MS.

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

15 years ago[QLGC VNIC] fixed typo.
aestrin [Wed, 25 Mar 2009 16:53:05 +0000 (16:53 +0000)]
[QLGC VNIC] fixed typo.

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

15 years ago[MLX4] cleanup.
leonidk [Wed, 25 Mar 2009 16:02:48 +0000 (16:02 +0000)]
[MLX4] cleanup.

Signed off by: Stan Smith[stan.smith@intel.com]

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

15 years ago[QLGC VNIC] copyright & .rc file inclusion/build. Submitted by Stan Smith [stan.smith...
aestrin [Wed, 25 Mar 2009 12:32:02 +0000 (12:32 +0000)]
[QLGC VNIC] copyright & .rc file inclusion/build. Submitted by Stan Smith [stan.smith@intel.com]

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

15 years ago[ETC] support Windows 7
stansmith [Wed, 25 Mar 2009 00:21:27 +0000 (00:21 +0000)]
[ETC] support Windows 7

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

15 years ago[ND] pseudo support Windows 7. We really need to get MS on the move and provide src...
stansmith [Wed, 25 Mar 2009 00:20:05 +0000 (00:20 +0000)]
[ND] pseudo support Windows 7. We really need to get MS on the move and provide src; binaries suck.

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

15 years ago[WinOF] cleanup svn mess.
stansmith [Wed, 25 Mar 2009 00:16:54 +0000 (00:16 +0000)]
[WinOF] cleanup svn mess.

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

15 years ago[WinOF] support Windows 7 (currently disabled)
stansmith [Wed, 25 Mar 2009 00:15:13 +0000 (00:15 +0000)]
[WinOF] support Windows 7 (currently disabled)

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

15 years ago[WinOF] trying to cleanup sn database??
stansmith [Wed, 25 Mar 2009 00:11:05 +0000 (00:11 +0000)]
[WinOF] trying to cleanup sn database??

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

15 years ago[WinOF] Windows 7 supported if wix\win7\bin\HCA exists.
stansmith [Wed, 25 Mar 2009 00:07:14 +0000 (00:07 +0000)]
[WinOF] Windows 7 supported if wix\win7\bin\HCA exists.

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

15 years ago[WinOF] whitespace cleanup
stansmith [Wed, 25 Mar 2009 00:05:55 +0000 (00:05 +0000)]
[WinOF] whitespace cleanup

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

15 years ago[WinOF] remove orphaned files on uninstall
stansmith [Tue, 24 Mar 2009 19:56:08 +0000 (19:56 +0000)]
[WinOF] remove orphaned files on uninstall

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

15 years ago[IBBUS] Fix for hibernate in case of several child devices of IBBUS.
leonidk [Tue, 24 Mar 2009 16:04:45 +0000 (16:04 +0000)]
[IBBUS] Fix for hibernate in case of several child devices of IBBUS.

Signed off by: James Yang

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

15 years ago[IBBUS] boot in SAN environment.
leonidk [Tue, 24 Mar 2009 16:03:15 +0000 (16:03 +0000)]
[IBBUS] boot in SAN environment.

this patch adds a 5s delay to wait for hca up for remote boot in SAN environment.

Signed off by: James Yang

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

15 years ago[QLGC VNIC] VNIC configuration tool.
aestrin [Tue, 24 Mar 2009 15:47:54 +0000 (15:47 +0000)]
[QLGC VNIC] VNIC configuration tool.
Part of the solution for having a vendor defined device created by ibiou. This tool sends device IOCTLs to IBIOU for listing the reachable IOCs and for creation of child PDOs.
Submitted by Deepak Gupta (deepal.gupta@qlogic.com)

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

15 years ago[QLGC VNIC] sending different instance IDs
aestrin [Tue, 24 Mar 2009 15:41:15 +0000 (15:41 +0000)]
[QLGC VNIC] sending different instance IDs
for each viport communicating with the same EVIC IOC.
submitted by Deepak Gupta (deepak.gupta@qlogic.com)

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

15 years ago[IBAL] Only create CEPs for REQs that matched to a listen.
leonidk [Tue, 24 Mar 2009 14:33:44 +0000 (14:33 +0000)]
[IBAL] Only create CEPs for REQs that matched to a listen.

Currently, the CM creates a CEP for an incoming REQ before matching to either a listen or a Peer-to-Peer connection request.  As Peer-to-Peer is not supported, this means that CEPs are created before matching the incoming REQ to a listen.  In the case where there is no listen, this will result in CEPs being created, and then queued for destruction to the timewait timer callback.  Because the CEPs have a timewait time of zero, the timer callback runs as fast as REQs are received, severely affecting system responsiveness.

This patch moves the CEP creation after matching against listens, avoiding creation altogether if there is no listening endpoint.

Signed-off-by: Fab Tillier <ftillier@microsoft.com>
git-svn-id: svn://openib.tc.cornell.edu/gen1@2042 ad392aa1-c5ef-ae45-8dd8-e69d62a5ef86

15 years ago[IBAL] Make CM debug output useful.
leonidk [Tue, 24 Mar 2009 14:31:07 +0000 (14:31 +0000)]
[IBAL] Make CM debug output useful.

Signed off by: Fab Tillier

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

15 years ago[MLX4] Free spinlock in the case of an error.
leonidk [Tue, 24 Mar 2009 13:57:02 +0000 (13:57 +0000)]
[MLX4] Free spinlock in the case of an error.

Signed off by: Tzachi Dar

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

15 years ago[CORE] Expose vendor defined device in ibiou.
leonidk [Mon, 23 Mar 2009 18:49:29 +0000 (18:49 +0000)]
[CORE] Expose vendor defined device in ibiou.

IBIOU driver doesn't create child PDO's on discovering a EVIC IOC.
It's behavior for SRP target IOCs is not altered and child devices for SRP targets will get created on their discovery.

IBIOU keeps a global list of reachable IOCs in iou_globals. IBIOU add/delete entries in this list on IOC ADD and IOC REMOVE PnP events.
User mode utility "qlgcvnic_config" is used to list all the reachable IOCs to the user and then to create the VNIC PDOs.
"qlgcvnic_config" uses device IOCTLs to communicate with the IBIOU driver.
IBIOU creates the devices only if sees that EVIC IOC is reachable from the particular CA.
"qlgcvnic_config" utility writes this device information into the registry also, so that IBIOU can pick up these device creation information on
next reboot.
In initialization phase, IBIOU reads the child device information from the registry and makes a list of VNIC child devices to be created.
On each IOC add events, it traverses the child device list (prepared during initialization) and create the child PDO for matching child device entries.

Signed off by: Deepak Gupta [deepak.gupta@qlogic.com]

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

15 years ago[WinOF] added commands:
stansmith [Mon, 23 Mar 2009 15:49:47 +0000 (15:49 +0000)]
[WinOF] added commands:
  'compf path' to force recompile (for all arch) the specified folder; example 'buildrelease compf core\bus' would rebuild core\bus for all architectures.
  'allf path' force recompile specified folder, run makebin, sign drivers & build installers.

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

15 years ago[IBBUS] __iou/port_was_hibernated() change NTSTATUS --> ib_api_status_t to be consist...
stansmith [Tue, 17 Mar 2009 19:56:21 +0000 (19:56 +0000)]
[IBBUS] __iou/port_was_hibernated() change NTSTATUS --> ib_api_status_t to be consistent with function return.

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

15 years ago[IBBUS] remove unnecessary cast.
stansmith [Tue, 17 Mar 2009 18:24:20 +0000 (18:24 +0000)]
[IBBUS] remove unnecessary cast.

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

15 years ago[DOCS] added QLogic VNIC Child Device Management discussion.
stansmith [Tue, 17 Mar 2009 16:46:30 +0000 (16:46 +0000)]
[DOCS] added QLogic VNIC Child Device Management discussion.

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

15 years ago[IBBUS] remove late binding of BFI to GUID in favor of early binding in fdo_start().
stansmith [Tue, 17 Mar 2009 16:16:06 +0000 (16:16 +0000)]
[IBBUS] remove late binding of BFI to GUID in favor of early binding in fdo_start().

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

15 years ago[MTHCA] mthca_provider.c - prevent dereference of <NULL> mdev or mdev->ext
stansmith [Tue, 17 Mar 2009 16:05:55 +0000 (16:05 +0000)]
[MTHCA] mthca_provider.c - prevent dereference of <NULL> mdev or mdev->ext
hca_pnp.c - change debug print driver name from MLX4 --> MTHCA, white space alignment.

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

15 years ago[DAPL2] missed a endlocal in the exit sequence; use goto to correctly exit with error...
stansmith [Fri, 13 Mar 2009 00:04:46 +0000 (00:04 +0000)]
[DAPL2] missed a endlocal in the exit sequence; use goto to correctly exit with error code.

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

15 years agowinverbs: return STATUS_SUCCESS when reporting a successful disconnect
shefty [Thu, 12 Mar 2009 19:40:21 +0000 (19:40 +0000)]
winverbs: return STATUS_SUCCESS when reporting a successful disconnect

NotifyDisconnect() should complete with STATUS_SUCCESS, rather than an error value if the connection was successfully disconnected.

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

15 years agoMake all funcions no-pagable.
tzachid [Thu, 12 Mar 2009 09:34:52 +0000 (09:34 +0000)]
Make all funcions no-pagable.
Signed off by: jyang@xsigo.com

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

15 years agowinverbs branch: update to SVN 2028
shefty [Wed, 11 Mar 2009 22:43:20 +0000 (22:43 +0000)]
winverbs branch: update to SVN 2028

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

15 years agowinverbs branch: enhanced scalability support for OFED compat libs
shefty [Wed, 11 Mar 2009 22:19:22 +0000 (22:19 +0000)]
winverbs branch: enhanced scalability support for OFED compat libs

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

15 years agolibrdmacm: use comp_channel to enhance scalability.
shefty [Wed, 11 Mar 2009 22:14:37 +0000 (22:14 +0000)]
librdmacm: use comp_channel to enhance scalability.

Use the COMP_CHANNEL abstraction as a common framework for event
reporting and to provide better scalability.

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

15 years agolibibumad: use common error definitions exported from libibverbs
shefty [Wed, 11 Mar 2009 22:13:33 +0000 (22:13 +0000)]
libibumad: use common error definitions exported from libibverbs

verbs.h defines error definitions typically defined in errno.h on linux systems.  Remove duplicate definitions from libibumad.

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

15 years agolibibverbs: use comp_channel to enhance scalability
shefty [Wed, 11 Mar 2009 22:07:21 +0000 (22:07 +0000)]
libibverbs: use comp_channel to enhance scalability

Use the COMP_CHANNEL abstraction as a common framework for event
reporting and to provide better scalability.

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

15 years agoetc/comp_channel: add completion channel abstraction for scalability
shefty [Wed, 11 Mar 2009 21:39:31 +0000 (21:39 +0000)]
etc/comp_channel: add completion channel abstraction for scalability

Add a new abstraction, the completion channel, capable of de-multiplexing
overlapped completion events among multiple queues.

The completion abstraction consists of 3 main components:

COMP_MANAGER
Maps to an IOCP.  The completion manager tracks all completions on any
of its associated channels.  This allows a user to 'poll' the completion
manager to receive notification when a completion event occurs on any
of the channels, similar to polling a set of fd's.

COMP_CHANNEL
Maps to a queue of completed requests.  A user can 'poll' a single channel
for completions if they are only interest in processing events on that
channel.  Internally, polling on a channel will poll the manager for
completions, but only process those associated with the specified channel.

COMP_EVENT
Maps to an overlapped structure.  Operations needing a completion event
reference this structure.  When the event occurs, it is queued to the
correct channel.

The implementation assumes that only one or a very small number of threads
will ever be trying to process events at any one time.  (Based on existing
applications, this is true.)  The abstraction itself is threadless.

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

15 years agolibibverbs/examples: fix IPv6 support
shefty [Wed, 11 Mar 2009 21:37:05 +0000 (21:37 +0000)]
libibverbs/examples: fix IPv6 support

Allow servers to accept connections from IPv4 and IPv6 clients.  Fix based on patch provided by Leonid.

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

15 years agowinverbs branch: enhance OFED compat scalability
shefty [Tue, 10 Mar 2009 22:38:36 +0000 (22:38 +0000)]
winverbs branch: enhance OFED compat scalability

Changes to support better scaling when running with the OFED compat libraries.

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

15 years ago[DAPL2] dt-regression.bat removed in favor of using 'dt-cli IPv4 regression' test.
stansmith [Tue, 10 Mar 2009 16:14:14 +0000 (16:14 +0000)]
[DAPL2] dt-regression.bat removed in favor of using 'dt-cli IPv4 regression' test.

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

15 years ago[DAPL2] clean up dt-cli.bat script
stansmith [Tue, 10 Mar 2009 16:12:50 +0000 (16:12 +0000)]
[DAPL2] clean up dt-cli.bat script
use dt-cli 'regression' over dt-regression.bat as dt-regression was deprecated.

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

15 years ago[CORE,HW,TESTS] remove registration HCA with IBAL.
leonidk [Mon, 9 Mar 2009 08:36:31 +0000 (08:36 +0000)]
[CORE,HW,TESTS] remove registration HCA with IBAL.

This patch removes registration HCA with IBAL, being done upon loading of IBBUS driver.
Instead of it IBBUS requests the upper HCA interface (GUID_RDMA_INTERFACE_VERBS) from HCA and then registers HCA itself.
On unloading it derigesters it back.

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

15 years ago[ipoib] Allow dhcp to work also when the guids are not matched by the GUID to Mac...
tzachid [Sun, 8 Mar 2009 12:00:10 +0000 (12:00 +0000)]
[ipoib] Allow dhcp to work also when the guids are not matched by the GUID to Mac algorithm.

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

15 years agowinverbs branch/libibumad: update index used to store HCA port information
shefty [Fri, 6 Mar 2009 22:37:15 +0000 (22:37 +0000)]
winverbs branch/libibumad: update index used to store HCA port information

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

15 years agowinverbs/branch: add IPv6 support
shefty [Fri, 6 Mar 2009 22:36:23 +0000 (22:36 +0000)]
winverbs/branch: add IPv6 support

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

15 years agoib-diags/ibstat: undo work-around reporting too many ports
shefty [Fri, 6 Mar 2009 22:35:47 +0000 (22:35 +0000)]
ib-diags/ibstat: undo work-around reporting too many ports

A change was made to libibumad to change the index from 0 to 1 in the port array where port information is stored.  We need to undo previous change to ibstat to display all ports now.

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

15 years agolibibumad: match behavior of OFED libibumad wrt ca ports
shefty [Fri, 6 Mar 2009 22:33:11 +0000 (22:33 +0000)]
libibumad: match behavior of OFED libibumad wrt ca ports

The OFED version of libibumad stores a list of ports associated with a umad_ca_t differently based on whether the CA is on a host or is part of a switch.  On a host, the port information is maintained in the port array starting at index 1, not 0.  In this case, umad_ca_t:port[0] is NULL.  Update the WinOF version of libibumad to behave the same.  This fixes an issue with ibstat reporting 1 too many ports.

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

15 years agoperftest: allow server to support both IPv6 and IPv4
shefty [Fri, 6 Mar 2009 22:27:39 +0000 (22:27 +0000)]
perftest: allow server to support both IPv6 and IPv4

Changes based on Leonid's patch to add support for IPv6 and IPv4.  Allow the server to accept incoming connections from IPv6 and IPv4 clients.

Move connection handling code into common location to eliminate code duplication between perftest apps.

Signed-off-by: Leonid Keller <leonid@mellanox.co.il>
Signed-off-by: Sean Hefty <sean.hefty@intel.com>
git-svn-id: svn://openib.tc.cornell.edu/gen1@2013 ad392aa1-c5ef-ae45-8dd8-e69d62a5ef86

15 years ago[DAPL2] DAPL Counters & 2.0.3 extensions to support counter retrieval.
stansmith [Thu, 5 Mar 2009 22:36:58 +0000 (22:36 +0000)]
[DAPL2] DAPL Counters & 2.0.3 extensions to support counter retrieval.
dt-cli.bat - return error codes from script, use for() loop in regression test.
SOURCES - debug version get counters by default.

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

15 years ago[ipoib cm] fix for receive counters.
aestrin [Thu, 5 Mar 2009 15:06:43 +0000 (15:06 +0000)]
[ipoib cm] fix for receive counters.

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

15 years ago[HW] removed mthca_log.rc
leonidk [Thu, 5 Mar 2009 11:11:35 +0000 (11:11 +0000)]
[HW] removed mthca_log.rc

SVN maintains mthca_log.rc, but the build deletes it.  The result is that the mthca directory always shows changes after performing a build.

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

15 years agoib-diags: fix portnum being off by 1
shefty [Tue, 3 Mar 2009 21:17:59 +0000 (21:17 +0000)]
ib-diags: fix portnum being off by 1

Relevent fix has been submitted upstream, but apply this to svn until ib-diags are updated.

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

15 years agowinverbs branch: update to svn 2007
shefty [Tue, 3 Mar 2009 20:51:00 +0000 (20:51 +0000)]
winverbs branch: update to svn 2007

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

15 years ago[DAPL2] incorrect patches for Counters - unwind to svn.2004
stansmith [Tue, 3 Mar 2009 19:24:17 +0000 (19:24 +0000)]
[DAPL2] incorrect patches for Counters - unwind to svn.2004

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

15 years ago[WinOF]
stansmith [Tue, 3 Mar 2009 17:43:53 +0000 (17:43 +0000)]
[WinOF]
  buildrelease.bat - added sign only option
  build-all-MSI.bat - update comments and support 'sign' option
  README_release.txt - WinOF 2.1 beginnings
  Release_notes.htm - WinOF 2.1 beginnings

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

15 years ago[DAPL2] DAPL Counters 2.0.3 & extensions.
stansmith [Tue, 3 Mar 2009 17:38:47 +0000 (17:38 +0000)]
[DAPL2] DAPL Counters 2.0.3 & extensions.

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

15 years ago[ipoib cm] redirection flag could be left uninitialized for default IP packet.
aestrin [Tue, 3 Mar 2009 13:15:57 +0000 (13:15 +0000)]
[ipoib cm] redirection flag could be left uninitialized for default IP packet.

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

15 years ago[ipoib cm] fix for redirection of non-IP packets.
aestrin [Tue, 3 Mar 2009 13:10:42 +0000 (13:10 +0000)]
[ipoib cm] fix for redirection of non-IP packets.
Note: if destination endpoint is not connected large raw packets will be dropped.

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

15 years ago [mlx4] Fix error path on create qp.
tzachid [Tue, 3 Mar 2009 09:45:11 +0000 (09:45 +0000)]
 [mlx4] Fix error path on create qp.

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

15 years ago[mlx4] Fix our error handling in the case of hardware errors.
tzachid [Tue, 3 Mar 2009 08:43:28 +0000 (08:43 +0000)]
[mlx4] Fix our error handling in the case of hardware errors.

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

15 years agogetopt: return '?' if user wants an arg, but none is provided
shefty [Tue, 3 Mar 2009 01:05:53 +0000 (01:05 +0000)]
getopt: return '?' if user wants an arg, but none is provided

If the user specifies that an argument is required, but none is provided, return '?' as the option, rather than NULL as the optarg.  This fixes an issue if the last option specified in the option list requires an argument, but none is provided.

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

15 years agolibibumad: fix return value for RMPP handling
shefty [Tue, 3 Mar 2009 00:50:59 +0000 (00:50 +0000)]
libibumad: fix return value for RMPP handling

Return ENOSPC if the user provided buffer is smaller than the MAD to retrieve from the kernel.  This allows processing of MADs > 256 bytes.

Problem was found by running the saquery ib-diag with RMPP used to return fabric topology information.

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

15 years agoinfiniband-diags: replace ib-diags with latest
shefty [Tue, 3 Mar 2009 00:18:25 +0000 (00:18 +0000)]
infiniband-diags: replace ib-diags with latest

Replace the infiniband_diags port of ib-diags with a version that is in sync with the main management.git tree.  The infiniband-diags tree is current with
git commit 1f5fdf3dfc69733a427520198bcbdd03645bb326.  All executable ib-diags are supported.  (Perl scripts that parse the output are not ported.)

The infiniband-diags directory is a mirror of the infiniband-diags directory of my ib-mgmt.git tree.  This is a clone of the management.git tree, with a 1 line patch added to complete the port from Linux to Windows.

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

15 years agolibibmad: update to commit 1f5fdf3dfc69733a427520198bcbdd03645bb326
shefty [Mon, 2 Mar 2009 23:30:06 +0000 (23:30 +0000)]
libibmad: update to commit 1f5fdf3dfc69733a427520198bcbdd03645bb326

Needed update to exported function list.

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

15 years agoib_types: update SA attribute definitions
shefty [Mon, 2 Mar 2009 22:58:48 +0000 (22:58 +0000)]
ib_types: update SA attribute definitions

To support a direct port of the ib-diags (and eventually opensm), update ib_types.h so that the relevant definitions used by the diags match between OFED and WinOF.  The affected attributes are:

ib_path_rec
ib_vl_arb_element
ib_mad_notice_attr
ib_inform_info
ib_inform_info_record

Users of the attributes are updated accordingly.  In several cases, static inline accessor functions were provided in the ib_types.h header files that were not called by anything.  Rather than update all 29 of those functions, I simply deleted them.

The updates moved the path record attribute to match the 1.2.1 spec version.  The inform info attribute was updated to make it easier to use the structure.

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

15 years agocomplib: add cl_nodenamemap
shefty [Mon, 2 Mar 2009 22:10:14 +0000 (22:10 +0000)]
complib: add cl_nodenamemap

The ib-diags (and possible future opensm port) make use of a 'node name map' that was added to the OFED version of complib.  Add cl_nodenamemap to the WinOF version of complib.

This patch relies on the linux compatibility header patch.  The imported code is basically a direct import of the  OFED code, with an include file change.

This changes complib to using the MSV CRT DLL, rather than NT DLL.

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

15 years agolibibverbs/librdmacm: update calls to winverbs pkey interfaces
shefty [Mon, 2 Mar 2009 21:25:03 +0000 (21:25 +0000)]
libibverbs/librdmacm: update calls to winverbs pkey interfaces

Fixup calls to QueryPkey and FindPkey, which now take a UINT16 as the pkey index, rather than a DWORD.  Fixes a build warning for libibverbs and a build error for librdmacm.

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

15 years agoetc: add generic linux compatibility code
shefty [Sat, 28 Feb 2009 18:50:05 +0000 (18:50 +0000)]
etc: add generic linux compatibility code

To support the porting of OFED code, such as the infiniband-diags, provide a
set of linux compatible include files and functions.

This adds a set of header files under inc/user/linux so #include statements
in code will find them.  In some cases, the header files are blank, but in
others, they contain mappings between the linux calls and equivalent windows
calls.

Where more complex functionality is needed, source files are added under
etc/user to provide it, similar to what was done for getopt.

These headers and source files are used to support the OFED infiniband-diags
in the WinOF build environment.

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

15 years agoperftest: adjust performance counters for ridiculously long Vista time stamping
shefty [Sat, 28 Feb 2009 17:50:43 +0000 (17:50 +0000)]
perftest: adjust performance counters for ridiculously long Vista time stamping

Adjust time stamping to account for lengthy time stamps.  Only keep performance
data on the client side to avoid server time stamping overhead.  Extract out
common performance code into a new module that's included by all the perftests.

Problem was reported by Leonid.

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

15 years agowinverbs branch: update to trunk 1990
shefty [Wed, 25 Feb 2009 19:56:28 +0000 (19:56 +0000)]
winverbs branch: update to trunk 1990

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

15 years agowinverbs branch: mass collection of various changes...
shefty [Wed, 25 Feb 2009 19:30:29 +0000 (19:30 +0000)]
winverbs branch: mass collection of various changes...

Chnages to support ib-diags, perftest updates, and winverb fixes...  Changes will be broken out when submitting into trunk.

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