[Patch] ib/mlx4: Fix build error on platforms where UL is not 64bit

2012-10-16 Thread Doug Ledford
Line 110 uses UL as a compiler cast for the 0x constant, but it's not large enough to hold a 64bit value on 32bit arches. Use ULL instead. Signed-off-by: Doug Ledford --- drivers/infiniband/hw/mlx4/alias_GUID.c |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/drivers/inf

RE: [PATCH] rdma_xserver/client: Fix man page formatting

2012-10-16 Thread Hefty, Sean
thanks! applied -- To unsubscribe from this list: send the line "unsubscribe linux-rdma" in the body of a message to majord...@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html

RE: [PATCH V4 libmlx4] Infra-structure changes to support verbs extensions

2012-10-16 Thread Hefty, Sean
> ABI version 2 is really not supported any more in verbs ext mode. > The idea in this change was to fail the driver registration and not wait that > ibv_cmd_get_context will be called and fail. > See patch for libibverbs. > > To have a correct error message we can increase MLX4_UVERBS_MIN_ABI_VER

[PATCH] rdma_xserver/client: Fix man page formatting

2012-10-16 Thread Roland Dreier
From: Roland Dreier Putting 'r' at the beginning of a line in the nroff source for man pages is confusing to nroff because lines that start with a single quote character ' or a dot character . are treated as control lines, which is not what's intended here. Some of the man page text ends up left

RE: [PATCH V4 libmlx4] Infra-structure changes to support verbs extensions

2012-10-16 Thread Hefty, Sean
> @@ -226,7 +225,7 @@ static struct ibv_device *mlx4_driver_init(const char > *uverbs_sys_path, > return NULL; > > found: > - if (abi_version < MLX4_UVERBS_MIN_ABI_VERSION || > + if (abi_version <= MLX4_UVERBS_MIN_ABI_VERSION || > abi_version > MLX4_UVERBS_MAX_ABI_VERSION)

IBV_WR_SEND_WITH_IMM failure

2012-10-16 Thread Xavier Guérin
Hello list, I am having a puzzling error with IBV_WR_SEND_WITH_IMM. Polling fails with IBV_WC_RETRY_EXC_ERR when I use buffer bigger that 1KB. Send/Receive buffers are of a larger size and properly registered. Incidentally, it fails when exceeding the MTU size of my device, a Connect-X 3 VPI conf

Re: Is there a way to transfer a rdma connection between userspace processes?

2012-10-16 Thread Stefan (metze) Metzmacher
Am 16.10.2012 16:25, schrieb Stefan (metze) Metzmacher: > @Yann and Steve: thanks for the feedback! > I'm currently researching how to implement SMBDirect [MS-SMBD] together with the multi channel feature of SMB 3.0 in Samba. As Samba currently uses one process per tcp connecti

Re: Is there a way to transfer a rdma connection between userspace processes?

2012-10-16 Thread Stefan (metze) Metzmacher
@Yann and Steve: thanks for the feedback! >>> I'm currently researching how to implement SMBDirect [MS-SMBD] >>> together with the multi channel feature of SMB 3.0 in Samba. >>> >>> As Samba currently uses one process per tcp connection >>> and maintains a lot of in memory state within the process

[PATCH] infiniband-diags/src/saquery.c: New option to saquery InformInfoRecord (IIR)

2012-10-16 Thread Dan Ben Yosef
From: Dan Ben Yosef Add the option to display the InformInfoRecord by SubscriberGid Signed-off-by: Dan Ben Yosef --- src/saquery.c | 30 ++ 1 files changed, 26 insertions(+), 4 deletions(-) diff --git a/src/saquery.c b/src/saquery.c index 60c78ed..f13def9 100644