From owner-svn-src-all@FreeBSD.ORG Mon Aug 26 14:01:09 2013 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id 759F1E09; Mon, 26 Aug 2013 14:01:09 +0000 (UTC) (envelope-from alfred@freebsd.org) Received: from elvis.mu.org (elvis.mu.org [192.203.228.196]) by mx1.freebsd.org (Postfix) with ESMTP id 60F452642; Mon, 26 Aug 2013 14:01:09 +0000 (UTC) Received: from Alfreds-MacBook-Pro-9.local (unknown [12.19.232.10]) by elvis.mu.org (Postfix) with ESMTPSA id 2BA5A1A3C19; Mon, 26 Aug 2013 07:01:03 -0700 (PDT) Message-ID: <521B5F9E.5020808@freebsd.org> Date: Mon, 26 Aug 2013 07:01:02 -0700 From: Alfred Perlstein User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.7; rv:17.0) Gecko/20130801 Thunderbird/17.0.8 MIME-Version: 1.0 To: Gleb Smirnoff Subject: Re: svn commit: r254823 - head/sys/net References: <201308250155.r7P1tF3w026623@svn.freebsd.org> <20130826115249.GS4574@FreeBSD.org> In-Reply-To: <20130826115249.GS4574@FreeBSD.org> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit 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 14:01:09 -0000 Thanks Gleb. Will do. -Alfred On 8/26/13 4:52 AM, Gleb Smirnoff wrote: > 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. >