svn commit: r189577 - head/sys/sys

Warner Losh imp at FreeBSD.org
Mon Mar 9 06:26:56 PDT 2009


Author: imp
Date: Mon Mar  9 13:26:55 2009
New Revision: 189577
URL: http://svn.freebsd.org/changeset/base/189577

Log:
  o Add declarations for a few more nodes widely used.
  o Minor formatting nit.

Modified:
  head/sys/sys/sysctl.h

Modified: head/sys/sys/sysctl.h
==============================================================================
--- head/sys/sys/sysctl.h	Mon Mar  9 13:25:34 2009	(r189576)
+++ head/sys/sys/sysctl.h	Mon Mar  9 13:26:55 2009	(r189577)
@@ -223,7 +223,7 @@ TAILQ_HEAD(sysctl_ctx_list, sysctl_ctx_e
 #define SYSCTL_OID(parent, nbr, name, kind, a1, a2, handler, fmt, descr) \
 	static struct sysctl_oid sysctl__##parent##_##name = {		 \
 		&sysctl_##parent##_children, { NULL }, nbr, kind,	 \
-		a1, a2, #name, handler, fmt, 0, __DESCR(descr) };        \
+		a1, a2, #name, handler, fmt, 0, __DESCR(descr) };     \
 	DATA_SET(sysctl_set, sysctl__##parent##_##name)
 
 #ifdef VIMAGE
@@ -755,8 +755,11 @@ SYSCTL_DECL(_vfs);
 SYSCTL_DECL(_net);
 SYSCTL_DECL(_debug);
 SYSCTL_DECL(_debug_sizeof);
+SYSCTL_DECL(_dev);
 SYSCTL_DECL(_hw);
 SYSCTL_DECL(_hw_bus);
+SYSCTL_DECL(_hw_bus_devices);
+SYSCTL_DECL(_hw_bus_info);
 SYSCTL_DECL(_machdep);
 SYSCTL_DECL(_user);
 SYSCTL_DECL(_compat);


More information about the svn-src-head mailing list