From owner-freebsd-hackers@FreeBSD.ORG Tue Sep 20 05:26:15 2011 Return-Path: Delivered-To: hackers@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 9B5EF1065672; Tue, 20 Sep 2011 05:26:15 +0000 (UTC) (envelope-from lacombar@gmail.com) Received: from mail-wy0-f182.google.com (mail-wy0-f182.google.com [74.125.82.182]) by mx1.freebsd.org (Postfix) with ESMTP id 10D328FC13; Tue, 20 Sep 2011 05:26:14 +0000 (UTC) Received: by wyh15 with SMTP id 15so180078wyh.13 for ; Mon, 19 Sep 2011 22:26:14 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :cc:content-type:content-transfer-encoding; bh=BU723t4KWqVgpnKQDdl4Fzz6z4uHK+UexplzlfGp2PI=; b=oUdpgY9L9ZKmkTQ+AF/1YO8r0PQNEtZmbfWX8vPFW70Hx8JGGhOpMDyDTXDpIB2MEy fQ4AR3XFi/55Bp0hqtIqhtBol2+MAvRte2uKFR3F4ugXEM5PJXkqwWEunUdj3By7A/6O M957sACsSwgLxROqSUeoalwPiLAWBDQMj8Y+g= MIME-Version: 1.0 Received: by 10.227.175.77 with SMTP id w13mr338936wbz.53.1316494689846; Mon, 19 Sep 2011 21:58:09 -0700 (PDT) Received: by 10.180.95.169 with HTTP; Mon, 19 Sep 2011 21:58:09 -0700 (PDT) In-Reply-To: <4E75B67E.1000802@FreeBSD.org> References: <4E712D11.7040202@FreeBSD.org> <4E75B67E.1000802@FreeBSD.org> Date: Tue, 20 Sep 2011 00:58:09 -0400 Message-ID: From: Arnaud Lacombe To: Andriy Gapon Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Cc: hackers@freebsd.org, Fabien Thomas Subject: Re: my git development snapshot(s) X-BeenThere: freebsd-hackers@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Technical Discussions relating to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 20 Sep 2011 05:26:15 -0000 Hi, [adding Fabien Thomas to the CC: list] On Sun, Sep 18, 2011 at 5:14 AM, Andriy Gapon wrote: > > Just decided to follow the global trends and trying to throw all of my > local/private changes at you in hope that the "crowd-sourcing magic" migh= t > somehow happen :-) =A0This seems definitely easier than carefully produci= ng the > patch files and keeping them up-to-date. > > So, my newly cloned gitorious repository: > https://gitorious.org/~avg/freebsd/avgbsd > I see that this tree is a clone of: https://gitorious.org/freebsd/freebsd One issue I've got with that tree, is that it is not usable for any serious work because of the following: % git merge-base origin/master origin/svn_stable_8 % echo $? 1 The whole FreeBSD 8.x branch is on its own. However: % git merge-base origin/master origin/svn_stable_7 bdad8b50a25980737a8e00047f41fc1e588fc9e5 % git show bdad8b50a25980737a8e00047f41fc1e588fc9e5 commit bdad8b50a25980737a8e00047f41fc1e588fc9e5 Author: obrien Date: Wed Oct 10 16:59:14 2007 +0000 For 7.0 make the shared lib "version" '3'. Approved by: re(kensmith) git-svn-id: svn://svn.freebsd.org/base/head@172505 ccf9f872-aa2e-dd11-9fc8-001c23d0bc1f So something should have gone wrong when the mirror was created with the 8-STABLE branch as its root commit is: commit 47c9e1cbe6e19ab62a112f67fa4baf081aa213be Author: jfv Date: Fri Sep 4 22:37:03 2009 +0000 This patch seperates the control of header split from LRO (which it was previously dependent on), LRO gets turned off when bridging but its been found that header split is still a performance win in that cas= e. Secondly, there was some interface specific control in stats code that has been missing, and a logic error that resulted in bogus reporting. Thanks to Manish and John of LineRateSystems for the report and help in this code. Approved by: re git-svn-id: http://svn.freebsd.org/base/stable/8@196843 ccf9f872-aa2e-dd11-9fc8-001c23d0bc1f which should rather be: commit d4a6bb6e18d2601fe08d76be4610ae4a303574b2 Author: ache Date: Fri Jan 21 13:31:02 2005 +0000 Whitespace/style tweaking of prev. commit. Noted by: bde git-svn-id: svn://svn.freebsd.org/base/head@140577 ccf9f872-aa2e-dd11-9fc8-001c23d0bc1f Regards, - Arnaud > And the first branch of interest: > https://gitorious.org/~avg/freebsd/avgbsd/commits/devel-20110915 > > This is a snapshot of almost all of my local changes to the FreeBSD src t= ree. > Please note that the branch is not intended to be public in the git sense= . =A0That > is, there will be no linear history - I periodically rebase my changes on= top of > the svn head and also frequently reshuffle/merge/split commits. > The snapshot is not tidied up, there are quite a few commits that should = be > merged into other commits, some commit messages are not accurate/pretty, = etc. > The older the commits, the more mature they are supposed to be. > > Based on the above, no new commits are expected to this snapshot branch. > I will produce new snapshot branches from time to time. > > I am posting this information to this list initially, later I plan to sha= re the > code with the wider audience e.g. via hackers@. > > P.S. This code sharing is made easier for me by git, Gitorious and "git r= ebase > --onto" in particular. =A0Thanks to Fabien Thomas for the initial FreeBSD= clone > repository at Gitorious! > > -- > Andriy Gapon > _______________________________________________ > freebsd-hackers@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-hackers > To unsubscribe, send any mail to "freebsd-hackers-unsubscribe@freebsd.org= " >