From owner-svn-src-all@FreeBSD.ORG Thu Oct 30 22:02:19 2014 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.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id F0385CB1; Thu, 30 Oct 2014 22:02:18 +0000 (UTC) Received: from mail-pa0-x232.google.com (mail-pa0-x232.google.com [IPv6:2607:f8b0:400e:c03::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 B60C79BC; Thu, 30 Oct 2014 22:02:18 +0000 (UTC) Received: by mail-pa0-f50.google.com with SMTP id eu11so6383674pac.9 for ; Thu, 30 Oct 2014 15:02:18 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :cc:content-type; bh=I992PKFa96mO5HMzoKUsBjaT9V7mxMgiALHm7pYDNR4=; b=e22QAKsd2OSVnmdtAqQWfWhhxiVwqdCBaudTIOSDPSzG0P9s+NPLT9JJNElYINR66O MmZJ9P7U9jOLP6xOBnpYM0bC1TV4nvjLBfmQZ+/3S9mpNhNnaOtCOumsUe1bHQqvNRGt da2aOyT/cRoLf7eSdQQg2E0sxIemaEUKWqx38ndaSzSXn44rMOWottS2DwWThyabe3g8 YKOcvOl0zISunskYOuFZfrEh4pL2jRTwIwHnWldpyUFVQAtqTaHhBariciEkkJeFP/BZ h2uMGHBrcvAyG5vgg/PO3XHJuAuUNV4bOP3D6vk+T0oHgunq+SM/O8rmhM/0NApRPnL4 NV5Q== MIME-Version: 1.0 X-Received: by 10.70.133.72 with SMTP id pa8mr19979523pdb.59.1414706538240; Thu, 30 Oct 2014 15:02:18 -0700 (PDT) Received: by 10.70.9.132 with HTTP; Thu, 30 Oct 2014 15:02:18 -0700 (PDT) In-Reply-To: <201410261942.s9QJgjch081623@svn.freebsd.org> References: <201410261942.s9QJgjch081623@svn.freebsd.org> Date: Thu, 30 Oct 2014 18:02:18 -0400 Message-ID: Subject: Re: svn commit: r273707 - in head/sys: compat/freebsd32 kern kgssapi netinet nfs nlm sys From: Benjamin Kaduk To: Mateusz Guzik Content-Type: text/plain; charset=UTF-8 X-Content-Filtered-By: Mailman/MimeDel 2.1.18-1 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.18-1 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: Thu, 30 Oct 2014 22:02:19 -0000 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. -Ben