PERFORCE change 182548 for review
Ilya Bakulin
kibab at FreeBSD.org
Tue Aug 17 22:12:08 UTC 2010
http://p4web.freebsd.org/@@182548?ac=10
Change 182548 by kibab at kibab_kibab-nb on 2010/08/17 22:11:26
Fix compilation, stage 1.
Affected files ...
.. //depot/projects/soc2010/kibab_sysctlreg/src_sys/cam/cam.c#2 edit
.. //depot/projects/soc2010/kibab_sysctlreg/src_sys/kern/kern_lockstat.c#3 edit
.. //depot/projects/soc2010/kibab_sysctlreg/src_sys/kern/kern_ntptime.c#2 edit
.. //depot/projects/soc2010/kibab_sysctlreg/src_sys/kern/ksched.c#3 edit
.. //depot/projects/soc2010/kibab_sysctlreg/src_sys/kern/uipc_cow.c#4 edit
.. //depot/projects/soc2010/kibab_sysctlreg/src_sys/netinet/libalias/alias.c#3 edit
.. //depot/projects/soc2010/kibab_sysctlreg/src_sys/netncp/ncp_ncp.c#3 edit
.. //depot/projects/soc2010/kibab_sysctlreg/src_sys/security/mac/mac_syscalls.c#3 edit
Differences ...
==== //depot/projects/soc2010/kibab_sysctlreg/src_sys/cam/cam.c#2 (text+ko) ====
@@ -49,6 +49,8 @@
#include <sys/libkern.h>
#include <cam/cam_queue.h>
#include <cam/cam_xpt.h>
+
+FEATURE(scbus, "SCSI devices support");
#endif
static int camstatusentrycomp(const void *key, const void *member);
==== //depot/projects/soc2010/kibab_sysctlreg/src_sys/kern/kern_lockstat.c#3 (text+ko) ====
@@ -39,8 +39,9 @@
#include <sys/time.h>
#include <sys/types.h>
#include <sys/lockstat.h>
+#include <sys/param.h>
#include <sys/sysctl.h>
-
+#include <sys/kernel.h>
FEATURE(kdtrace_hooks, "Kernel DTRACE hooks");
/*
* The following must match the type definition of dtrace_probe. It is
==== //depot/projects/soc2010/kibab_sysctlreg/src_sys/kern/kern_ntptime.c#2 (text+ko) ====
@@ -51,6 +51,10 @@
#include <sys/syscallsubr.h>
#include <sys/sysctl.h>
+#ifdef PPS_SYNC
+FEATURE(pps_sync, "Support usage of external PPS signal by kernel PLL");
+#endif
+
/*
* Single-precision macros for 64-bit machines
*/
==== //depot/projects/soc2010/kibab_sysctlreg/src_sys/kern/ksched.c#3 (text+ko) ====
@@ -48,7 +48,7 @@
#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.
*/
==== //depot/projects/soc2010/kibab_sysctlreg/src_sys/kern/uipc_cow.c#4 (text+ko) ====
@@ -40,6 +40,7 @@
#include <sys/param.h>
#include <sys/systm.h>
+#include <sys/sysctl.h>
#include <sys/kernel.h>
#include <sys/proc.h>
#include <sys/lock.h>
==== //depot/projects/soc2010/kibab_sysctlreg/src_sys/netinet/libalias/alias.c#3 (text+ko) ====
@@ -116,6 +116,7 @@
#include <sys/systm.h>
#include <sys/mbuf.h>
#include <sys/sysctl.h>
+#include <sys/kernel.h>
FEATURE(libalias, "libalias library");
#else
#include <sys/types.h>
==== //depot/projects/soc2010/kibab_sysctlreg/src_sys/netncp/ncp_ncp.c#3 (text+ko) ====
@@ -35,6 +35,7 @@
#include <sys/proc.h>
#include <sys/signalvar.h>
#include <sys/sysctl.h>
+#include <sys/kernel.h>
#include <sys/mbuf.h>
#include <sys/lock.h>
#include <sys/mutex.h>
==== //depot/projects/soc2010/kibab_sysctlreg/src_sys/security/mac/mac_syscalls.c#3 (text+ko) ====
@@ -56,6 +56,7 @@
#include <sys/mac.h>
#include <sys/proc.h>
#include <sys/systm.h>
+#include <sys/sysctl.h>
#include <sys/sysproto.h>
#include <sys/sysent.h>
#include <sys/vnode.h>
More information about the p4-projects
mailing list