From owner-svn-src-stable-11@freebsd.org Fri Feb 24 17:14:12 2017 Return-Path: Delivered-To: svn-src-stable-11@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 37205CECD7A; Fri, 24 Feb 2017 17:14:12 +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 9C616EAD; Fri, 24 Feb 2017 17:14:11 +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 v1OHE5uo086397 (version=TLSv1.2 cipher=DHE-RSA-AES256-GCM-SHA384 bits=256 verify=NO); Fri, 24 Feb 2017 19:14:05 +0200 (EET) (envelope-from kostikbel@gmail.com) DKIM-Filter: OpenDKIM Filter v2.10.3 kib.kiev.ua v1OHE5uo086397 Received: (from kostik@localhost) by tom.home (8.15.2/8.15.2/Submit) id v1OHE5VO086396; Fri, 24 Feb 2017 19:14:05 +0200 (EET) (envelope-from kostikbel@gmail.com) X-Authentication-Warning: tom.home: kostik set sender to kostikbel@gmail.com using -f Date: Fri, 24 Feb 2017 19:14:05 +0200 From: Konstantin Belousov To: "Rodney W. Grimes" Cc: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-11@freebsd.org Subject: Re: svn commit: r314210 - in stable/11/sys: conf i386/conf i386/i386 i386/include i386/isa i386/linux x86/acpica x86/x86 Message-ID: <20170224171405.GX2092@kib.kiev.ua> References: <201702241602.v1OG21SM034524@repo.freebsd.org> <201702241653.v1OGrRTJ028384@pdx.rh.CN85.dnsmgr.net> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <201702241653.v1OGrRTJ028384@pdx.rh.CN85.dnsmgr.net> User-Agent: Mutt/1.7.2 (2016-11-26) 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-stable-11@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for only the 11-stable src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 24 Feb 2017 17:14:12 -0000 On Fri, Feb 24, 2017 at 08:53:27AM -0800, Rodney W. Grimes wrote: > > Author: kib > > Date: Fri Feb 24 16:02:01 2017 > > New Revision: 314210 > > URL: https://svnweb.freebsd.org/changeset/base/314210 > > > > Log: > > MFC r313154: > > For i386, remove config options CPU_DISABLE_CMPXCHG, CPU_DISABLE_SSE > > and device npx. > > Um, why????? Makes it much easier to test soft float if we can remove > the npx device. Or has soft float support died yet again? Soft float was removed very long time ago. > > Yes, an i386 without an FPU is anchient by why are we removing working > functionality? This question makes an impression that you think that kernel would not boot on a machine without FPU. The code to tolerate such configuration is there, but it is not tested for obvious reasons. Completely different issue is that userspace requires FPU and e.g. /bin/sh traps on the next setjmp(3) call. Also, we do not run on real 386, only on 486+, and there was probably only Intel 486SX CPU model which has all 486 features but no FPU.