From owner-svn-src-all@FreeBSD.ORG Mon May 25 01:08:59 2015 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 4CEC9689; Mon, 25 May 2015 01:08:59 +0000 (UTC) (envelope-from bjkfbsd@gmail.com) Received: from mail-wi0-x233.google.com (mail-wi0-x233.google.com [IPv6:2a00:1450:400c:c05::233]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id EA6A6273; Mon, 25 May 2015 01:08:58 +0000 (UTC) (envelope-from bjkfbsd@gmail.com) Received: by wicmc15 with SMTP id mc15so29056917wic.1; Sun, 24 May 2015 18:08:56 -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=kLJzSI3eZrA6wh622ZAOI5sABN9PjarPzBJAogMtRYc=; b=FhPzw7WTf0AZlFfXJSM5LwRoy66b0ueJ4l0dt6Ipsz7Pha4id9paQNkVyT+YACJd5g fweIx7f9woCuKZL4ZEDfEjqnqA98ngVH2Xr16BcdGAJGFI3+GdJChuUGrsjSQ1iFi9Ip RIRyOYavJv4gNcenPjHgG28TyFJUtznq8wtHBQCNqt2Idr02xte9iQhnB7lecTCf/Fkx gwj9PLha5HWJfiVw6p2Z97rE14hcVbZCxXAlx33eoIdB0WtWKz+xY71bWxh9GsVn2E1M dUWzmmgUgmb9rpMtdtqqsBN1dgSlcWZGGygdbceHEz/jmStQmd53DWLMXCIRs4k9NZKD K2mQ== MIME-Version: 1.0 X-Received: by 10.180.104.197 with SMTP id gg5mr27045187wib.27.1432516136282; Sun, 24 May 2015 18:08:56 -0700 (PDT) Received: by 10.27.77.201 with HTTP; Sun, 24 May 2015 18:08:56 -0700 (PDT) In-Reply-To: <201505241738.t4OHc3UK025106@svn.freebsd.org> References: <201505241738.t4OHc3UK025106@svn.freebsd.org> Date: Sun, 24 May 2015 21:08:56 -0400 Message-ID: Subject: Re: svn commit: r283467 - in head/sys: amd64/linux amd64/linux32 i386/linux From: Benjamin Kaduk To: Dmitry Chagin Cc: "src-committers@freebsd.org" , "svn-src-all@freebsd.org" , "svn-src-head@freebsd.org" Content-Type: text/plain; charset=UTF-8 X-Content-Filtered-By: Mailman/MimeDel 2.1.20 X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.20 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, 25 May 2015 01:08:59 -0000 On Sun, May 24, 2015 at 1:38 PM, Dmitry Chagin wrote: > Author: dchagin > Date: Sun May 24 17:38:02 2015 > New Revision: 283467 > URL: https://svnweb.freebsd.org/changeset/base/283467 > > Log: > Call nosys in case when the incorrect syscall number is specified. > > Reported by: trinity > > Modified: head/sys/amd64/linux/syscalls.master > > ============================================================================== > --- head/sys/amd64/linux/syscalls.master Sun May 24 17:35:42 2015 > (r283466) > +++ head/sys/amd64/linux/syscalls.master Sun May 24 17:38:02 2015 > (r283467) > @@ -506,3 +506,5 @@ > 310 AUE_NULL STD { int linux_process_vm_writev(void); } > 311 AUE_NULL STD { int linux_kcmp(void); } > 312 AUE_NULL STD { int linux_finit_module(void); } > +; please, keep this line at the end. > +313 AUE_NULL UNIMPL nosys > Seems like this would be a great thing to have some tests for. -Ben