From owner-svn-src-projects@FreeBSD.ORG Mon Jan 3 06:40:40 2011 Return-Path: Delivered-To: svn-src-projects@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 26CE61065670; Mon, 3 Jan 2011 06:40:40 +0000 (UTC) (envelope-from jeff@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id F12B88FC12; Mon, 3 Jan 2011 06:40:39 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.3/8.14.3) with ESMTP id p036edQV077556; Mon, 3 Jan 2011 06:40:39 GMT (envelope-from jeff@svn.freebsd.org) Received: (from jeff@localhost) by svn.freebsd.org (8.14.3/8.14.3/Submit) id p036edXb077553; Mon, 3 Jan 2011 06:40:39 GMT (envelope-from jeff@svn.freebsd.org) Message-Id: <201101030640.p036edXb077553@svn.freebsd.org> From: Jeff Roberson Date: Mon, 3 Jan 2011 06:40:39 +0000 (UTC) To: src-committers@freebsd.org, svn-src-projects@freebsd.org X-SVN-Group: projects MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r216915 - in projects/ofed/head/contrib/ofed: libibverbs/src usr.lib/libibverbs X-BeenThere: svn-src-projects@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the src " projects" tree" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 03 Jan 2011 06:40:40 -0000 Author: jeff Date: Mon Jan 3 06:40:39 2011 New Revision: 216915 URL: http://svn.freebsd.org/changeset/base/216915 Log: - Fix a verbs compile error introduced in linux. - Add the new man pages to the build. Sponsored by: Isilon Systems, iX Systems, and Panasas. Modified: projects/ofed/head/contrib/ofed/libibverbs/src/verbs.c projects/ofed/head/contrib/ofed/usr.lib/libibverbs/Makefile Modified: projects/ofed/head/contrib/ofed/libibverbs/src/verbs.c ============================================================================== --- projects/ofed/head/contrib/ofed/libibverbs/src/verbs.c Mon Jan 3 06:35:40 2011 (r216914) +++ projects/ofed/head/contrib/ofed/libibverbs/src/verbs.c Mon Jan 3 06:40:39 2011 (r216915) @@ -717,8 +717,8 @@ static int is_tagged_vlan(const union ib return tag < 0x1000; } -int __ibv_resolve_eth_gid(struct ibv_pd *pd, uint8_t port_num, - const union ibv_gid *dgid, uint8_t sgid_index, +int __ibv_resolve_eth_gid(const struct ibv_pd *pd, uint8_t port_num, + union ibv_gid *dgid, uint8_t sgid_index, uint8_t mac[], uint16_t *vlan, uint8_t *tagged, uint8_t *is_mcast) { Modified: projects/ofed/head/contrib/ofed/usr.lib/libibverbs/Makefile ============================================================================== --- projects/ofed/head/contrib/ofed/usr.lib/libibverbs/Makefile Mon Jan 3 06:35:40 2011 (r216914) +++ projects/ofed/head/contrib/ofed/usr.lib/libibverbs/Makefile Mon Jan 3 06:40:39 2011 (r216915) @@ -28,7 +28,9 @@ MAN= ibv_alloc_pd.3 ibv_asyncwatch.1 ibv ibv_post_srq_recv.3 ibv_query_device.3 ibv_query_gid.3 \ ibv_query_pkey.3 ibv_query_port.3 ibv_query_qp.3 ibv_query_srq.3 \ ibv_rate_to_mult.3 ibv_rc_pingpong.1 ibv_reg_mr.3 ibv_req_notify_cq.3 \ - ibv_resize_cq.3 ibv_srq_pingpong.1 ibv_uc_pingpong.1 ibv_ud_pingpong.1 + ibv_resize_cq.3 ibv_srq_pingpong.1 ibv_uc_pingpong.1 ibv_ud_pingpong.1 \ + ibv_query_xrc_rcv_qp.3 ibv_reg_xrc_rcv_qp.3 ibv_modify_xrc_rcv_qp.3 \ + verbs.7 ibv_create_xrc_rcv_qp.3 ibv_open_xrc_domain.3 CFLAGS+= -DHAVE_CONFIG_H -DIBV_CONFIG_DIR=\"/etc/ibverbs/\"