From patchwork Fri Oct 22 22:43:43 2010 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Jason Gunthorpe X-Patchwork-Id: 278231 Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by demeter1.kernel.org (8.14.4/8.14.3) with ESMTP id o9MMhjaq012812 for ; Fri, 22 Oct 2010 22:43:45 GMT Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751233Ab0JVWno (ORCPT ); Fri, 22 Oct 2010 18:43:44 -0400 Received: from quartz.orcorp.ca ([139.142.54.143]:38770 "EHLO quartz.orcorp.ca" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751032Ab0JVWno (ORCPT ); Fri, 22 Oct 2010 18:43:44 -0400 Received: from [10.0.0.11] (helo=jggl.edm.orcorp.ca) by quartz.orcorp.ca with esmtps (TLS-1.0:RSA_AES_256_CBC_SHA1:32) (Exim 4.68) (envelope-from ) id 1P9QKt-0000td-JA; Fri, 22 Oct 2010 16:43:43 -0600 Received: from jgg by jggl.edm.orcorp.ca with local (Exim 4.69) (envelope-from ) id 1P9QKt-0000vo-Fl; Fri, 22 Oct 2010 16:43:43 -0600 Date: Fri, 22 Oct 2010 16:43:43 -0600 From: Jason Gunthorpe To: Ralph Campbell , RDMA list Subject: [PATCH] [libipathverbs] Fix 32 bit libipathverbs Message-ID: <20101022224343.GA3573@obsidianresearch.com> MIME-Version: 1.0 Content-Disposition: inline User-Agent: Mutt/1.5.18 (2008-05-17) X-Broken-Reverse-DNS: no host name found for IP address 10.0.0.11 Sender: linux-rdma-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-rdma@vger.kernel.org X-Greylist: IP, sender and recipient auto-whitelisted, not delayed by milter-greylist-4.2.3 (demeter1.kernel.org [140.211.167.41]); Fri, 22 Oct 2010 22:43:45 +0000 (UTC) diff --git a/src/ipathverbs.h b/src/ipathverbs.h index 5ebd79d..e824fd6 100644 --- a/src/ipathverbs.h +++ b/src/ipathverbs.h @@ -101,6 +101,7 @@ struct ipath_cq { struct ipath_rwqe { uint64_t wr_id; uint8_t num_sge; + uint8_t padding[7]; struct ibv_sge sg_list[0]; };