RE: [ceph-users] Help needed porting Ceph to RSockets

2013-08-13 Thread Hefty, Sean
> > I found a workaround for my (our) problem: in the librdmacm > > code, rsocket.c, there is a global constant polling_time, which > > is set to 10 microseconds at the moment. > > > > I raise this to 1 - and all of a sudden things work nicely. > > I am adding the linux-rdma list to CC so Sean

[PATCH] IB/qib: fix sparse warnings in qib_user_sdma.c

2013-08-13 Thread Mike Marciniszyn
Commit fd1b423 ("IB/qib: Improve SDMA performance") introduced some new sparse warnings. This patch eliminates all sparse warnings in this file. Reported-by: Fengguang Wu Reviewed-by: Dean Luick Signed-off-by: Mike Marciniszyn --- drivers/infiniband/hw/qib/qib_user_sdma.c |4 ++-- 1 file

Re: [PATCH V4 for-next 2/4] IB/core: Infra-structure to support verbs extensions through uverbs

2013-08-13 Thread Roland Dreier
> Add Infra-structure to support extended uverbs capabilities in a > forward/backward > manner. Uverbs command opcodes which are based on the verbs extensions > approach should > be greater or equal to IB_USER_VERBS_CMD_THRESHOLD. They have new header > format > and processed a bit differently.

Re: [PATCH] IPoIB: Fix race in deleting ipoib_neigh entries

2013-08-13 Thread Roland Dreier
Thanks all, 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 13/16] qib: clean up unnecessary MSI/MSI-X capability find

2013-08-13 Thread Marciniszyn, Mike
> Subject: [PATCH 13/16] qib: clean up unnecessary MSI/MSI-X capability find > Thanks for the patch! Acked-by: Mike Marciniszyn -- 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.kern

Re: [ceph-users] Help needed porting Ceph to RSockets

2013-08-13 Thread Atchley, Scott
On Aug 13, 2013, at 10:06 AM, Andreas Bluemle wrote: > Hi Matthew, > > I found a workaround for my (our) problem: in the librdmacm > code, rsocket.c, there is a global constant polling_time, which > is set to 10 microseconds at the moment. > > I raise this to 1 - and all of a sudden things

Re: [PATCH] IPoIB: Fix race in deleting ipoib_neigh entries

2013-08-13 Thread Shlomo Pongratz
On 8/13/2013 11:11 AM, Jack Wang wrote: On 08/13/2013 09:54 AM, Or Gerlitz wrote: On 09/08/2013 03:44, Jim Foraker wrote: In several places, this snippet is used when removing neigh entries: list_del(&neigh->list); ipoib_neigh_free(neigh); The list_del() removes neigh from the assoc

Re: [PATCH] IPoIB: Fix race in deleting ipoib_neigh entries

2013-08-13 Thread Jack Wang
On 08/13/2013 09:54 AM, Or Gerlitz wrote: > On 09/08/2013 03:44, Jim Foraker wrote: >> In several places, this snippet is used when removing neigh entries: >> >> list_del(&neigh->list); >> ipoib_neigh_free(neigh); >> >> The list_del() removes neigh from the associated struct ipoib_path, whi

Re: [PATCH] IPoIB: Fix race in deleting ipoib_neigh entries

2013-08-13 Thread Or Gerlitz
On 09/08/2013 03:44, Jim Foraker wrote: In several places, this snippet is used when removing neigh entries: list_del(&neigh->list); ipoib_neigh_free(neigh); The list_del() removes neigh from the associated struct ipoib_path, while ipoib_neigh_free() removes neigh from the devic