From owner-svn-src-head@FreeBSD.ORG Thu Oct 30 22:50:17 2014 Return-Path: Delivered-To: svn-src-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 171F6101; Thu, 30 Oct 2014 22:50:17 +0000 (UTC) Received: from mail-wg0-x232.google.com (mail-wg0-x232.google.com [IPv6:2a00:1450:400c:c00::232]) (using TLSv1 with cipher ECDHE-RSA-RC4-SHA (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 3371EDE8; Thu, 30 Oct 2014 22:50:16 +0000 (UTC) Received: by mail-wg0-f50.google.com with SMTP id z12so5273888wgg.23 for ; Thu, 30 Oct 2014 15:50:14 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=date:from:to:cc:subject:message-id:references:mime-version :content-type:content-disposition:in-reply-to:user-agent; bh=WToyaNnulDXkAYef5IE0fVpdIOGOzPbXPkbuWn2zt58=; b=vEI5ty8+CN4+SIG0B20WVOZsM2Td1XSI1l33F5U8FmIb6kqW62p27Zp/4IytmzM1LI cJJRgLEANkxsC3+gy5xNgdCt6EKRtm+Lu/AYSwTVYB8moHE4p21Xys488wTrnmjjK3za 3orhSTqbZK0vJKaP/JDI9rynNaCAIrE6+xy/ufVphToVlMfvSO80zizvfgx/v+CKo3VC dkImO+0kjijOVeP734SeeFR3o24AKKmew9CXa6GU/g2y61Ha7oXWoluonL0PbUcJnCLl zMwd7uEc0sDrad2BJNG4l1eBGjyZWbtZG9Yy7tBDRCgRLNDT2rIC47VV2wZubyIwrCwH WDfQ== X-Received: by 10.180.8.233 with SMTP id u9mr23220739wia.19.1414709414377; Thu, 30 Oct 2014 15:50:14 -0700 (PDT) Received: from dft-labs.eu (n1x0n-1-pt.tunnel.tserv5.lon1.ipv6.he.net. [2001:470:1f08:1f7::2]) by mx.google.com with ESMTPSA id 10sm10192035wjs.21.2014.10.30.15.50.13 for (version=TLSv1.2 cipher=RC4-SHA bits=128/128); Thu, 30 Oct 2014 15:50:13 -0700 (PDT) Date: Thu, 30 Oct 2014 23:50:11 +0100 From: Mateusz Guzik To: Benjamin Kaduk Subject: Re: svn commit: r273707 - in head/sys: compat/freebsd32 kern kgssapi netinet nfs nlm sys Message-ID: <20141030225011.GA22357@dft-labs.eu> References: <201410261942.s9QJgjch081623@svn.freebsd.org> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.5.21 (2010-09-15) Cc: "svn-src-head@freebsd.org" , "svn-src-all@freebsd.org" , "src-committers@freebsd.org" , Mateusz Guzik X-BeenThere: svn-src-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the src tree for head/-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 30 Oct 2014 22:50:17 -0000 On Thu, Oct 30, 2014 at 06:02:18PM -0400, Benjamin Kaduk wrote: > On Sun, Oct 26, 2014 at 3:42 PM, Mateusz Guzik wrote: > > > Author: mjg > > Date: Sun Oct 26 19:42:44 2014 > > New Revision: 273707 > > URL: https://svnweb.freebsd.org/changeset/base/273707 > > > > Log: > > Avoid dynamic syscall overhead for statically compiled modules. > > > > > > --- head/sys/sys/sysent.h Sun Oct 26 19:03:06 2014 (r273706) > > +++ head/sys/sys/sysent.h Sun Oct 26 19:42:44 2014 (r273707) > > @@ -242,10 +248,10 @@ struct syscall_helper_data { > > } > > > > int syscall_register(int *offset, struct sysent *new_sysent, > > - struct sysent *old_sysent); > > + struct sysent *old_sysent, int flags); > > > > Should __FreeBSD_version have been bumped for the KPI change? > I am getting pkg-fallout mail that net/openafs fails to build, now. > Right, bumped in https://svnweb.freebsd.org/changeset/base/273875 Thanks for reporting. -- Mateusz Guzik