Author: jmallett
Date: Sat Nov 24 02:55:05 2012
New Revision: 243473
URL: http://svnweb.freebsd.org/changeset/base/243473

Log:
  o) Have the FreeBSD kernel option "INVARIANTS" trickle down into the Simple
     Executive code where similar invariant knobs exist.
  o) Make the Simple Executive's warning function print "WARNING: " on the same
     line as the warning it is displaying, rather than on a separate line.

Modified:
  head/sys/contrib/octeon-sdk/cvmx-pow.h
  head/sys/contrib/octeon-sdk/cvmx-warn.c
  head/sys/contrib/octeon-sdk/cvmx.h

Modified: head/sys/contrib/octeon-sdk/cvmx-pow.h
==============================================================================
--- head/sys/contrib/octeon-sdk/cvmx-pow.h      Sat Nov 24 02:41:18 2012        
(r243472)
+++ head/sys/contrib/octeon-sdk/cvmx-pow.h      Sat Nov 24 02:55:05 2012        
(r243473)
@@ -80,9 +80,23 @@
 extern "C" {
 #endif
 
-/* Default to having all POW constancy checks turned on */
-#ifndef CVMX_ENABLE_POW_CHECKS
-#define CVMX_ENABLE_POW_CHECKS 1
+#if defined(__FreeBSD__) && defined(_KERNEL)
+    /*
+     * For the FreeBSD kernel, have POW consistency checks depend on
+     * the setting of INVARIANTS.
+     */
+    #ifndef CVMX_ENABLE_POW_CHECKS
+        #ifdef INVARIANTS
+            #define CVMX_ENABLE_POW_CHECKS 1
+        #else
+            #define CVMX_ENABLE_POW_CHECKS 0
+        #endif
+    #endif
+#else
+    /* Default to having all POW constancy checks turned on */
+    #ifndef CVMX_ENABLE_POW_CHECKS
+        #define CVMX_ENABLE_POW_CHECKS 1
+    #endif
 #endif
 
 /**

Modified: head/sys/contrib/octeon-sdk/cvmx-warn.c
==============================================================================
--- head/sys/contrib/octeon-sdk/cvmx-warn.c     Sat Nov 24 02:41:18 2012        
(r243472)
+++ head/sys/contrib/octeon-sdk/cvmx-warn.c     Sat Nov 24 02:55:05 2012        
(r243473)
@@ -77,7 +77,11 @@ void cvmx_warn(const char *format, ...)
     printk("WARNING:");
     vprintk(format, args);
 #else
+#ifdef CVMX_BUILD_FOR_FREEBSD_KERNEL
+    printf("WARNING: ");
+#else
     printf("WARNING:\n");
+#endif
     vprintf(format, args);
 #endif
     va_end(args);

Modified: head/sys/contrib/octeon-sdk/cvmx.h
==============================================================================
--- head/sys/contrib/octeon-sdk/cvmx.h  Sat Nov 24 02:41:18 2012        
(r243472)
+++ head/sys/contrib/octeon-sdk/cvmx.h  Sat Nov 24 02:55:05 2012        
(r243473)
@@ -53,13 +53,28 @@
 /* Control whether simple executive applications use 1-1 TLB mappings to 
access physical
 ** memory addresses.  This must be disabled to allow large programs that use 
more than
 ** the 0x10000000 - 0x20000000 virtual address range.
+**
+** The FreeBSD kernel ifdefs elsewhere should mean that this is never even 
checked,
+** and so does not need to be defined.
 */
+#if !defined(__FreeBSD__) || !defined(_KERNEL)
 #ifndef CVMX_USE_1_TO_1_TLB_MAPPINGS
 #define CVMX_USE_1_TO_1_TLB_MAPPINGS 1
 #endif
+#endif
 
-#ifndef CVMX_ENABLE_PARAMETER_CHECKING
-#define CVMX_ENABLE_PARAMETER_CHECKING 1
+#if defined(__FreeBSD__) && defined(_KERNEL)
+    #ifndef CVMX_ENABLE_PARAMETER_CHECKING
+        #ifdef INVARIANTS
+            #define CVMX_ENABLE_PARAMETER_CHECKING 1
+        #else
+            #define CVMX_ENABLE_PARAMETER_CHECKING 0
+        #endif
+    #endif
+#else
+    #ifndef CVMX_ENABLE_PARAMETER_CHECKING
+        #define CVMX_ENABLE_PARAMETER_CHECKING 1
+    #endif
 #endif
 
 #ifndef CVMX_ENABLE_DEBUG_PRINTS
_______________________________________________
svn-src-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/svn-src-all
To unsubscribe, send any mail to "svn-src-all-unsubscr...@freebsd.org"

Reply via email to