From owner-svn-src-head@freebsd.org Sun Jul 10 08:39:49 2016 Return-Path: Delivered-To: svn-src-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 28344B756CC; Sun, 10 Jul 2016 08:39:49 +0000 (UTC) (envelope-from dchagin@chd.heemeyer.club) Received: from heemeyer.club (heemeyer.club [108.61.204.158]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "heemeyer.club", Issuer "heemeyer.club" (not verified)) by mx1.freebsd.org (Postfix) with ESMTPS id 0198E1A45; Sun, 10 Jul 2016 08:39:48 +0000 (UTC) (envelope-from dchagin@chd.heemeyer.club) Received: from chd.heemeyer.club (dchagin.static.corbina.ru [78.107.232.239]) by heemeyer.club (8.15.2/8.15.1) with ESMTPS id u6A8diak001632 (version=TLSv1.2 cipher=ECDHE-RSA-AES256-GCM-SHA384 bits=256 verify=OK); Sun, 10 Jul 2016 08:39:45 GMT (envelope-from dchagin@chd.heemeyer.club) X-Authentication-Warning: heemeyer.club: Host dchagin.static.corbina.ru [78.107.232.239] claimed to be chd.heemeyer.club Received: from chd.heemeyer.club (localhost [127.0.0.1]) by chd.heemeyer.club (8.15.2/8.15.1) with ESMTPS id u6A8dWMW015631 (version=TLSv1.2 cipher=ECDHE-RSA-AES256-GCM-SHA384 bits=256 verify=NO); Sun, 10 Jul 2016 11:39:33 +0300 (MSK) (envelope-from dchagin@chd.heemeyer.club) Received: (from dchagin@localhost) by chd.heemeyer.club (8.15.2/8.15.2/Submit) id u6A8dWFS015630; Sun, 10 Jul 2016 11:39:32 +0300 (MSK) (envelope-from dchagin) Date: Sun, 10 Jul 2016 11:39:32 +0300 From: Chagin Dmitry To: Konstantin Belousov Cc: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: Re: svn commit: r302517 - in head/sys: amd64/linux amd64/linux32 compat/linux i386/linux modules/linux modules/linux_common Message-ID: <20160710083932.GA15617@chd.heemeyer.club> References: <201607100822.u6A8M4Kq052786@repo.freebsd.org> <20160710083017.GR38613@kib.kiev.ua> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20160710083017.GR38613@kib.kiev.ua> User-Agent: Mutt/1.6.1 (2016-04-27) X-BeenThere: svn-src-head@freebsd.org X-Mailman-Version: 2.1.22 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: Sun, 10 Jul 2016 08:39:49 -0000 On Sun, Jul 10, 2016 at 11:30:17AM +0300, Konstantin Belousov wrote: > On Sun, Jul 10, 2016 at 08:22:04AM +0000, Dmitry Chagin wrote: > > Author: dchagin > > Date: Sun Jul 10 08:22:04 2016 > > New Revision: 302517 > > URL: https://svnweb.freebsd.org/changeset/base/302517 > > > > Log: > > Fix a copy/paste bug introduced during X86_64 Linuxulator work. > > FreeBSD support NX bit on X86_64 processors out of the box, for i386 emulation > > use READ_IMPLIES_EXEC flag, introduced in r302515. > > > > While here move common part of mmap() and mprotect() code to the files in compat/linux > > to reduce code dupcliation between Linuxulator's. > > > > Reported by: Johannes Jost Meixner, Shawn Webb > > > > MFC after: 1 week > > XMFC with: r302515, r302516 > > > > Added: > > head/sys/compat/linux/linux_mmap.c (contents, props changed) > > head/sys/compat/linux/linux_mmap.h (contents, props changed) > > Modified: > > head/sys/amd64/linux/linux.h > > head/sys/amd64/linux/linux_machdep.c > > head/sys/amd64/linux32/linux.h > > head/sys/amd64/linux32/linux32_machdep.c > > head/sys/i386/linux/linux.h > > head/sys/i386/linux/linux_machdep.c > > head/sys/modules/linux/Makefile > > head/sys/modules/linux_common/Makefile > > Do conf/files.{i386,amd64} need update as well ? missed it, thank you!