Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 7 Aug 2012 08:37:35 +0000 (UTC)
From:      Warner Losh <imp@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r239126 - head/sys/mips/mips
Message-ID:  <201208070837.q778bZsG040511@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
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 <ambrosehua@gmail.com>

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);
 



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201208070837.q778bZsG040511>