From owner-svn-src-all@freebsd.org Fri Apr 27 16:01:06 2018 Return-Path: Delivered-To: svn-src-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 24C47FABBAB; Fri, 27 Apr 2018 16:01:06 +0000 (UTC) (envelope-from kostikbel@gmail.com) Received: from kib.kiev.ua (kib.kiev.ua [IPv6:2001:470:d5e7:1::1]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 702E87A6A6; Fri, 27 Apr 2018 16:01:05 +0000 (UTC) (envelope-from kostikbel@gmail.com) Received: from tom.home (kib@localhost [127.0.0.1]) by kib.kiev.ua (8.15.2/8.15.2) with ESMTPS id w3RG0r8a053635 (version=TLSv1.2 cipher=DHE-RSA-AES256-GCM-SHA384 bits=256 verify=NO); Fri, 27 Apr 2018 19:00:57 +0300 (EEST) (envelope-from kostikbel@gmail.com) DKIM-Filter: OpenDKIM Filter v2.10.3 kib.kiev.ua w3RG0r8a053635 Received: (from kostik@localhost) by tom.home (8.15.2/8.15.2/Submit) id w3RG0rFR053631; Fri, 27 Apr 2018 19:00:53 +0300 (EEST) (envelope-from kostikbel@gmail.com) X-Authentication-Warning: tom.home: kostik set sender to kostikbel@gmail.com using -f Date: Fri, 27 Apr 2018 19:00:53 +0300 From: Konstantin Belousov To: Mateusz Guzik Cc: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: Re: svn commit: r333066 - head/sys/sys Message-ID: <20180427160053.GM6887@kib.kiev.ua> References: <201804271550.w3RFoMoW072131@repo.freebsd.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <201804271550.w3RFoMoW072131@repo.freebsd.org> User-Agent: Mutt/1.9.5 (2018-04-13) X-Spam-Status: No, score=-2.0 required=5.0 tests=ALL_TRUSTED,BAYES_00, DKIM_ADSP_CUSTOM_MED,FREEMAIL_FROM,NML_ADSP_CUSTOM_MED autolearn=no autolearn_force=no version=3.4.1 X-Spam-Checker-Version: SpamAssassin 3.4.1 (2015-04-28) on tom.home X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.25 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: Fri, 27 Apr 2018 16:01:06 -0000 On Fri, Apr 27, 2018 at 03:50:22PM +0000, Mateusz Guzik wrote: > Author: mjg > Date: Fri Apr 27 15:50:22 2018 > New Revision: 333066 > URL: https://svnweb.freebsd.org/changeset/base/333066 > > Log: > Unbreak world build after r333064 > > Reported by: O. Hartmann > > Modified: > head/sys/sys/sysent.h > > Modified: head/sys/sys/sysent.h > ============================================================================== > --- head/sys/sys/sysent.h Fri Apr 27 15:25:24 2018 (r333065) > +++ head/sys/sys/sysent.h Fri Apr 27 15:50:22 2018 (r333066) > @@ -53,7 +53,9 @@ typedef void (*systrace_probe_func_t)(struct syscall_a > enum systrace_probe_t, int); > typedef void (*systrace_args_func_t)(int, void *, uint64_t *, int *); > > +#ifdef _KERNEL > extern bool systrace_enabled; > +#endif > extern systrace_probe_func_t systrace_probe_func; I think systrace_probe_func also has nothing to do with userspace. > > struct sysent { /* system call table */