Re: [ewg] [PATCH] ofed_docs: update NFSRDMA docs

2009-10-11 Thread Vladimir Sokolovsky
Jon Mason wrote: Update the OFED documentation for NFSRDMA to be correct for 1.5. Signed-Off-By: Jon Mason j...@opengridcomputing.com diff --git a/nfs-rdma.release-notes.txt b/nfs-rdma.release-notes.txt index fb25efb..5e6a2f2 100644 --- a/nfs-rdma.release-notes.txt +++

Re: [ewg] [PATCH] mlx4: remove limitation on LSO header size

2009-10-11 Thread Eli Cohen
On Wed, Oct 07, 2009 at 03:45:16PM -0700, Roland Dreier wrote: + *blh = unlikely(halign 64) ? 1 : 0; This idiom of (boolean condition) ? 1 : 0 looks odd to me... doesn't (halign 64) already evaluate to 1 or 0 anyway? Does the unlikely() actually affect code generation here? True,