From owner-svn-src-all@FreeBSD.ORG Tue Aug 7 08:37:35 2012 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id C8299106564A; Tue, 7 Aug 2012 08:37:35 +0000 (UTC) (envelope-from imp@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id B35808FC0A; Tue, 7 Aug 2012 08:37:35 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.4/8.14.4) with ESMTP id q778bZR2040513; Tue, 7 Aug 2012 08:37:35 GMT (envelope-from imp@svn.freebsd.org) Received: (from imp@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q778bZsG040511; Tue, 7 Aug 2012 08:37:35 GMT (envelope-from imp@svn.freebsd.org) Message-Id: <201208070837.q778bZsG040511@svn.freebsd.org> From: Warner Losh Date: Tue, 7 Aug 2012 08:37:35 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r239126 - head/sys/mips/mips X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.5 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: Tue, 07 Aug 2012 08:37:35 -0000 Author: imp Date: Tue Aug 7 08:37:35 2012 New Revision: 239126 URL: http://svn.freebsd.org/changeset/base/239126 Log: Fix obvious problem with emulate_fp sysctl. Submitted by: Paul Ambrose Modified: head/sys/mips/mips/trap.c Modified: head/sys/mips/mips/trap.c ============================================================================== --- head/sys/mips/mips/trap.c Tue Aug 7 08:36:10 2012 (r239125) +++ head/sys/mips/mips/trap.c Tue Aug 7 08:37:35 2012 (r239126) @@ -302,7 +302,7 @@ static int emulate_fp = 1; static int emulate_fp = 0; #endif SYSCTL_INT(_machdep, OID_AUTO, emulate_fp, CTLFLAG_RW, - &allow_unaligned_acc, 0, "Emulate unimplemented FPU instructions"); + &emulate_fp, 0, "Emulate unimplemented FPU instructions"); static int emulate_unaligned_access(struct trapframe *frame, int mode);