Re: [PATCH libibverbs v5 3/7] livibverbs: Add support for XRC SRQs

2013-06-04 Thread Steve Wise
On 6/3/2013 6:30 PM, Hefty, Sean wrote: enum verbs_context_mask { VERBS_CONTEXT_XRCD = 1 << 0, - VERBS_CONTEXT_RESERVED = 1 << 1 + VERBS_CONTEXT_SRQ = 1 << 1, + VERBS_CONTEXT_RESERVED = 1 << 2 }; Would VERBS_CONTEXT_XSRQ or VERBS_CONTEXT_SRQ_EX be mor

RE: [PATCH libibverbs v5 3/7] livibverbs: Add support for XRC SRQs

2013-06-03 Thread Hefty, Sean
> > enum verbs_context_mask { > > VERBS_CONTEXT_XRCD = 1 << 0, > > - VERBS_CONTEXT_RESERVED = 1 << 1 > > + VERBS_CONTEXT_SRQ = 1 << 1, > > + VERBS_CONTEXT_RESERVED = 1 << 2 > > }; > > Would VERBS_CONTEXT_XSRQ or VERBS_CONTEXT_SRQ_EX be more clear? The structure being ex

Re: [PATCH libibverbs v5 3/7] livibverbs: Add support for XRC SRQs

2013-06-03 Thread Steve Wise
On 3/26/2013 4:14 PM, sean.he...@intel.com wrote: From: Sean Hefty XRC support requires the use of a new type of SRQ. XRC shared receive queues: xrc srq's are similar to normal srq's, except that they are bound to an xrcd, rather than to a protection domain. Based on the current spec and impl

[PATCH libibverbs v5 3/7] livibverbs: Add support for XRC SRQs

2013-03-26 Thread sean . hefty
From: Sean Hefty XRC support requires the use of a new type of SRQ. XRC shared receive queues: xrc srq's are similar to normal srq's, except that they are bound to an xrcd, rather than to a protection domain. Based on the current spec and implementation, they are only usable with xrc qps. To s