From owner-svn-src-all@FreeBSD.ORG Mon Aug 26 11:52:53 2013 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id 4E4607DE; Mon, 26 Aug 2013 11:52:53 +0000 (UTC) (envelope-from glebius@FreeBSD.org) Received: from cell.glebius.int.ru (glebius.int.ru [81.19.69.10]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 2734F2D13; Mon, 26 Aug 2013 11:52:51 +0000 (UTC) Received: from cell.glebius.int.ru (localhost [127.0.0.1]) by cell.glebius.int.ru (8.14.7/8.14.7) with ESMTP id r7QBqopn060032; Mon, 26 Aug 2013 15:52:50 +0400 (MSK) (envelope-from glebius@FreeBSD.org) Received: (from glebius@localhost) by cell.glebius.int.ru (8.14.7/8.14.7/Submit) id r7QBqoCl060031; Mon, 26 Aug 2013 15:52:50 +0400 (MSK) (envelope-from glebius@FreeBSD.org) X-Authentication-Warning: cell.glebius.int.ru: glebius set sender to glebius@FreeBSD.org using -f Date: Mon, 26 Aug 2013 15:52:50 +0400 From: Gleb Smirnoff To: Alfred Perlstein Subject: Re: svn commit: r254823 - head/sys/net Message-ID: <20130826115249.GS4574@FreeBSD.org> References: <201308250155.r7P1tF3w026623@svn.freebsd.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <201308250155.r7P1tF3w026623@svn.freebsd.org> User-Agent: Mutt/1.5.21 (2010-09-15) Cc: svn-src-head@freebsd.org, svn-src-all@freebsd.org, src-committers@freebsd.org X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 26 Aug 2013 11:52:53 -0000 On Sun, Aug 25, 2013 at 01:55:15AM +0000, Alfred Perlstein wrote: A> Author: alfred A> Date: Sun Aug 25 01:55:14 2013 A> New Revision: 254823 A> URL: http://svnweb.freebsd.org/changeset/base/254823 A> A> Log: A> Remove the #ifdef OFED from the 20 byte mac in struct llentry. A> A> With this change it is now possible to build the entire infiniband A> stack as modules and load it dynamically including IP over IB. A> A> Modified: A> head/sys/net/if_llatbl.h A> A> Modified: head/sys/net/if_llatbl.h A> ============================================================================== A> --- head/sys/net/if_llatbl.h Sun Aug 25 00:34:44 2013 (r254822) A> +++ head/sys/net/if_llatbl.h Sun Aug 25 01:55:14 2013 (r254823) A> @@ -75,9 +75,7 @@ struct llentry { A> union { A> uint64_t mac_aligned; A> uint16_t mac16[3]; A> -#ifdef OFED A> uint8_t mac8[20]; /* IB needs 20 bytes. */ A> -#endif A> } ll_addr; A> A> /* XXX af-private? */ #include "opt_ofed.h" should be removed from the file as well. -- Totus tuus, Glebius.