From owner-cvs-src@FreeBSD.ORG Thu Apr 6 17:49:12 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4873816AC56; Thu, 6 Apr 2006 17:49:12 +0000 (UTC) (envelope-from jhb@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 690544560B; Thu, 6 Apr 2006 17:17:45 +0000 (GMT) (envelope-from jhb@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id k36HHj1J066682; Thu, 6 Apr 2006 17:17:45 GMT (envelope-from jhb@repoman.freebsd.org) Received: (from jhb@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id k36HHjlY066681; Thu, 6 Apr 2006 17:17:45 GMT (envelope-from jhb) Message-Id: <200604061717.k36HHjlY066681@repoman.freebsd.org> From: John Baldwin Date: Thu, 6 Apr 2006 17:17:45 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/i386/i386 machdep.c src/sys/i386/isa npx.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 06 Apr 2006 17:49:12 -0000 jhb 2006-04-06 17:17:45 UTC FreeBSD src repository Modified files: sys/i386/i386 machdep.c sys/i386/isa npx.c Log: - Don't set CR0_NE and CR0_MP in npx_probe() as they are already set earlier in cpu_setregs(). - If we know this CPU has a FPU via cpuid, then just assume the INT16 interface and make the npx device quiet to not clutter the dmesg. This is true for all Pentium and later CPUs and even some of the later 486dx CPUs. Reviewed by: bde Tested by: ps MFC after: 1 week Revision Changes Path 1.625 +15 -2 src/sys/i386/i386/machdep.c 1.164 +21 -25 src/sys/i386/isa/npx.c