PERFORCE change 182552 for review

Ilya Bakulin kibab at FreeBSD.org
Wed Aug 18 07:26:53 UTC 2010


http://p4web.freebsd.org/@@182552?ac=10

Change 182552 by kibab at kibab_kibab-nb on 2010/08/18 07:26:39

	- PAE feature.

Affected files ...

.. //depot/projects/soc2010/kibab_sysctlreg/src_sys/kern/kern_malloc.c#4 edit
.. //depot/projects/soc2010/kibab_sysctlreg/src_sys/kern/ksched.c#4 edit

Differences ...

==== //depot/projects/soc2010/kibab_sysctlreg/src_sys/kern/kern_malloc.c#4 (text+ko) ====

@@ -93,6 +93,10 @@
 dtrace_malloc_probe_func_t	dtrace_malloc_probe;
 #endif
 
+#ifdef PAE
+FEATURE(pae, "Physical Address Extensions support");
+#endif
+
 /*
  * When realloc() is called, if the new size is sufficiently smaller than
  * the old size, realloc() will allocate a new, smaller block to avoid

==== //depot/projects/soc2010/kibab_sysctlreg/src_sys/kern/ksched.c#4 (text+ko) ====

@@ -42,13 +42,14 @@
 #include <sys/systm.h>
 #include <sys/lock.h>
 #include <sys/sysctl.h>
+#include <sys/kernel.h>
 #include <sys/mutex.h>
 #include <sys/proc.h>
 #include <sys/posix4.h>
 #include <sys/resource.h>
 #include <sys/sched.h>
 
-//FEATURE(kposix_priority_scheduling, "POSIX P1003.1B realtime extensions");
+FEATURE(kposix_priority_scheduling, "POSIX P1003.1B realtime extensions");
 
 /* ksched: Real-time extension to support POSIX priority scheduling.
  */


More information about the p4-projects mailing list