From owner-svn-src-head@FreeBSD.ORG Mon May 25 05:20:27 2015 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 D5197924; Mon, 25 May 2015 05:20:27 +0000 (UTC) (envelope-from dchagin@dchagin.static.corbina.net) Received: from heemeyer.club (heemeyer.club [IPv6:2001:19f0:6400:80a1::1]) (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 8EB369D5; Mon, 25 May 2015 05:20:27 +0000 (UTC) (envelope-from dchagin@dchagin.static.corbina.net) Received: from dchagin.static.corbina.net (dchagin.static.corbina.ru [78.107.232.239]) by heemeyer.club (8.15.1/8.15.1) with ESMTPS id t4P5KOKt005519 (version=TLSv1.2 cipher=ECDHE-RSA-AES256-GCM-SHA384 bits=256 verify=OK); Mon, 25 May 2015 05:20:26 GMT (envelope-from dchagin@dchagin.static.corbina.net) X-Authentication-Warning: heemeyer.club: Host dchagin.static.corbina.ru [78.107.232.239] claimed to be dchagin.static.corbina.net Received: from dchagin.static.corbina.net (localhost [127.0.0.1]) by dchagin.static.corbina.net (8.15.1/8.15.1) with ESMTPS id t4P5KO4U012184 (version=TLSv1.2 cipher=DHE-RSA-AES256-GCM-SHA384 bits=256 verify=NO); Mon, 25 May 2015 08:20:24 +0300 (MSK) (envelope-from dchagin@dchagin.static.corbina.net) Received: (from dchagin@localhost) by dchagin.static.corbina.net (8.15.1/8.15.1/Submit) id t4P5KJAm012183; Mon, 25 May 2015 08:20:19 +0300 (MSK) (envelope-from dchagin) Date: Mon, 25 May 2015 08:20:19 +0300 From: Chagin Dmitry To: Julian Elischer Cc: src-committers@freebsd.org, svn-src-head@freebsd.org Subject: Re: svn commit: r283388 - head/sys/compat/linux Message-ID: <20150525052019.GA12172@dchagin.static.corbina.net> References: <201505241457.t4OEvejd035287@svn.freebsd.org> <5562887A.90909@freebsd.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <5562887A.90909@freebsd.org> User-Agent: Mutt/1.5.23 (2014-03-12) X-BeenThere: svn-src-head@freebsd.org X-Mailman-Version: 2.1.20 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: Mon, 25 May 2015 05:20:27 -0000 On Mon, May 25, 2015 at 10:27:06AM +0800, Julian Elischer wrote: > On 5/24/15 10:57 PM, Dmitry Chagin wrote: > > Author: dchagin > > Date: Sun May 24 14:57:39 2015 > > New Revision: 283388 > > URL: https://svnweb.freebsd.org/changeset/base/283388 > > > > Log: > > Remove a now unused define. > > > > Differential Revision: https://reviews.freebsd.org/D1043 > > Reviewed by: trasz > > will we be losing the ability to run older linux binaries and libraries? i don't think so, THREADING_FLAGS contains CLONE_THREAD that is not 'old' > > > > > Modified: > > head/sys/compat/linux/linux_misc.h > > > > Modified: head/sys/compat/linux/linux_misc.h > > ============================================================================== > > --- head/sys/compat/linux/linux_misc.h Sun May 24 14:57:17 2015 (r283387) > > +++ head/sys/compat/linux/linux_misc.h Sun May 24 14:57:39 2015 (r283388) > > @@ -90,10 +90,6 @@ extern const char *linux_platform; > > #define LINUX_CLONE_CHILD_CLEARTID 0x00200000 > > #define LINUX_CLONE_CHILD_SETTID 0x01000000 > > > > -#define LINUX_THREADING_FLAGS \ > > - (LINUX_CLONE_VM | LINUX_CLONE_FS | LINUX_CLONE_FILES | \ > > - LINUX_CLONE_SIGHAND | LINUX_CLONE_THREAD) > > - > > /* Scheduling policies */ > > #define LINUX_SCHED_OTHER 0 > > #define LINUX_SCHED_FIFO 1 > > > > -- Have fun! chd