svn commit: r220013 - stable/7/sys/sys

Matthew D Fleming mdf at FreeBSD.org
Fri Mar 25 22:17:25 UTC 2011


Author: mdf
Date: Fri Mar 25 22:17:24 2011
New Revision: 220013
URL: http://svn.freebsd.org/changeset/base/220013

Log:
  Fix r220012 (MFC of r216060); the KBI of sysctl_oid was *supposed* to be
  preserved, but I was hasty.

Modified:
  stable/7/sys/sys/sysctl.h

Modified: stable/7/sys/sys/sysctl.h
==============================================================================
--- stable/7/sys/sys/sysctl.h	Fri Mar 25 22:11:54 2011	(r220012)
+++ stable/7/sys/sys/sysctl.h	Fri Mar 25 22:17:24 2011	(r220013)
@@ -164,8 +164,8 @@ struct sysctl_oid {
 	const char	*oid_name;
 	int 		(*oid_handler)(SYSCTL_HANDLER_ARGS);
 	const char	*oid_fmt;
-	int		oid_refcnt;
-	u_int		oid_running;
+	int16_t		oid_refcnt;
+	uint16_t	oid_running;
 	const char	*oid_descr;
 };
 


More information about the svn-src-stable-7 mailing list