Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 17 Aug 2010 22:12:07 GMT
From:      Ilya Bakulin <kibab@FreeBSD.org>
To:        Perforce Change Reviews <perforce@FreeBSD.org>
Subject:   PERFORCE change 182548 for review
Message-ID:  <201008172212.o7HMC7QZ007419@skunkworks.freebsd.org>

next in thread | raw e-mail | index | archive | help
http://p4web.freebsd.org/@@182548?ac=10

Change 182548 by kibab@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>



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